From 80f5cef754f7a4a2653d59687f16bf04bdcdd7bb Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 15 Aug 2022 21:16:49 +0100 Subject: [PATCH 01/11] split out FSharp.Data.Core --- CONTRIBUTING.md | 16 +- FSharp.Data.sln | 54 +-- RELEASE_NOTES.md | 5 + build.fsx | 18 +- docs/tutorials/JsonAnonymizer.fsx | 2 +- src/AssemblyInfo.Core.fs | 17 + src/AssemblyInfo.DesignTime.fs | 8 +- src/AssemblyInfo.fs | 8 +- src/CommonProviderImplementation/Helpers.fs | 11 +- src/CommonRuntime/Caching.fs | 12 +- src/CommonRuntime/IO.fs | 18 +- src/CommonRuntime/NameUtils.fs | 1 - src/CommonRuntime/TextRuntime.fs | 8 +- src/Csv/CsvFile.fs | 14 +- src/Csv/CsvInference.fs | 1 - src/Csv/CsvRuntime.fs | 12 +- src/FSharp.Data.Core/FSharp.Data.Core.fsproj | 58 ++++ src/FSharp.Data.Core/InternalsVisibleTo.fs | 9 + src/FSharp.Data.Core/paket.references | 2 + .../FSharp.Data.DesignTime.fsproj | 34 +- src/FSharp.Data/FSharp.Data.fsproj | 34 +- src/Html/HtmlActivePatterns.fs | 3 +- src/Html/HtmlCssSelectors.fs | 4 +- src/Html/HtmlNode.fs | 233 +++++++++++++ src/Html/HtmlOperations.fs | 14 +- src/Html/HtmlParser.fs | 328 +++--------------- src/Html/HtmlRuntime.fs | 27 +- src/Json/JsonDocument.fs | 98 ++++++ src/Json/JsonRuntime.fs | 98 ------ src/Json/JsonValue.fs | 1 + src/Runtime.fs | 4 +- src/WorldBank/WorldBankRuntime.fs | 107 +++--- src/Xml/XmlExtensions.fs | 69 ++++ src/Xml/XmlInference.fs | 4 + src/Xml/XmlRuntime.fs | 68 ---- .../CsvExtensionsTests.cs | 0 .../FSharp.Data.Core.Tests.CSharp.csproj} | 2 +- .../HtmlExtensionsTests.cs | 0 .../JsonExtensionsTests.cs | 0 .../Properties/AssemblyInfo.cs | 0 .../paket.references | 0 .../CsvReader.fs | 0 .../FSharp.Data.Core.Tests.fsproj | 34 ++ .../HtmlCharRefs.fs | 4 +- .../HtmlCssSelectors.fs | 2 +- .../HtmlOperations.fs | 2 +- .../HtmlParser.fs | 0 .../Http.fs | 2 +- .../JsonConversions.fs | 2 +- .../JsonParserProperties.fs | 0 .../JsonValue.fs | 2 +- .../NameUtils.fs | 4 +- tests/FSharp.Data.Core.Tests/Program.fs | 6 + .../TextConversions.fs | 2 +- tests/FSharp.Data.Core.Tests/paket.references | 8 + tests/FSharp.Data.Tests/CsvProvider.fs | 2 +- .../FSharp.Data.Tests.fsproj | 11 - 57 files changed, 797 insertions(+), 686 deletions(-) create mode 100644 src/AssemblyInfo.Core.fs create mode 100644 src/FSharp.Data.Core/FSharp.Data.Core.fsproj create mode 100644 src/FSharp.Data.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Core/paket.references create mode 100644 src/Html/HtmlNode.fs create mode 100644 src/Json/JsonDocument.fs create mode 100644 src/Xml/XmlExtensions.fs rename tests/{FSharp.Data.Tests.CSharp => FSharp.Data.Core.Tests.CSharp}/CsvExtensionsTests.cs (100%) rename tests/{FSharp.Data.Tests.CSharp/FSharp.Data.Tests.CSharp.csproj => FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj} (92%) rename tests/{FSharp.Data.Tests.CSharp => FSharp.Data.Core.Tests.CSharp}/HtmlExtensionsTests.cs (100%) rename tests/{FSharp.Data.Tests.CSharp => FSharp.Data.Core.Tests.CSharp}/JsonExtensionsTests.cs (100%) rename tests/{FSharp.Data.Tests.CSharp => FSharp.Data.Core.Tests.CSharp}/Properties/AssemblyInfo.cs (100%) rename tests/{FSharp.Data.Tests.CSharp => FSharp.Data.Core.Tests.CSharp}/paket.references (100%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/CsvReader.fs (100%) create mode 100644 tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/HtmlCharRefs.fs (92%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/HtmlCssSelectors.fs (99%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/HtmlOperations.fs (99%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/HtmlParser.fs (100%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/Http.fs (99%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/JsonConversions.fs (95%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/JsonParserProperties.fs (100%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/JsonValue.fs (99%) rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/NameUtils.fs (97%) create mode 100644 tests/FSharp.Data.Core.Tests/Program.fs rename tests/{FSharp.Data.Tests => FSharp.Data.Core.Tests}/TextConversions.fs (98%) create mode 100644 tests/FSharp.Data.Core.Tests/paket.references diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 62a9917a7..42e453cac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,13 +35,13 @@ Type providers consist of two components: We need a _runtime component_ for .NET Standard 2.0 (netstandard2.0). We also need a _design time_ component for each, to be able to host the type provider in .NET Core-based tooling. -The _runtime_ components are in the following project: +The _core_ runtime components are in the following project: - * **FSharp.Data** + * **FSharp.Data.Core** -The _design time_ components are in the following project: +The type provider design-time components are in the following project: - * **FSharp.Data.DesignTime** + * **FSharp.Data** ### Type provider structure @@ -77,14 +77,6 @@ of files, typically like this: The WorldBank provider is different. It doesn't need inference, but it still distinguishes between _runtime_ and _design-time_ components, so you'll find at least two files (and possibly some additional helpers). -### Debugging - -To debug the type generation, the best way is to change `FSharp.Data.DesignTime` project to a Console application, -rename `Test.fsx` to `Test.fs` and hit the Run command in the IDE, setting the breakpoints where you need them. -This will invoke all the type providers manually without locking the files in Visual Studio / Xamarin Studio. -You'll also see in the console output the complete dump of the generated types and expressions. -This is also the process used for the signature tests. - ## Documentation Docs and samples are in the `docs` directory. To update docs on your own machine, run the following command: diff --git a/FSharp.Data.sln b/FSharp.Data.sln index 3f7d10b36..03e1574d6 100755 --- a/FSharp.Data.sln +++ b/FSharp.Data.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26730.16 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.32814.64 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{7E48C05A-8C42-4871-A618-180BEEF696AA}" ProjectSection(SolutionItems) = preProject @@ -53,17 +53,17 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ja", "ja", "{CA5C64CE-E68C-4320-A00A-E67CA883B9D2}" ProjectSection(SolutionItems) = preProject docs\ja\contributing.md = docs\ja\contributing.md - docs\ja\fsharpdata.md = docs\ja\fsharpdata.md - docs\ja\index.md = docs\ja\index.md docs\ja\library\CsvFile.fsx = docs\ja\library\CsvFile.fsx docs\ja\library\CsvProvider.fsx = docs\ja\library\CsvProvider.fsx + docs\ja\fsharpdata.md = docs\ja\fsharpdata.md docs\ja\library\Http.fsx = docs\ja\library\Http.fsx + docs\ja\index.md = docs\ja\index.md docs\ja\library\JsonProvider.fsx = docs\ja\library\JsonProvider.fsx + docs\ja\tutorials\JsonToXml.fsx = docs\ja\tutorials\JsonToXml.fsx docs\ja\library\JsonValue.fsx = docs\ja\library\JsonValue.fsx + docs\tools\templates\ja\template.cshtml = docs\tools\templates\ja\template.cshtml docs\ja\library\WorldBank.fsx = docs\ja\library\WorldBank.fsx docs\ja\library\XmlProvider.fsx = docs\ja\library\XmlProvider.fsx - docs\ja\tutorials\JsonToXml.fsx = docs\ja\tutorials\JsonToXml.fsx - docs\tools\templates\ja\template.cshtml = docs\tools\templates\ja\template.cshtml EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36E72EB1-5847-4B38-8993-B951648CB0D9}" @@ -77,21 +77,22 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution EndProjectSection EndProject Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data", "src\FSharp.Data\FSharp.Data.fsproj", "{6EBFDE55-9687-40A9-8C1A-6E204ECB117F}" - ProjectSection(ProjectDependencies) = postProject - {B85F245B-3FB9-4253-8251-16F98F05B6EC} = {B85F245B-3FB9-4253-8251-16F98F05B6EC} - EndProjectSection -EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.DesignTime", "src\FSharp.Data.DesignTime\FSharp.Data.DesignTime.fsproj", "{B85F245B-3FB9-4253-8251-16F98F05B6EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{1F33D53A-C007-408C-AF6C-B7D62288F941}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Data.Reference.Tests", "tests\FSharp.Data.Reference.Tests\FSharp.Data.Reference.Tests.fsproj", "{DE36F8D0-7895-4ABD-9755-921F1BEAD3C9}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Reference.Tests", "tests\FSharp.Data.Reference.Tests\FSharp.Data.Reference.Tests.fsproj", "{DE36F8D0-7895-4ABD-9755-921F1BEAD3C9}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Data.Tests", "tests\FSharp.Data.Tests\FSharp.Data.Tests.fsproj", "{1746A3E0-32A2-49A7-9C8A-A0BCB52683B0}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Core.Tests", "tests\FSharp.Data.Core.Tests\FSharp.Data.Core.Tests.fsproj", "{1746A3E0-32A2-49A7-9C8A-A0BCB52683B0}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Data.DesignTime.Tests", "tests\FSharp.Data.DesignTime.Tests\FSharp.Data.DesignTime.Tests.fsproj", "{A5B31ACC-56FB-4EC2-917F-BEB3754EF9AC}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.DesignTime.Tests", "tests\FSharp.Data.DesignTime.Tests\FSharp.Data.DesignTime.Tests.fsproj", "{A5B31ACC-56FB-4EC2-917F-BEB3754EF9AC}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FSharp.Data.Tests.CSharp", "tests\FSharp.Data.Tests.CSharp\FSharp.Data.Tests.CSharp.csproj", "{290FED0C-D7C8-486F-AACF-3D7A1304C863}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FSharp.Data.Core.Tests.CSharp", "tests\FSharp.Data.Core.Tests.CSharp\FSharp.Data.Core.Tests.CSharp.csproj", "{290FED0C-D7C8-486F-AACF-3D7A1304C863}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Core", "src\FSharp.Data.Core\FSharp.Data.Core.fsproj", "{DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Tests", "tests\FSharp.Data.Tests\FSharp.Data.Tests.fsproj", "{750148EC-6A05-421D-96A4-E5AC9D18AF58}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.DesignTime", "src\FSharp.Data.DesignTime\FSharp.Data.DesignTime.fsproj", "{44E0DF97-D8FD-4805-8A84-B888D9589C8A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -103,10 +104,6 @@ Global {6EBFDE55-9687-40A9-8C1A-6E204ECB117F}.Debug|Any CPU.Build.0 = Debug|Any CPU {6EBFDE55-9687-40A9-8C1A-6E204ECB117F}.Release|Any CPU.ActiveCfg = Release|Any CPU {6EBFDE55-9687-40A9-8C1A-6E204ECB117F}.Release|Any CPU.Build.0 = Release|Any CPU - {B85F245B-3FB9-4253-8251-16F98F05B6EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B85F245B-3FB9-4253-8251-16F98F05B6EC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B85F245B-3FB9-4253-8251-16F98F05B6EC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B85F245B-3FB9-4253-8251-16F98F05B6EC}.Release|Any CPU.Build.0 = Release|Any CPU {DE36F8D0-7895-4ABD-9755-921F1BEAD3C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DE36F8D0-7895-4ABD-9755-921F1BEAD3C9}.Debug|Any CPU.Build.0 = Debug|Any CPU {DE36F8D0-7895-4ABD-9755-921F1BEAD3C9}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -123,17 +120,30 @@ Global {290FED0C-D7C8-486F-AACF-3D7A1304C863}.Debug|Any CPU.Build.0 = Debug|Any CPU {290FED0C-D7C8-486F-AACF-3D7A1304C863}.Release|Any CPU.ActiveCfg = Release|Any CPU {290FED0C-D7C8-486F-AACF-3D7A1304C863}.Release|Any CPU.Build.0 = Release|Any CPU + {DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}.Release|Any CPU.Build.0 = Release|Any CPU + {750148EC-6A05-421D-96A4-E5AC9D18AF58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {750148EC-6A05-421D-96A4-E5AC9D18AF58}.Debug|Any CPU.Build.0 = Debug|Any CPU + {750148EC-6A05-421D-96A4-E5AC9D18AF58}.Release|Any CPU.ActiveCfg = Release|Any CPU + {750148EC-6A05-421D-96A4-E5AC9D18AF58}.Release|Any CPU.Build.0 = Release|Any CPU + {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {34E4FA16-B344-439D-A789-1E8355E5659F} - EndGlobalSection GlobalSection(NestedProjects) = preSolution {DE36F8D0-7895-4ABD-9755-921F1BEAD3C9} = {1F33D53A-C007-408C-AF6C-B7D62288F941} {1746A3E0-32A2-49A7-9C8A-A0BCB52683B0} = {1F33D53A-C007-408C-AF6C-B7D62288F941} {A5B31ACC-56FB-4EC2-917F-BEB3754EF9AC} = {1F33D53A-C007-408C-AF6C-B7D62288F941} {290FED0C-D7C8-486F-AACF-3D7A1304C863} = {1F33D53A-C007-408C-AF6C-B7D62288F941} + {750148EC-6A05-421D-96A4-E5AC9D18AF58} = {1F33D53A-C007-408C-AF6C-B7D62288F941} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {34E4FA16-B344-439D-A789-1E8355E5659F} EndGlobalSection EndGlobal diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d09668a20..d1d031514 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,8 @@ +### 5.0.1 - Aug 15 2022 + +* There are now two packages - FSharp.Data.Core and FSharp.Data. The first does not include the type providers. + (Future revisions may split into `FSharp.Data.Json.Core`, `FSharp.Data.Html.Core` and so on). + ### 4.2.10 - Aug 12 2022 * Implement "inline schemas": ability to add type hints into the type providers' source documents by @mlaily in https://github.com/fsprojects/FSharp.Data/pull/1447 diff --git a/build.fsx b/build.fsx index 0eead60f0..80c548248 100644 --- a/build.fsx +++ b/build.fsx @@ -36,7 +36,7 @@ let summary = "Library of F# type providers and data access tools" let description = """ - The FSharp.Data package contains type providers and utilities to access + The FSharp.Data.Core and FSharp.Data packages contain type providers and utilities to access common data formats (CSV, HTML, JSON and XML in your F# applications and scripts. It also contains helpers for parsing CSV, HTML and JSON files and for sending HTTP requests.""" @@ -120,9 +120,9 @@ Target.create "RunTests" (fun _ -> "FSharp.Data.sln" |> DotNet.test setParams) // -------------------------------------------------------------------------------------- -// Build a NuGet package +// Build packages -Target.create "NuGet" (fun _ -> +Target.create "Pack" (fun _ -> // Format the release notes let releaseNotes = release.Notes |> String.concat "\n" @@ -143,6 +143,14 @@ Target.create "NuGet" (fun _ -> ("IncludeSymbols", "true") ("SymbolPackageFormat", "snupkg") ] + DotNet.pack + (fun p -> + { p with + Configuration = DotNet.BuildConfiguration.Release + OutputPath = Some "bin" + MSBuildParams = { p.MSBuildParams with Properties = properties } }) + "src/FSharp.Data.Core/FSharp.Data.Core.fsproj" + DotNet.pack (fun p -> { p with @@ -178,7 +186,7 @@ Target.create "Help" (fun _ -> printfn " * Build" printfn " * RunTests" printfn " * GenerateDocs" - printfn " * NuGet (creates package only, doesn't publish)" + printfn " * Pack (creates package only, doesn't publish)" printfn " * All (calls previous 5)" printfn "" printfn " Other targets:" @@ -228,7 +236,7 @@ Target.create "All" ignore ==> "GenerateDocs" ==> "All" -"Build" ==> "NuGet" ==> "All" +"Build" ==> "Pack" ==> "All" "Build" ==> "All" "Build" ==> "RunTests" ==> "All" diff --git a/docs/tutorials/JsonAnonymizer.fsx b/docs/tutorials/JsonAnonymizer.fsx index 0f76f40c1..11d869ade 100644 --- a/docs/tutorials/JsonAnonymizer.fsx +++ b/docs/tutorials/JsonAnonymizer.fsx @@ -122,7 +122,7 @@ type JsonAnonymizer(?propertiesToSkip, ?valuesToSkip) = |> Array.map anonymize |> JsonValue.Array - member __.Anonymize json = anonymize json + member _.Anonymize json = anonymize json let json = JsonValue.Load (__SOURCE_DIRECTORY__ + "../../data/TwitterStream.json") printfn "%O" json diff --git a/src/AssemblyInfo.Core.fs b/src/AssemblyInfo.Core.fs new file mode 100644 index 000000000..437f63310 --- /dev/null +++ b/src/AssemblyInfo.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "4.2.10.0" + let [] AssemblyFileVersion = "4.2.10.0" diff --git a/src/AssemblyInfo.DesignTime.fs b/src/AssemblyInfo.DesignTime.fs index 8e2005f92..0507cc3ff 100644 --- a/src/AssemblyInfo.DesignTime.fs +++ b/src/AssemblyInfo.DesignTime.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FSharp.Data.DesignTime" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "4.2.8.0" - let [] AssemblyFileVersion = "4.2.8.0" + let [] AssemblyVersion = "4.2.10.0" + let [] AssemblyFileVersion = "4.2.10.0" diff --git a/src/AssemblyInfo.fs b/src/AssemblyInfo.fs index baa16c53a..760839d85 100644 --- a/src/AssemblyInfo.fs +++ b/src/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FSharp.Data" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "4.2.8.0" - let [] AssemblyFileVersion = "4.2.8.0" + let [] AssemblyVersion = "4.2.10.0" + let [] AssemblyFileVersion = "4.2.10.0" diff --git a/src/CommonProviderImplementation/Helpers.fs b/src/CommonProviderImplementation/Helpers.fs index a4f1d7163..392b6f0b5 100644 --- a/src/CommonProviderImplementation/Helpers.fs +++ b/src/CommonProviderImplementation/Helpers.fs @@ -103,21 +103,21 @@ type DisposableTypeProviderForNamespaces(config, ?assemblyReplacementMap) as x = use _holder = logTime "DisposingEvent" (sprintf "%O [%d]" x id) dispose None) - member __.Id = id + member _.Id = id - member __.SetFileToWatch(fullTypeName, path) = + member _.SetFileToWatch(fullTypeName, path) = lock filesToWatch (fun () -> filesToWatch.[fullTypeName] <- path) - member __.GetFileToWath(fullTypeName) = + member _.GetFileToWath(fullTypeName) = lock filesToWatch (fun () -> match filesToWatch.TryGetValue(fullTypeName) with | true, path -> Some path | _ -> None) - member __.AddDisposeAction action = + member _.AddDisposeAction action = lock disposeActions (fun () -> disposeActions.Add action) - member __.InvalidateOneType typeName = + member _.InvalidateOneType typeName = (use _holder = logTime "InvalidateOneType" (sprintf "%s in %O [%d]" typeName x id) dispose (Some typeName) log (sprintf "Calling invalidate for %O [%d]" x id)) @@ -743,5 +743,6 @@ module internal ProviderHelpers = spec.GeneratedType) +[] [] do () diff --git a/src/CommonRuntime/Caching.fs b/src/CommonRuntime/Caching.fs index 9bc9c85a3..efcd624dc 100644 --- a/src/CommonRuntime/Caching.fs +++ b/src/CommonRuntime/Caching.fs @@ -1,4 +1,4 @@ -/// Implements caching using in-memory and local file system +/// Implements caching using in-memory and local file system module FSharp.Data.Runtime.Caching open System @@ -34,7 +34,7 @@ let createInMemoryCache (expiration: TimeSpan) = } { new ICache<_, _> with - member __.Set(key, value) = + member _.Set(key, value) = dict.[key] <- (value, DateTime.UtcNow) invalidationFunction key |> Async.Start @@ -47,7 +47,7 @@ let createInMemoryCache (expiration: TimeSpan) = Some value | _ -> None - member __.Remove(key) = + member _.Remove(key) = match dict.TryRemove(key) with | true, _ -> log (sprintf "Explicitly removed from cache: %O" key) | _ -> () } @@ -89,7 +89,7 @@ let createInternetFileCache prefix expiration = let cache = { new ICache with - member __.Set(key, value) = + member _.Set(key, value) = let cacheFile = cacheFile key try @@ -101,7 +101,7 @@ let createInternetFileCache prefix expiration = e.Message ) - member __.TryRetrieve(key, ?extendCacheExpiration) = + member _.TryRetrieve(key, ?extendCacheExpiration) = if extendCacheExpiration = Some true then failwith "Not implemented" @@ -119,7 +119,7 @@ let createInternetFileCache prefix expiration = Debug.WriteLine("Caching: Failed to read file {0} with an exception: {1}", cacheFile, e.Message) None - member __.Remove(key) = + member _.Remove(key) = let cacheFile = cacheFile key try diff --git a/src/CommonRuntime/IO.fs b/src/CommonRuntime/IO.fs index e4c08cbc5..b91d07420 100644 --- a/src/CommonRuntime/IO.fs +++ b/src/CommonRuntime/IO.fs @@ -1,4 +1,4 @@ -/// Helper functions called from the generated code for working with files +/// Helper functions called from the generated code for working with files module FSharp.Data.Runtime.IO open System @@ -113,7 +113,7 @@ let internal logTime category (instance: string) = s.Start() { new IDisposable with - member __.Dispose() = + member _.Dispose() = s.Stop() Interlocked.Decrement &indentation |> ignore log (sprintf "Finished %s [%dms]" category s.ElapsedMilliseconds) @@ -126,11 +126,11 @@ let internal logTime category (instance: string) = let internal dummyDisposable = { new IDisposable with - member __.Dispose() = () } + member _.Dispose() = () } -let inline internal log (_: string) = () -let inline internal logWithStackTrace (_: string) = () -let inline internal logTime (_: string) (_: string) = dummyDisposable +let internal log (_: string) = () +let internal logWithStackTrace (_: string) = () +let internal logTime (_: string) (_: string) = dummyDisposable #endif @@ -165,9 +165,9 @@ type private FileWatcher(path) = watcher.Renamed.Add(checkForChanges "renamed") watcher.Deleted.Add(checkForChanges "deleted") - member __.Subscribe(name, action) = subscriptions.Add(name, action) + member _.Subscribe(name, action) = subscriptions.Add(name, action) - member __.Unsubscribe(name) = + member _.Unsubscribe(name) = if subscriptions.Remove(name) then log (sprintf "Unsubscribed %s from %s watcher" name path) @@ -205,7 +205,7 @@ let watchForChanges path (owner, onChange) = watcher) { new IDisposable with - member __.Dispose() = + member _.Dispose() = lock watchers (fun () -> if watcher.Unsubscribe(owner) then watchers.Remove(path) |> ignore) } diff --git a/src/CommonRuntime/NameUtils.fs b/src/CommonRuntime/NameUtils.fs index 5462007b0..1d494b771 100644 --- a/src/CommonRuntime/NameUtils.fs +++ b/src/CommonRuntime/NameUtils.fs @@ -2,7 +2,6 @@ module FSharp.Data.Runtime.NameUtils open System -open System.Globalization open System.Collections.Generic open FSharp.Data.Runtime diff --git a/src/CommonRuntime/TextRuntime.fs b/src/CommonRuntime/TextRuntime.fs index 3d06bc8ff..178cac246 100644 --- a/src/CommonRuntime/TextRuntime.fs +++ b/src/CommonRuntime/TextRuntime.fs @@ -1,16 +1,16 @@ -namespace FSharp.Data.Runtime +namespace FSharp.Data.Runtime open System +open System.Collections.Generic open System.Globalization open FSharp.Data -open FSharp.Data.Runtime /// Static helper methods called from the generated code for working with text type TextRuntime = [] [] - static val mutable private cultureInfoCache: Collections.Generic.Dictionary + static val mutable private cultureInfoCache: Dictionary /// Returns CultureInfo matching the specified culture string /// (or InvariantCulture if the argument is null or empty) @@ -21,7 +21,7 @@ type TextRuntime = let mutable cache = TextRuntime.cultureInfoCache if cache = null then - cache <- Collections.Generic.Dictionary() + cache <- Dictionary() TextRuntime.cultureInfoCache <- cache match cache.TryGetValue cultureStr with diff --git a/src/Csv/CsvFile.fs b/src/Csv/CsvFile.fs index e8767fad1..3161d19e2 100644 --- a/src/Csv/CsvFile.fs +++ b/src/Csv/CsvFile.fs @@ -17,21 +17,21 @@ open System.Text type CsvRow(parent: CsvFile, columns: string[]) = /// The columns of the row - member __.Columns = columns + member _.Columns = columns /// Gets a column by index - member __.GetColumn index = columns.[index] + member _.GetColumn index = columns.[index] /// Gets a column by name - member __.GetColumn columnName = + member _.GetColumn columnName = columns.[parent.GetColumnIndex columnName] /// Gets a column by index - member __.Item + member _.Item with get index = columns.[index] /// Gets a column by name - member __.Item + member _.Item with get columnName = columns.[parent.GetColumnIndex columnName] /// @@ -74,10 +74,10 @@ and CsvFile | None -> [] |> dict /// Returns the index of the column with the given name - member __.GetColumnIndex columnName = headerDic.[columnName] + member _.GetColumnIndex columnName = headerDic.[columnName] /// Returns the index of the column with the given name, or returns None if no column is found - member __.TryGetColumnIndex columnName = + member _.TryGetColumnIndex columnName = match headerDic.TryGetValue columnName with | true, index -> Some index | false, _ -> None diff --git a/src/Csv/CsvInference.fs b/src/Csv/CsvInference.fs index afee7a315..e5139a879 100644 --- a/src/Csv/CsvInference.fs +++ b/src/Csv/CsvInference.fs @@ -3,7 +3,6 @@ module FSharp.Data.Runtime.CsvInference open System open System.IO -open System.Runtime.InteropServices open System.Text.RegularExpressions open FSharp.Data open FSharp.Data.Runtime diff --git a/src/Csv/CsvRuntime.fs b/src/Csv/CsvRuntime.fs index 89a6899aa..e62249ee0 100644 --- a/src/Csv/CsvRuntime.fs +++ b/src/Csv/CsvRuntime.fs @@ -256,22 +256,22 @@ type CsvFile<'RowType> ) = /// The rows with data - member __.Rows = rows + member _.Rows = rows /// The names of the columns - member __.Headers = headers + member _.Headers = headers /// The number of columns - member __.NumberOfColumns = numberOfColumns + member _.NumberOfColumns = numberOfColumns /// The character(s) used as column separator(s) - member __.Separators = separators + member _.Separators = separators /// The quotation mark use for surrounding values containing separator chars - member __.Quote = quote + member _.Quote = quote interface IDisposable with - member __.Dispose() = disposer.Dispose() + member _.Dispose() = disposer.Dispose() /// [] diff --git a/src/FSharp.Data.Core/FSharp.Data.Core.fsproj b/src/FSharp.Data.Core/FSharp.Data.Core.fsproj new file mode 100644 index 000000000..ca840d442 --- /dev/null +++ b/src/FSharp.Data.Core/FSharp.Data.Core.fsproj @@ -0,0 +1,58 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + false + true + ..\keyfile.snk + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..cc29667cc --- /dev/null +++ b/src/FSharp.Data.Core/InternalsVisibleTo.fs @@ -0,0 +1,9 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Core/paket.references b/src/FSharp.Data.Core/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.Core/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj index 26ca346ef..53d027d7c 100755 --- a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj +++ b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj @@ -13,15 +13,6 @@ true - - - - - - - - - ProvidedTypes.fsi @@ -32,41 +23,24 @@ - - - - - - - - - - - - - - - - - - - - - + + + + diff --git a/src/FSharp.Data/FSharp.Data.fsproj b/src/FSharp.Data/FSharp.Data.fsproj index 174700c5c..00a3de16e 100755 --- a/src/FSharp.Data/FSharp.Data.fsproj +++ b/src/FSharp.Data/FSharp.Data.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 + --warnon:1182 --nowarn:10001 true false logo.png @@ -16,45 +16,19 @@ true - - - - - - - - - - - - - - - - - - - - - - - - - - - - + true all + - + diff --git a/src/Html/HtmlActivePatterns.fs b/src/Html/HtmlActivePatterns.fs index c2b3cd45a..f370f66c3 100644 --- a/src/Html/HtmlActivePatterns.fs +++ b/src/Html/HtmlActivePatterns.fs @@ -1,5 +1,6 @@ -namespace FSharp.Data +namespace FSharp.Data +[] module HtmlActivePatterns = let (|HtmlElement|HtmlText|HtmlComment|HtmlCData|) (node: HtmlNode) = match node with diff --git a/src/Html/HtmlCssSelectors.fs b/src/Html/HtmlCssSelectors.fs index 93ec31aaf..dc40698ff 100644 --- a/src/Html/HtmlCssSelectors.fs +++ b/src/Html/HtmlCssSelectors.fs @@ -1,7 +1,9 @@ -namespace FSharp.Data +namespace FSharp.Data open System +#nowarn "26" + module internal HtmlCssSelectors = type SelectorToken = diff --git a/src/Html/HtmlNode.fs b/src/Html/HtmlNode.fs new file mode 100644 index 000000000..115b63ee6 --- /dev/null +++ b/src/Html/HtmlNode.fs @@ -0,0 +1,233 @@ +#nowarn "10001" +namespace FSharp.Data + +open System +open System.ComponentModel +open System.Text + +// -------------------------------------------------------------------------------------- + +/// Represents an HTML attribute. The name is always normalized to lowercase +/// +/// Contains the primary types for the FSharp.Data package. +/// +/// +type HtmlAttribute = + + internal + | HtmlAttribute of name: string * value: string + + /// + /// Creates an html attribute + /// + /// The name of the attribute + /// The value of the attribute + static member New(name: string, value: string) = + HtmlAttribute(name.ToLowerInvariant(), value) + +[] +[] +/// Represents an HTML node. The names of elements are always normalized to lowercase +type HtmlNode = + + internal + | HtmlElement of name: string * attributes: HtmlAttribute list * elements: HtmlNode list + | HtmlText of content: string + | HtmlComment of content: string + | HtmlCData of content: string + + /// + /// Creates an html element + /// + /// The name of the element + static member NewElement(name: string) = + HtmlElement(name.ToLowerInvariant(), [], []) + + /// + /// Creates an html element + /// + /// The name of the element + /// The HtmlAttribute(s) of the element + static member NewElement(name: string, attrs: seq<_>) = + let attrs = attrs |> Seq.map HtmlAttribute.New |> Seq.toList + HtmlElement(name.ToLowerInvariant(), attrs, []) + + /// + /// Creates an html element + /// + /// The name of the element + /// The children elements of this element + static member NewElement(name: string, children: seq<_>) = + HtmlElement(name.ToLowerInvariant(), [], List.ofSeq children) + + + /// + /// Creates an html element + /// + /// The name of the element + /// The HtmlAttribute(s) of the element + /// The children elements of this element + static member NewElement(name: string, attrs: seq<_>, children: seq<_>) = + let attrs = attrs |> Seq.map HtmlAttribute.New |> Seq.toList + HtmlElement(name.ToLowerInvariant(), attrs, List.ofSeq children) + + /// + /// Creates a text content element + /// + /// The actual content + static member NewText content = HtmlText(content) + + /// + /// Creates a comment element + /// + /// The actual content + static member NewComment content = HtmlComment(content) + + /// + /// Creates a CData element + /// + /// The actual content + static member NewCData content = HtmlCData(content) + + override x.ToString() = + let isVoidElement = + let set = + [| "area" + "base" + "br" + "col" + "command" + "embed" + "hr" + "img" + "input" + "keygen" + "link" + "meta" + "param" + "source" + "track" + "wbr" |] + |> Set.ofArray + + fun name -> Set.contains name set + + let rec serialize (sb: StringBuilder) indentation canAddNewLine html = + let append (str: string) = sb.Append str |> ignore + + let appendEndTag name = + append "" + + let newLine plus = + sb.AppendLine() |> ignore + String(' ', indentation + plus) |> append + + match html with + | HtmlElement (name, attributes, elements) -> + let onlyText = + elements + |> List.forall (function + | HtmlText _ -> true + | _ -> false) + + if canAddNewLine && not onlyText then newLine 0 + append "<" + append name + + for HtmlAttribute (name, value) in attributes do + append " " + append name + append "=\"" + append value + append "\"" + + if isVoidElement name then + append " />" + elif elements.IsEmpty then + append ">" + appendEndTag name + else + append ">" + if not onlyText then newLine 2 + let mutable canAddNewLine = false + + for element in elements do + serialize sb (indentation + 2) canAddNewLine element + canAddNewLine <- true + + if not onlyText then newLine 0 + appendEndTag name + | HtmlText str -> append str + | HtmlComment str -> + append "" + | HtmlCData str -> + append "" + + let sb = StringBuilder() + serialize sb 0 false x |> ignore + sb.ToString() + + /// + [] + [] + member x._Print = + let str = x.ToString() + + if str.Length > 512 then + str.Substring(0, 509) + "..." + else + str + +[] +/// Represents an HTML document +type HtmlDocument = + internal + | HtmlDocument of docType: string * elements: HtmlNode list + + /// + /// Creates an html document + /// + /// The document type specifier string + /// The child elements of this document + static member New(docType, children: seq<_>) = + HtmlDocument(docType, List.ofSeq children) + + /// + /// Creates an html document + /// + /// The child elements of this document + static member New(children: seq<_>) = HtmlDocument("", List.ofSeq children) + + override x.ToString() = + match x with + | HtmlDocument (docType, elements) -> + (if String.IsNullOrEmpty docType then + "" + else + "" + Environment.NewLine) + + (elements + |> List.map (fun x -> x.ToString()) + |> String.Concat) + + /// + [] + [] + member x._Print = + let str = x.ToString() + + if str.Length > 512 then + str.Substring(0, 509) + "..." + else + str diff --git a/src/Html/HtmlOperations.fs b/src/Html/HtmlOperations.fs index 75b9e5a09..df79bd85b 100644 --- a/src/Html/HtmlOperations.fs +++ b/src/Html/HtmlOperations.fs @@ -49,13 +49,13 @@ module HtmlNode = /// Gets the given nodes name let name n = match n with - | HtmlElement (name = name) -> name + | HtmlNode.HtmlElement (name = name) -> name | _ -> "" /// Gets all of the nodes immediately under this node let elements n = match n with - | HtmlElement (elements = elements) -> elements + | HtmlNode.HtmlElement (elements = elements) -> elements | _ -> [] /// @@ -193,7 +193,7 @@ module HtmlNode = /// Gets all of the attributes of this node let attributes n = match n with - | HtmlElement (attributes = attributes) -> attributes + | HtmlNode.HtmlElement (attributes = attributes) -> attributes | _ -> [] /// @@ -259,16 +259,16 @@ module HtmlNode = let private innerTextExcluding' recurse exclusions n = let rec innerText' n = match n with - | HtmlElement (name, _, content) when List.forall ((<>) name) exclusions -> + | HtmlNode.HtmlElement (name, _, content) when List.forall ((<>) name) exclusions -> seq { for e in content do match e with - | HtmlText (text) -> yield text - | HtmlComment (_) -> yield "" + | HtmlNode.HtmlText (text) -> yield text + | HtmlNode.HtmlComment (_) -> yield "" | elem -> if recurse then yield innerText' elem else yield "" } |> String.Concat - | HtmlText (text) -> text + | HtmlNode.HtmlText (text) -> text | _ -> "" innerText' n diff --git a/src/Html/HtmlParser.fs b/src/Html/HtmlParser.fs index 61990ba30..5757ca865 100644 --- a/src/Html/HtmlParser.fs +++ b/src/Html/HtmlParser.fs @@ -2,7 +2,6 @@ namespace FSharp.Data open System -open System.ComponentModel open System.IO open System.Text open System.Text.RegularExpressions @@ -11,233 +10,6 @@ open FSharp.Data.Runtime open System.Runtime.InteropServices open System.Collections.Generic -// -------------------------------------------------------------------------------------- - -/// Represents an HTML attribute. The name is always normalized to lowercase -/// -/// Contains the primary types for the FSharp.Data package. -/// -/// -type HtmlAttribute = - - internal - | HtmlAttribute of name: string * value: string - - /// - /// Creates an html attribute - /// - /// The name of the attribute - /// The value of the attribute - static member New(name: string, value: string) = - HtmlAttribute(name.ToLowerInvariant(), value) - -[] -/// Represents an HTML node. The names of elements are always normalized to lowercase -type HtmlNode = - - internal - | HtmlElement of name: string * attributes: HtmlAttribute list * elements: HtmlNode list - | HtmlText of content: string - | HtmlComment of content: string - | HtmlCData of content: string - - /// - /// Creates an html element - /// - /// The name of the element - static member NewElement(name: string) = - HtmlElement(name.ToLowerInvariant(), [], []) - - /// - /// Creates an html element - /// - /// The name of the element - /// The HtmlAttribute(s) of the element - static member NewElement(name: string, attrs: seq<_>) = - let attrs = attrs |> Seq.map HtmlAttribute.New |> Seq.toList - HtmlElement(name.ToLowerInvariant(), attrs, []) - - /// - /// Creates an html element - /// - /// The name of the element - /// The children elements of this element - static member NewElement(name: string, children: seq<_>) = - HtmlElement(name.ToLowerInvariant(), [], List.ofSeq children) - - - /// - /// Creates an html element - /// - /// The name of the element - /// The HtmlAttribute(s) of the element - /// The children elements of this element - static member NewElement(name: string, attrs: seq<_>, children: seq<_>) = - let attrs = attrs |> Seq.map HtmlAttribute.New |> Seq.toList - HtmlElement(name.ToLowerInvariant(), attrs, List.ofSeq children) - - /// - /// Creates a text content element - /// - /// The actual content - static member NewText content = HtmlText(content) - - /// - /// Creates a comment element - /// - /// The actual content - static member NewComment content = HtmlComment(content) - - /// - /// Creates a CData element - /// - /// The actual content - static member NewCData content = HtmlCData(content) - - override x.ToString() = - let isVoidElement = - let set = - [| "area" - "base" - "br" - "col" - "command" - "embed" - "hr" - "img" - "input" - "keygen" - "link" - "meta" - "param" - "source" - "track" - "wbr" |] - |> Set.ofArray - - fun name -> Set.contains name set - - let rec serialize (sb: StringBuilder) indentation canAddNewLine html = - let append (str: string) = sb.Append str |> ignore - - let appendEndTag name = - append "" - - let newLine plus = - sb.AppendLine() |> ignore - String(' ', indentation + plus) |> append - - match html with - | HtmlElement (name, attributes, elements) -> - let onlyText = - elements - |> List.forall (function - | HtmlText _ -> true - | _ -> false) - - if canAddNewLine && not onlyText then newLine 0 - append "<" - append name - - for HtmlAttribute (name, value) in attributes do - append " " - append name - append "=\"" - append value - append "\"" - - if isVoidElement name then - append " />" - elif elements.IsEmpty then - append ">" - appendEndTag name - else - append ">" - if not onlyText then newLine 2 - let mutable canAddNewLine = false - - for element in elements do - serialize sb (indentation + 2) canAddNewLine element - canAddNewLine <- true - - if not onlyText then newLine 0 - appendEndTag name - | HtmlText str -> append str - | HtmlComment str -> - append "" - | HtmlCData str -> - append "" - - let sb = StringBuilder() - serialize sb 0 false x |> ignore - sb.ToString() - - /// - [] - [] - member x._Print = - let str = x.ToString() - - if str.Length > 512 then - str.Substring(0, 509) + "..." - else - str - -[] -/// Represents an HTML document -type HtmlDocument = - internal - | HtmlDocument of docType: string * elements: HtmlNode list - - /// - /// Creates an html document - /// - /// The document type specifier string - /// The child elements of this document - static member New(docType, children: seq<_>) = - HtmlDocument(docType, List.ofSeq children) - - /// - /// Creates an html document - /// - /// The child elements of this document - static member New(children: seq<_>) = HtmlDocument("", List.ofSeq children) - - override x.ToString() = - match x with - | HtmlDocument (docType, elements) -> - (if String.IsNullOrEmpty docType then - "" - else - "" + Environment.NewLine) - + (elements - |> List.map (fun x -> x.ToString()) - |> String.Concat) - - /// - [] - [] - member x._Print = - let str = x.ToString() - - if str.Length > 512 then - str.Substring(0, 509) + "..." - else - str - - // -------------------------------------------------------------------------------------- module private TextParser = @@ -1244,19 +1016,19 @@ module internal HtmlParser = (dt, tokens, content) else let _, elements, expectedTagEnd, parentTagName, name, attributes = callstack.Pop() - let e = HtmlElement(name, attributes, content) + let e = HtmlNode.HtmlElement(name, attributes, content) parse' dt (e :: elements) expectedTagEnd parentTagName tokens match tokens with | DocType dt :: rest -> parse' (dt.Trim()) elements expectedTagEnd parentTagName rest | Tag (_, "br", []) :: rest -> - let t = HtmlText Environment.NewLine + let t = HtmlNode.HtmlText Environment.NewLine parse' docType (t :: elements) expectedTagEnd parentTagName rest | Tag (true, name, attributes) :: rest -> - let e = HtmlElement(name, attributes, []) + let e = HtmlNode.HtmlElement(name, attributes, []) parse' docType (e :: elements) expectedTagEnd parentTagName rest | Tag (false, name, attributes) :: rest when canNotHaveChildren name -> - let e = HtmlElement(name, attributes, []) + let e = HtmlNode.HtmlElement(name, attributes, []) parse' docType (e :: elements) expectedTagEnd parentTagName rest | Tag (_, name, _) :: _ when isImplicitlyClosedByStartTag expectedTagEnd name -> // insert missing or when starting new row/cell/header @@ -1291,20 +1063,20 @@ module internal HtmlParser = // ignore this token parse' docType elements expectedTagEnd parentTagName rest else - let t = HtmlText(a + b) + let t = HtmlNode.HtmlText(a + b) parse' docType (t :: elements) expectedTagEnd parentTagName rest | Text cont :: rest -> if cont = "" then // ignore this token parse' docType elements expectedTagEnd parentTagName rest else - let t = HtmlText cont + let t = HtmlNode.HtmlText cont parse' docType (t :: elements) expectedTagEnd parentTagName rest | Comment cont :: rest -> - let c = HtmlComment cont + let c = HtmlNode.HtmlComment cont parse' docType (c :: elements) expectedTagEnd parentTagName rest | CData cont :: rest -> - let c = HtmlCData cont + let c = HtmlNode.HtmlCData cont parse' docType (c :: elements) expectedTagEnd parentTagName rest | EOF :: _ -> recursiveReturn (docType, [], List.rev elements) | [] -> recursiveReturn (docType, [], List.rev elements) @@ -1326,44 +1098,46 @@ module internal HtmlParser = /// All br tags will be replaced by newlines let parseFragment reader = parse reader |> snd -// -------------------------------------------------------------------------------------- - -type HtmlDocument with - - /// Parses the specified HTML string - static member Parse(text) = - use reader = new StringReader(text) - HtmlParser.parseDocument reader - - /// Loads HTML from the specified stream - static member Load(stream: Stream) = - use reader = new StreamReader(stream) - HtmlParser.parseDocument reader - - /// Loads HTML from the specified reader - static member Load(reader: TextReader) = HtmlParser.parseDocument reader - - /// Loads HTML from the specified uri asynchronously - static member AsyncLoad(uri: string, [] ?encoding) = - async { - let encoding = defaultArg encoding Encoding.UTF8 - let! reader = IO.asyncReadTextAtRuntime false "" "" "HTML" encoding.WebName uri - return HtmlParser.parseDocument reader - } - - /// Loads HTML from the specified uri - static member Load(uri: string, [] ?encoding) = - HtmlDocument.AsyncLoad(uri, ?encoding = encoding) - |> Async.RunSynchronously - -type HtmlNode with - - /// Parses the specified HTML string to a list of HTML nodes - static member Parse(text) = - use reader = new StringReader(text) - HtmlParser.parseFragment reader - - /// Parses the specified HTML string to a list of HTML nodes - static member ParseRooted(rootName, text) = - use reader = new StringReader(text) - HtmlElement(rootName, [], HtmlParser.parseFragment reader) +[] +module HtmlAutoOpens = + // -------------------------------------------------------------------------------------- + + type HtmlDocument with + + /// Parses the specified HTML string + static member Parse(text) = + use reader = new StringReader(text) + HtmlParser.parseDocument reader + + /// Loads HTML from the specified stream + static member Load(stream: Stream) = + use reader = new StreamReader(stream) + HtmlParser.parseDocument reader + + /// Loads HTML from the specified reader + static member Load(reader: TextReader) = HtmlParser.parseDocument reader + + /// Loads HTML from the specified uri asynchronously + static member AsyncLoad(uri: string, [] ?encoding) = + async { + let encoding = defaultArg encoding Encoding.UTF8 + let! reader = IO.asyncReadTextAtRuntime false "" "" "HTML" encoding.WebName uri + return HtmlParser.parseDocument reader + } + + /// Loads HTML from the specified uri + static member Load(uri: string, [] ?encoding) = + HtmlDocument.AsyncLoad(uri, ?encoding = encoding) + |> Async.RunSynchronously + + type HtmlNode with + + /// Parses the specified HTML string to a list of HTML nodes + static member Parse(text) = + use reader = new StringReader(text) + HtmlParser.parseFragment reader + + /// Parses the specified HTML string to a list of HTML nodes + static member ParseRooted(rootName, text) = + use reader = new StringReader(text) + HtmlNode.HtmlElement(rootName, [], HtmlParser.parseFragment reader) diff --git a/src/Html/HtmlRuntime.fs b/src/Html/HtmlRuntime.fs index 8ddaa8290..e7fbcf21a 100644 --- a/src/Html/HtmlRuntime.fs +++ b/src/Html/HtmlRuntime.fs @@ -1,10 +1,8 @@ -namespace FSharp.Data.Runtime +namespace FSharp.Data.Runtime open System open System.Globalization -open System.IO open System.Text -open System.Text.RegularExpressions open FSharp.Data open FSharp.Data.HtmlExtensions open FSharp.Data.Runtime @@ -39,6 +37,7 @@ type HtmlTable = HasHeaders: bool option // always set at designtime, never at runtime Rows: string[][] Html: HtmlNode } + override x.ToString() = let sb = StringBuilder() sb.AppendLine x.Name |> ignore @@ -462,7 +461,7 @@ open FSharp.Data.Runtime /// Underlying representation of the root types generated by HtmlProvider type HtmlDocument internal (doc, tables, lists, definitionLists) = - member __.Html = doc + member _.Html = doc /// [] @@ -499,7 +498,7 @@ type HtmlDocument internal (doc, tables, lists, definitionLists) = 10001, IsHidden = true, IsError = false)>] - member __.GetTable(id: string) = tables |> Map.find id + member _.GetTable(id: string) = tables |> Map.find id /// [] @@ -507,7 +506,7 @@ type HtmlDocument internal (doc, tables, lists, definitionLists) = 10001, IsHidden = true, IsError = false)>] - member __.GetList(id: string) = lists |> Map.find id + member _.GetList(id: string) = lists |> Map.find id /// [] @@ -515,15 +514,15 @@ type HtmlDocument internal (doc, tables, lists, definitionLists) = 10001, IsHidden = true, IsError = false)>] - member __.GetDefinitionList(id: string) = definitionLists |> Map.find id + member _.GetDefinitionList(id: string) = definitionLists |> Map.find id /// Underlying representation of table types generated by HtmlProvider type HtmlTable<'RowType> internal (name: string, headers: string[] option, values: 'RowType[], html: HtmlNode) = - member __.Name = name - member __.Headers = headers - member __.Rows = values - member __.Html = html + member _.Name = name + member _.Headers = headers + member _.Rows = values + member _.Html = html /// [] @@ -545,9 +544,9 @@ type HtmlTable<'RowType> internal (name: string, headers: string[] option, value /// Underlying representation of list types generated by HtmlProvider type HtmlList<'ItemType> internal (name: string, values: 'ItemType[], html) = - member __.Name = name - member __.Values = values - member __.Html = html + member _.Name = name + member _.Values = values + member _.Html = html [] [ +type IJsonDocument = + abstract JsonValue: JsonValue + + [] + [] + abstract Path: unit -> string + + [] + [] + abstract CreateNew: value: JsonValue * pathIncrement: string -> IJsonDocument + +/// Underlying representation of types generated by JsonProvider +/// +/// Contains the runtime base types used by generated row types for FSharp.Data type providers. +/// +[] +type JsonDocument = + + private + { + /// + Json: JsonValue + /// + Path: string + } + + interface IJsonDocument with + member x.JsonValue = x.Json + member x.Path() = x.Path + + member x.CreateNew(value, pathIncrement) = + JsonDocument.Create(value, x.Path + pathIncrement) + + /// The underlying JsonValue + member x.JsonValue = x.Json + + /// + [] + [] + override x.ToString() = x.JsonValue.ToString() + + /// + [] + [] + static member Create(value, path) = + { Json = value; Path = path } :> IJsonDocument + + /// + [] + [] + static member Create(reader: TextReader) = + use reader = reader + let text = reader.ReadToEnd() + let value = JsonValue.Parse(text) + JsonDocument.Create(value, "") + + /// + [] + [] + static member CreateList(reader: TextReader) = + use reader = reader + let text = reader.ReadToEnd() + + match JsonValue.ParseMultiple(text) |> Seq.toArray with + | [| JsonValue.Array array |] -> array + | array -> array + |> Array.mapi (fun i value -> JsonDocument.Create(value, "[" + (string i) + "]")) + diff --git a/src/Json/JsonRuntime.fs b/src/Json/JsonRuntime.fs index 0c121bd9a..385dca19a 100644 --- a/src/Json/JsonRuntime.fs +++ b/src/Json/JsonRuntime.fs @@ -1,110 +1,12 @@ // -------------------------------------------------------------------------------------- // JSON type provider - methods that are called from the generated erased code // -------------------------------------------------------------------------------------- -namespace FSharp.Data.Runtime.BaseTypes - -open System.ComponentModel -open System.IO -open FSharp.Data -open FSharp.Data.Runtime - -#nowarn "10001" - -/// -type IJsonDocument = - abstract JsonValue: JsonValue - - [] - [] - abstract Path: unit -> string - - [] - [] - abstract CreateNew: value: JsonValue * pathIncrement: string -> IJsonDocument - -/// Underlying representation of types generated by JsonProvider -/// -/// Contains the runtime base types used by generated row types for FSharp.Data type providers. -/// -[] -type JsonDocument = - - private - { - /// - Json: JsonValue - /// - Path: string - } - - interface IJsonDocument with - member x.JsonValue = x.Json - member x.Path() = x.Path - - member x.CreateNew(value, pathIncrement) = - JsonDocument.Create(value, x.Path + pathIncrement) - - /// The underlying JsonValue - member x.JsonValue = x.Json - - /// - [] - [] - override x.ToString() = x.JsonValue.ToString() - - /// - [] - [] - static member Create(value, path) = - { Json = value; Path = path } :> IJsonDocument - - /// - [] - [] - static member Create(reader: TextReader) = - use reader = reader - let text = reader.ReadToEnd() - let value = JsonValue.Parse(text) - JsonDocument.Create(value, "") - - /// - [] - [] - static member CreateList(reader: TextReader) = - use reader = reader - let text = reader.ReadToEnd() - - match JsonValue.ParseMultiple(text) |> Seq.toArray with - | [| JsonValue.Array array |] -> array - | array -> array - |> Array.mapi (fun i value -> JsonDocument.Create(value, "[" + (string i) + "]")) - -// -------------------------------------------------------------------------------------- namespace FSharp.Data.Runtime open System open System.Globalization open FSharp.Data -open FSharp.Data.JsonExtensions open FSharp.Data.Runtime open FSharp.Data.Runtime.BaseTypes open FSharp.Data.Runtime.StructuralTypes diff --git a/src/Json/JsonValue.fs b/src/Json/JsonValue.fs index 708ab1fb1..96dad059c 100644 --- a/src/Json/JsonValue.fs +++ b/src/Json/JsonValue.fs @@ -496,3 +496,4 @@ type JsonValue with [] member x.Post(uri: string, [] ?headers) = x.Request(uri, ?headers = headers) + diff --git a/src/Runtime.fs b/src/Runtime.fs index 739899daa..c8067358e 100644 --- a/src/Runtime.fs +++ b/src/Runtime.fs @@ -1,8 +1,8 @@ -namespace global +namespace global open System.Runtime.CompilerServices open FSharp.Core.CompilerServices [] -[] +[] do () diff --git a/src/WorldBank/WorldBankRuntime.fs b/src/WorldBank/WorldBankRuntime.fs index 91e7b5379..766e1fc1b 100644 --- a/src/WorldBank/WorldBankRuntime.fs +++ b/src/WorldBank/WorldBankRuntime.fs @@ -292,59 +292,63 @@ type Indicator internal (connection: ServiceConnection, countryOrRegionCode: str let dataDict = lazy (dict data) /// Get the code for the country or region of the indicator - member x.Code = countryOrRegionCode + member _.Code = countryOrRegionCode /// Get the code for the indicator - member x.IndicatorCode = indicatorCode + member _.IndicatorCode = indicatorCode /// Get the name of the indicator - member x.Name = connection.IndicatorsIndexed.[indicatorCode].Name + member _.Name = connection.IndicatorsIndexed.[indicatorCode].Name /// Get the source of the indicator - member x.Source = connection.IndicatorsIndexed.[indicatorCode].Source + member _.Source = connection.IndicatorsIndexed.[indicatorCode].Source /// Get the description of the indicator - member x.Description = connection.IndicatorsIndexed.[indicatorCode].Description + member _.Description = connection.IndicatorsIndexed.[indicatorCode].Description /// Get the indicator value for the given year. If there's no data for that year, NaN is returned - member x.Item + member _.Item with get year = match dataDict.Force().TryGetValue year with | true, value -> value | _ -> Double.NaN /// Get the indicator value for the given year, if present - member x.TryGetValueAt year = + member _.TryGetValueAt year = match dataDict.Force().TryGetValue year with | true, value -> Some value | _ -> None /// Get the years for which the indicator has values - member x.Years = dataDict.Force().Keys + member _.Years = dataDict.Force().Keys /// Get the values for the indicator (without years) - member x.Values = dataDict.Force().Values + member _.Values = dataDict.Force().Values interface seq with - member x.GetEnumerator() = data.GetEnumerator() + member _.GetEnumerator() = data.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = (data.GetEnumerator() :> _) + member _.GetEnumerator() = (data.GetEnumerator() :> _) /// Metadata for an Indicator [] [] type IndicatorDescription internal (connection: ServiceConnection, topicCode: string, indicatorCode: string) = /// Get the code for the topic of the indicator - member x.Code = topicCode + member _.Code = topicCode + /// Get the code for the indicator - member x.IndicatorCode = indicatorCode + member _.IndicatorCode = indicatorCode + /// Get the name of the indicator - member x.Name = connection.IndicatorsIndexed.[indicatorCode].Name + member _.Name = connection.IndicatorsIndexed.[indicatorCode].Name + /// Get the source of the indicator - member x.Source = connection.IndicatorsIndexed.[indicatorCode].Source + member _.Source = connection.IndicatorsIndexed.[indicatorCode].Source + /// Get the description of the indicator - member x.Description = connection.IndicatorsIndexed.[indicatorCode].Description + member _.Description = connection.IndicatorsIndexed.[indicatorCode].Description /// type IIndicators = @@ -357,17 +361,17 @@ type Indicators internal (connection: ServiceConnection, countryOrRegionCode) = seq { for indicator in connection.Indicators -> Indicator(connection, countryOrRegionCode, indicator.Id) } interface IIndicators with - member x.GetIndicator(indicatorCode) = + member _.GetIndicator(indicatorCode) = Indicator(connection, countryOrRegionCode, indicatorCode) - member x.AsyncGetIndicator(indicatorCode) = + member _.AsyncGetIndicator(indicatorCode) = async { return Indicator(connection, countryOrRegionCode, indicatorCode) } interface seq with - member x.GetEnumerator() = indicators.GetEnumerator() + member _.GetEnumerator() = indicators.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = indicators.GetEnumerator() :> _ + member _.GetEnumerator() = indicators.GetEnumerator() :> _ /// type IIndicatorsDescriptions = @@ -382,14 +386,14 @@ type IndicatorsDescriptions internal (connection: ServiceConnection, topicCode) } interface IIndicatorsDescriptions with - member x.GetIndicator(indicatorCode) = + member _.GetIndicator(indicatorCode) = IndicatorDescription(connection, topicCode, indicatorCode) interface seq with - member x.GetEnumerator() = indicatorsDescriptions.GetEnumerator() + member _.GetEnumerator() = indicatorsDescriptions.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = + member _.GetEnumerator() = indicatorsDescriptions.GetEnumerator() :> _ /// @@ -401,17 +405,21 @@ type ICountry = [] type Country internal (connection: ServiceConnection, countryCode: string) = let indicators = new Indicators(connection, countryCode) + /// Get the WorldBank code of the country - member x.Code = countryCode + member _.Code = countryCode + /// Get the name of the country - member x.Name = connection.CountriesIndexed.[countryCode].Name + member _.Name = connection.CountriesIndexed.[countryCode].Name + /// Get the capital city of the country - member x.CapitalCity = connection.CountriesIndexed.[countryCode].CapitalCity + member _.CapitalCity = connection.CountriesIndexed.[countryCode].CapitalCity + /// Get the region of the country - member x.Region = connection.CountriesIndexed.[countryCode].Region + member _.Region = connection.CountriesIndexed.[countryCode].Region interface ICountry with - member x.GetIndicators() = indicators + member _.GetIndicators() = indicators /// type ICountryCollection = @@ -432,13 +440,13 @@ type CountryCollection<'T when 'T :> Country> internal (connection: ServiceConne } interface seq<'T> with - member x.GetEnumerator() = items.GetEnumerator() + member _.GetEnumerator() = items.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = (items :> IEnumerable).GetEnumerator() + member _.GetEnumerator() = (items :> IEnumerable).GetEnumerator() interface ICountryCollection with - member x.GetCountry(countryCode (*this parameter is only here to help FunScript*) , _countryName) = + member _.GetCountry(countryCode (*this parameter is only here to help FunScript*) , _countryName) = Country(connection, countryCode) /// @@ -452,15 +460,15 @@ type IRegion = type Region internal (connection: ServiceConnection, regionCode: string) = let indicators = new Indicators(connection, regionCode) /// Get the WorldBank code for the region - member x.RegionCode = regionCode + member _.RegionCode = regionCode /// Get the name of the region - member x.Name = connection.RegionsIndexed.[regionCode] + member _.Name = connection.RegionsIndexed.[regionCode] interface IRegion with - member x.GetCountries() = + member _.GetCountries() = CountryCollection(connection, Some regionCode) - member x.GetIndicators() = indicators + member _.GetIndicators() = indicators /// type IRegionCollection = @@ -472,13 +480,13 @@ type RegionCollection<'T when 'T :> Region> internal (connection: ServiceConnect seq { for (code, _) in connection.Regions -> Region(connection, code) :?> 'T } interface seq<'T> with - member x.GetEnumerator() = items.GetEnumerator() + member _.GetEnumerator() = items.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = (items :> IEnumerable).GetEnumerator() + member _.GetEnumerator() = (items :> IEnumerable).GetEnumerator() interface IRegionCollection with - member x.GetRegion(regionCode) = Region(connection, regionCode) + member _.GetRegion(regionCode) = Region(connection, regionCode) /// type ITopic = @@ -489,15 +497,18 @@ type ITopic = [] type Topic internal (connection: ServiceConnection, topicCode: string) = let indicatorsDescriptions = new IndicatorsDescriptions(connection, topicCode) + /// Get the WorldBank code of the topic - member x.Code = topicCode + member _.Code = topicCode + /// Get the name of the topic - member x.Name = connection.TopicsIndexed.[topicCode].Name + member _.Name = connection.TopicsIndexed.[topicCode].Name + /// Get the description of the topic - member x.Description = connection.TopicsIndexed.[topicCode].Description + member _.Description = connection.TopicsIndexed.[topicCode].Description interface ITopic with - member x.GetIndicators() = indicatorsDescriptions + member _.GetIndicators() = indicatorsDescriptions /// type ITopicCollection = @@ -509,13 +520,13 @@ type TopicCollection<'T when 'T :> Topic> internal (connection: ServiceConnectio seq { for topic in connection.Topics -> Topic(connection, topic.Id) :?> 'T } interface seq<'T> with - member x.GetEnumerator() = items.GetEnumerator() + member _.GetEnumerator() = items.GetEnumerator() interface IEnumerable with - member x.GetEnumerator() = (items :> IEnumerable).GetEnumerator() + member _.GetEnumerator() = (items :> IEnumerable).GetEnumerator() interface ITopicCollection with - member x.GetTopic(topicCode) = Topic(connection, topicCode) + member _.GetTopic(topicCode) = Topic(connection, topicCode) /// type IWorldBankData = @@ -533,8 +544,8 @@ type WorldBankData(serviceUrl: string, sources: string) = let connection = new ServiceConnection(restCache, serviceUrl, sources) interface IWorldBankData with - member x.GetCountries() = + member _.GetCountries() = CountryCollection(connection, None) :> seq<_> - member x.GetRegions() = RegionCollection(connection) :> seq<_> - member x.GetTopics() = TopicCollection(connection) :> seq<_> + member _.GetRegions() = RegionCollection(connection) :> seq<_> + member _.GetTopics() = TopicCollection(connection) :> seq<_> diff --git a/src/Xml/XmlExtensions.fs b/src/Xml/XmlExtensions.fs new file mode 100644 index 000000000..c4073f142 --- /dev/null +++ b/src/Xml/XmlExtensions.fs @@ -0,0 +1,69 @@ +// -------------------------------------------------------------------------------------- +// XML type provider - methods & types used by the generated erased code +// -------------------------------------------------------------------------------------- +namespace FSharp.Data + +open System.Xml.Linq +open System.Runtime.InteropServices + +// XElementExtensions is not a static class with C#-style extension methods because that would +// force to reference System.Xml.Linq.dll everytime you reference FSharp.Data, even when not using +// any of the XML parts +[] +/// Extension methods for XElement +module XElementExtensions = + + type XElement with + + /// Sends the XML to the specified uri. Defaults to a POST request. + member x.Request(uri: string, [] ?httpMethod, [] ?headers: seq<_>) = + let httpMethod = defaultArg httpMethod HttpMethod.Post + let headers = defaultArg (Option.map List.ofSeq headers) [] + + let headers = + if + headers + |> List.exists (fst >> (=) (fst (HttpRequestHeaders.UserAgent ""))) + then + headers + else + HttpRequestHeaders.UserAgent "FSharp.Data XML Type Provider" + :: headers + + let headers = + HttpRequestHeaders.ContentType HttpContentTypes.Xml + :: headers + + Http.Request( + uri, + body = TextRequest(x.ToString(SaveOptions.DisableFormatting)), + headers = headers, + httpMethod = httpMethod + ) + + /// Sends the XML to the specified uri. Defaults to a POST request. + member x.RequestAsync(uri: string, [] ?httpMethod, [] ?headers: seq<_>) = + let httpMethod = defaultArg httpMethod HttpMethod.Post + let headers = defaultArg (Option.map List.ofSeq headers) [] + + let headers = + if + headers + |> List.exists (fst >> (=) (fst (HttpRequestHeaders.UserAgent ""))) + then + headers + else + HttpRequestHeaders.UserAgent "FSharp.Data XML Type Provider" + :: headers + + let headers = + HttpRequestHeaders.ContentType HttpContentTypes.Xml + :: headers + + Http.AsyncRequest( + uri, + body = TextRequest(x.ToString(SaveOptions.DisableFormatting)), + headers = headers, + httpMethod = httpMethod + ) + diff --git a/src/Xml/XmlInference.fs b/src/Xml/XmlInference.fs index 6fb83c285..66de70472 100644 --- a/src/Xml/XmlInference.fs +++ b/src/Xml/XmlInference.fs @@ -12,6 +12,10 @@ open FSharp.Data.Runtime open FSharp.Data.Runtime.StructuralInference open FSharp.Data.Runtime.StructuralTypes +/// Takes a map and succeeds if it is empty +let (|EmptyMap|_|) result (map: Map<_, _>) = + if map.IsEmpty then Some result else None + // The type of XML element is always a non-optional record with a field // for every attribute. If it has some content, then it also // contains a special field named "" which is either a collection diff --git a/src/Xml/XmlRuntime.fs b/src/Xml/XmlRuntime.fs index 3e26cb746..fef40a02e 100644 --- a/src/Xml/XmlRuntime.fs +++ b/src/Xml/XmlRuntime.fs @@ -1,77 +1,9 @@ // -------------------------------------------------------------------------------------- // XML type provider - methods & types used by the generated erased code // -------------------------------------------------------------------------------------- -namespace FSharp.Data - -open System.Xml.Linq -open System.Runtime.InteropServices - -// XElementExtensions is not a static class with C#-style extension methods because that would -// force to reference System.Xml.Linq.dll everytime you reference FSharp.Data, even when not using -// any of the XML parts -[] -/// Extension methods for XElement -module XElementExtensions = - - type XElement with - - /// Sends the XML to the specified uri. Defaults to a POST request. - member x.Request(uri: string, [] ?httpMethod, [] ?headers: seq<_>) = - let httpMethod = defaultArg httpMethod HttpMethod.Post - let headers = defaultArg (Option.map List.ofSeq headers) [] - - let headers = - if - headers - |> List.exists (fst >> (=) (fst (HttpRequestHeaders.UserAgent ""))) - then - headers - else - HttpRequestHeaders.UserAgent "FSharp.Data XML Type Provider" - :: headers - - let headers = - HttpRequestHeaders.ContentType HttpContentTypes.Xml - :: headers - - Http.Request( - uri, - body = TextRequest(x.ToString(SaveOptions.DisableFormatting)), - headers = headers, - httpMethod = httpMethod - ) - - /// Sends the XML to the specified uri. Defaults to a POST request. - member x.RequestAsync(uri: string, [] ?httpMethod, [] ?headers: seq<_>) = - let httpMethod = defaultArg httpMethod HttpMethod.Post - let headers = defaultArg (Option.map List.ofSeq headers) [] - - let headers = - if - headers - |> List.exists (fst >> (=) (fst (HttpRequestHeaders.UserAgent ""))) - then - headers - else - HttpRequestHeaders.UserAgent "FSharp.Data XML Type Provider" - :: headers - - let headers = - HttpRequestHeaders.ContentType HttpContentTypes.Xml - :: headers - - Http.AsyncRequest( - uri, - body = TextRequest(x.ToString(SaveOptions.DisableFormatting)), - headers = headers, - httpMethod = httpMethod - ) - -// -------------------------------------------------------------------------------------- namespace FSharp.Data.Runtime.BaseTypes -open System open System.ComponentModel open System.IO open System.Xml.Linq diff --git a/tests/FSharp.Data.Tests.CSharp/CsvExtensionsTests.cs b/tests/FSharp.Data.Core.Tests.CSharp/CsvExtensionsTests.cs similarity index 100% rename from tests/FSharp.Data.Tests.CSharp/CsvExtensionsTests.cs rename to tests/FSharp.Data.Core.Tests.CSharp/CsvExtensionsTests.cs diff --git a/tests/FSharp.Data.Tests.CSharp/FSharp.Data.Tests.CSharp.csproj b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj similarity index 92% rename from tests/FSharp.Data.Tests.CSharp/FSharp.Data.Tests.CSharp.csproj rename to tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj index 5159e9b6e..15b2c9d70 100644 --- a/tests/FSharp.Data.Tests.CSharp/FSharp.Data.Tests.CSharp.csproj +++ b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj @@ -19,7 +19,7 @@ - + diff --git a/tests/FSharp.Data.Tests.CSharp/HtmlExtensionsTests.cs b/tests/FSharp.Data.Core.Tests.CSharp/HtmlExtensionsTests.cs similarity index 100% rename from tests/FSharp.Data.Tests.CSharp/HtmlExtensionsTests.cs rename to tests/FSharp.Data.Core.Tests.CSharp/HtmlExtensionsTests.cs diff --git a/tests/FSharp.Data.Tests.CSharp/JsonExtensionsTests.cs b/tests/FSharp.Data.Core.Tests.CSharp/JsonExtensionsTests.cs similarity index 100% rename from tests/FSharp.Data.Tests.CSharp/JsonExtensionsTests.cs rename to tests/FSharp.Data.Core.Tests.CSharp/JsonExtensionsTests.cs diff --git a/tests/FSharp.Data.Tests.CSharp/Properties/AssemblyInfo.cs b/tests/FSharp.Data.Core.Tests.CSharp/Properties/AssemblyInfo.cs similarity index 100% rename from tests/FSharp.Data.Tests.CSharp/Properties/AssemblyInfo.cs rename to tests/FSharp.Data.Core.Tests.CSharp/Properties/AssemblyInfo.cs diff --git a/tests/FSharp.Data.Tests.CSharp/paket.references b/tests/FSharp.Data.Core.Tests.CSharp/paket.references similarity index 100% rename from tests/FSharp.Data.Tests.CSharp/paket.references rename to tests/FSharp.Data.Core.Tests.CSharp/paket.references diff --git a/tests/FSharp.Data.Tests/CsvReader.fs b/tests/FSharp.Data.Core.Tests/CsvReader.fs similarity index 100% rename from tests/FSharp.Data.Tests/CsvReader.fs rename to tests/FSharp.Data.Core.Tests/CsvReader.fs diff --git a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj new file mode 100644 index 000000000..787a4eb55 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj @@ -0,0 +1,34 @@ + + + + net6.0 + false + + true + true + false + + true + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Tests/HtmlCharRefs.fs b/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs similarity index 92% rename from tests/FSharp.Data.Tests/HtmlCharRefs.fs rename to tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs index de6d09a12..7cc433971 100644 --- a/tests/FSharp.Data.Tests/HtmlCharRefs.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.HtmlCharRefs +module FSharp.Data.Core.Tests.HtmlCharRefs open NUnit.Framework open FsUnit @@ -8,7 +8,7 @@ open FSharp.Data.HtmlNode open FSharp.Data.JsonExtensions let charRefsTestCases = - JsonValue.Load(__SOURCE_DIRECTORY__ + "/Data/charrefs.json")?items.AsArray() + JsonValue.Load(__SOURCE_DIRECTORY__ + "/../FSharp.Data.Tests/Data/charrefs.json")?items.AsArray() |> Array.map (fun x -> [| x?key.AsString(); x?characters.AsString() |]) [] diff --git a/tests/FSharp.Data.Tests/HtmlCssSelectors.fs b/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs similarity index 99% rename from tests/FSharp.Data.Tests/HtmlCssSelectors.fs rename to tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs index aa8a701ad..e7bbe2711 100644 --- a/tests/FSharp.Data.Tests/HtmlCssSelectors.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.HtmlCssSelectors +module FSharp.Data.Core.Tests.HtmlCssSelectors open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Tests/HtmlOperations.fs b/tests/FSharp.Data.Core.Tests/HtmlOperations.fs similarity index 99% rename from tests/FSharp.Data.Tests/HtmlOperations.fs rename to tests/FSharp.Data.Core.Tests/HtmlOperations.fs index 925e6b4e2..bcba7aade 100644 --- a/tests/FSharp.Data.Tests/HtmlOperations.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlOperations.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.HtmlOperations +module FSharp.Data.Core.Tests.HtmlOperations open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Tests/HtmlParser.fs b/tests/FSharp.Data.Core.Tests/HtmlParser.fs similarity index 100% rename from tests/FSharp.Data.Tests/HtmlParser.fs rename to tests/FSharp.Data.Core.Tests/HtmlParser.fs diff --git a/tests/FSharp.Data.Tests/Http.fs b/tests/FSharp.Data.Core.Tests/Http.fs similarity index 99% rename from tests/FSharp.Data.Tests/Http.fs rename to tests/FSharp.Data.Core.Tests/Http.fs index 30b240e7a..19fd57149 100644 --- a/tests/FSharp.Data.Tests/Http.fs +++ b/tests/FSharp.Data.Core.Tests/Http.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.Http +module FSharp.Data.Core.Tests.Http open FsUnit open NUnit.Framework diff --git a/tests/FSharp.Data.Tests/JsonConversions.fs b/tests/FSharp.Data.Core.Tests/JsonConversions.fs similarity index 95% rename from tests/FSharp.Data.Tests/JsonConversions.fs rename to tests/FSharp.Data.Core.Tests/JsonConversions.fs index 43c87bbdf..259cf5178 100644 --- a/tests/FSharp.Data.Tests/JsonConversions.fs +++ b/tests/FSharp.Data.Core.Tests/JsonConversions.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.JsonConversions +module FSharp.Data.Core.Tests.JsonConversions open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Tests/JsonParserProperties.fs b/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs similarity index 100% rename from tests/FSharp.Data.Tests/JsonParserProperties.fs rename to tests/FSharp.Data.Core.Tests/JsonParserProperties.fs diff --git a/tests/FSharp.Data.Tests/JsonValue.fs b/tests/FSharp.Data.Core.Tests/JsonValue.fs similarity index 99% rename from tests/FSharp.Data.Tests/JsonValue.fs rename to tests/FSharp.Data.Core.Tests/JsonValue.fs index 2c240fe65..cf9ffd894 100644 --- a/tests/FSharp.Data.Tests/JsonValue.fs +++ b/tests/FSharp.Data.Core.Tests/JsonValue.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.JsonValue +module FSharp.Data.Core.Tests.JsonValue open NUnit.Framework open System diff --git a/tests/FSharp.Data.Tests/NameUtils.fs b/tests/FSharp.Data.Core.Tests/NameUtils.fs similarity index 97% rename from tests/FSharp.Data.Tests/NameUtils.fs rename to tests/FSharp.Data.Core.Tests/NameUtils.fs index 5fc45ceab..19811b2a7 100644 --- a/tests/FSharp.Data.Tests/NameUtils.fs +++ b/tests/FSharp.Data.Core.Tests/NameUtils.fs @@ -1,8 +1,8 @@ -// -------------------------------------------------------------------------------------- +// -------------------------------------------------------------------------------------- // Tests for a utility that generates nice PascalCase and camelCase names for members // -------------------------------------------------------------------------------------- -module FSharp.Data.Tests.NameUtils +module FSharp.Data.Core.Tests.NameUtils open FsUnit open NUnit.Framework diff --git a/tests/FSharp.Data.Core.Tests/Program.fs b/tests/FSharp.Data.Core.Tests/Program.fs new file mode 100644 index 000000000..6329c59f8 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Program.fs @@ -0,0 +1,6 @@ +open System + +[] +let main argv = + printfn "Dotnet Core NUnit Tests..." + 0 diff --git a/tests/FSharp.Data.Tests/TextConversions.fs b/tests/FSharp.Data.Core.Tests/TextConversions.fs similarity index 98% rename from tests/FSharp.Data.Tests/TextConversions.fs rename to tests/FSharp.Data.Core.Tests/TextConversions.fs index 5547ed822..6a3dc370f 100644 --- a/tests/FSharp.Data.Tests/TextConversions.fs +++ b/tests/FSharp.Data.Core.Tests/TextConversions.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Tests.Conversions +module FSharp.Data.Core.Tests.Conversions open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Core.Tests/paket.references b/tests/FSharp.Data.Core.Tests/paket.references new file mode 100644 index 000000000..aaa9d970b --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/paket.references @@ -0,0 +1,8 @@ +group Test + + Microsoft.NET.Test.Sdk + NUnit + NUnit3TestAdapter + FsUnit + FsCheck + GitHubActionsTestLogger diff --git a/tests/FSharp.Data.Tests/CsvProvider.fs b/tests/FSharp.Data.Tests/CsvProvider.fs index 36a69d037..098a83dcd 100644 --- a/tests/FSharp.Data.Tests/CsvProvider.fs +++ b/tests/FSharp.Data.Tests/CsvProvider.fs @@ -6,8 +6,8 @@ open System open System.IO open FSharp.Data.UnitSystems.SI.UnitNames open FSharp.Data -open FSharp.Data.Runtime.CsvInference open FSharp.Data.Runtime +open FSharp.Data.Runtime.CsvInference open System.Globalization let [] simpleCsv = """ diff --git a/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj b/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj index 0b65efeeb..0805ccb59 100755 --- a/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj +++ b/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj @@ -17,21 +17,10 @@ PreserveNewest - - - - - - - - - - - From dfa4c851344028f7f3065e75263dd4371be0b900 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 15 Aug 2022 21:47:15 +0100 Subject: [PATCH 02/11] fix tests --- CONTRIBUTING.md | 16 +- nuget/FSharp.Data.nuspec | 7 +- src/Test.fsx | 14 +- tests/FSharp.Data.Core.Tests/Data/Adwords.csv | 6 + .../Data/AirQuality.csv | 154 + tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml | 44 + tests/FSharp.Data.Core.Tests/Data/Cars.xml | 7 + tests/FSharp.Data.Core.Tests/Data/Dates.json | 6 + .../Data/DictionaryInference.json | 10 + .../Data/DnbHistoriskeKurser.csv | 533 + .../Data/DoubleNested.json | 6 + tests/FSharp.Data.Core.Tests/Data/Empty.json | 1 + .../Data/EmptyDefinitionLists.html | 8 + tests/FSharp.Data.Core.Tests/Data/GDP.csv | 327 + tests/FSharp.Data.Core.Tests/Data/GitHub.json | 1507 + .../FSharp.Data.Core.Tests/Data/HtmlBody.xml | 10 + .../Data/IncludeFromWeb.xsd | 7 + .../Data/IrelandStations.xml | 1275 + .../FSharp.Data.Core.Tests/Data/JsonInXml.xml | 86 + tests/FSharp.Data.Core.Tests/Data/LastFM.tsv | 5 + tests/FSharp.Data.Core.Tests/Data/MSFT.csv | 6528 ++++ .../Data/MarketDepth.htm | 1377 + tests/FSharp.Data.Core.Tests/Data/Nested.json | 8 + tests/FSharp.Data.Core.Tests/Data/NuGet.html | 725 + .../Data/OptionValues.json | 1 + .../Data/Philosophy.xml | 12 + .../Data/SampleAzureServiceManagement.xml | 45 + tests/FSharp.Data.Core.Tests/Data/Simple.json | 6 + .../Data/SimpleArray.json | 1 + .../Data/SimpleHtmlLists.html | 28 + .../Data/SimpleHtmlTablesWithThead.html | 49 + .../Data/SimpleHtmlTablesWithTr.html | 43 + .../FSharp.Data.Core.Tests/Data/SmallTest.csv | 4 + .../Data/TabSeparated.csv | 5 + .../FSharp.Data.Core.Tests/Data/TimeSpans.csv | 2 + .../Data/TimeSpans.json | 7 + .../FSharp.Data.Core.Tests/Data/TimeSpans.xml | 7 + tests/FSharp.Data.Core.Tests/Data/Titanic.csv | 892 + .../Data/TwitterSample.json | 32 + .../Data/TwitterStream.json | 96 + .../Data/TypeInference.json | 12 + .../Data/TypeInference.xml | 4 + .../Data/UKDepartures.html | 1396 + .../Data/UKLiveProgress.html | 89 + .../Data/Vindinium.json | 107 + .../FSharp.Data.Core.Tests/Data/WikiData.json | 12 + .../Data/WorldBank.json | 699 + tests/FSharp.Data.Core.Tests/Data/Writers.xml | 4 + .../FSharp.Data.Core.Tests/Data/banklist.csv | 498 + .../Data/charrefs-full.json | 2234 ++ .../FSharp.Data.Core.Tests/Data/charrefs.json | 2245 ++ .../FSharp.Data.Core.Tests/Data/contacts.json | 58 + tests/FSharp.Data.Core.Tests/Data/cp932.csv | 4 + .../Data/doctor_who.html | 5742 ++++ .../Data/doctor_who2.html | 2425 ++ .../Data/doctor_who3.html | 7031 ++++ .../FSharp.Data.Core.Tests/Data/ebay_cars.htm | 6078 ++++ .../Data/emptyMissingValue.csv | 3 + .../Data/emptyValue.xml | 1 + .../Data/file with spaces.csv | 4 + .../Data/heterogeneous.xml | 6 + tests/FSharp.Data.Core.Tests/Data/homonim.xsd | 16 + .../Data/imdb_chart.htm | 13481 ++++++++ .../Data/list_of_counties_wikipedia.html | 1306 + .../Data/missingInnerValue.xml | 6 + .../Data/optionals.json | 23 + .../Data/optionals1.xml | 13 + .../Data/optionals2.xml | 17 + .../Data/optionals3.xml | 20 + tests/FSharp.Data.Core.Tests/Data/po.xsd | 76 + .../FSharp.Data.Core.Tests/Data/projects.json | 8 + .../FSharp.Data.Core.Tests/Data/projects.xml | 11 + tests/FSharp.Data.Core.Tests/Data/reddit.json | 1 + .../Data/rottentomatoes.html | 20023 +++++++++++ .../Data/search.atom.xml | 297 + .../Data/tendulkarHistoryWithGameNumber.csv | 201 + tests/FSharp.Data.Core.Tests/Data/topics.json | 5619 ++++ .../Data/us_presidents_wikipedia.html | 7196 ++++ .../Data/w3c_html_tables.html | 513 + .../Data/wimbledon_wikipedia.html | 2515 ++ tests/FSharp.Data.Core.Tests/Data/zoopla.html | 27849 ++++++++++++++++ .../FSharp.Data.Core.Tests/Data/zoopla2.html | 8285 +++++ .../FSharp.Data.Core.Tests.fsproj | 3 + .../SignatureTests.fs | 22 +- .../TypeProviderInstantiation.fs | 11 +- 85 files changed, 130035 insertions(+), 26 deletions(-) create mode 100644 tests/FSharp.Data.Core.Tests/Data/Adwords.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/AirQuality.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/Cars.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/Dates.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/DoubleNested.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/Empty.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/GDP.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/GitHub.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd create mode 100644 tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/LastFM.tsv create mode 100644 tests/FSharp.Data.Core.Tests/Data/MSFT.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm create mode 100644 tests/FSharp.Data.Core.Tests/Data/Nested.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/NuGet.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/OptionValues.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/Philosophy.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/Simple.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleArray.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/SmallTest.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/Titanic.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/TwitterSample.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/TwitterStream.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/TypeInference.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/TypeInference.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/UKDepartures.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/Vindinium.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/WikiData.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/WorldBank.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/Writers.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/banklist.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/charrefs-full.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/charrefs.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/contacts.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/cp932.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who2.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who3.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm create mode 100644 tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/emptyValue.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/file with spaces.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/homonim.xsd create mode 100644 tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm create mode 100644 tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals1.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals2.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals3.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/po.xsd create mode 100644 tests/FSharp.Data.Core.Tests/Data/projects.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/projects.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/reddit.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/search.atom.xml create mode 100644 tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv create mode 100644 tests/FSharp.Data.Core.Tests/Data/topics.json create mode 100644 tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/zoopla.html create mode 100644 tests/FSharp.Data.Core.Tests/Data/zoopla2.html diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42e453cac..1b3a53ff1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,14 +35,18 @@ Type providers consist of two components: We need a _runtime component_ for .NET Standard 2.0 (netstandard2.0). We also need a _design time_ component for each, to be able to host the type provider in .NET Core-based tooling. -The _core_ runtime components are in the following project: +The _core_ runtime component is the following project. No type providers are activated if you reference this: * **FSharp.Data.Core** -The type provider design-time components are in the following project: +The _enhanced_ runtime component that mentions the associated the design-time component is in the following project: * **FSharp.Data** +The design-time component is the following project: + + * **FSharp.Data.DesignTime** + ### Type provider structure Several of the FSharp.Data type providers have similar structure - the CSV, JSON, XML and HTML @@ -77,6 +81,14 @@ of files, typically like this: The WorldBank provider is different. It doesn't need inference, but it still distinguishes between _runtime_ and _design-time_ components, so you'll find at least two files (and possibly some additional helpers). +### Debugging + +To debug the type generation, the best way is to change `FSharp.Data.DesignTime` project to a Console application, +rename `Test.fsx` to `Test.fs` and hit the Run command in the IDE, setting the breakpoints where you need them. +This will invoke all the type providers manually without locking the files in Visual Studio / Xamarin Studio. +You'll also see in the console output the complete dump of the generated types and expressions. +This is also the process used for the signature tests. + ## Documentation Docs and samples are in the `docs` directory. To update docs on your own machine, run the following command: diff --git a/nuget/FSharp.Data.nuspec b/nuget/FSharp.Data.nuspec index f8c36e670..eea6ef7a4 100755 --- a/nuget/FSharp.Data.nuspec +++ b/nuget/FSharp.Data.nuspec @@ -19,6 +19,9 @@ + + + @@ -30,7 +33,9 @@ - + + + diff --git a/src/Test.fsx b/src/Test.fsx index bd7ef9f05..2a4f953e7 100644 --- a/src/Test.fsx +++ b/src/Test.fsx @@ -18,19 +18,15 @@ let resolutionFolder = __SOURCE_DIRECTORY__ ++ ".." ++ "tests" ++ "FSharp.Data.T let outputFolder = __SOURCE_DIRECTORY__ ++ ".." ++ "tests" ++ "FSharp.Data.DesignTime.Tests" ++ "expected" let assemblyName = "FSharp.Data.dll" -let dump signatureOnly ignoreOutput platform saveToFileSystem (inst:TypeProviderInstantiation) = +let dump signatureOnly ignoreOutput saveToFileSystem (inst:TypeProviderInstantiation) = let root = __SOURCE_DIRECTORY__ ++ ".." ++ "bin" - let runtimeAssembly = - match platform with - | NetStandard20 -> root ++ "netstandard2.0" ++ assemblyName - let runtimeAssemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs platform + let runtimeAssembly = root ++ "netstandard2.0" ++ assemblyName + let runtimeAssemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs () inst.Dump(resolutionFolder, (if saveToFileSystem then outputFolder else ""), runtimeAssembly, runtimeAssemblyRefs, signatureOnly, ignoreOutput) |> Console.WriteLine let dumpAll inst = - dump false false NetStandard20 false inst -// dump false false NetStandard16 false inst -// dump false false NetStandard20 false inst + dump false false false inst let parameters : HtmlInference.Parameters = { MissingValues = TextConversions.DefaultMissingValues @@ -105,4 +101,4 @@ let testCases = |> Array.map (TypeProviderInstantiation.Parse >> snd) for testCase in testCases do - dump false false NetStandard20 true testCase + dump false false true testCase diff --git a/tests/FSharp.Data.Core.Tests/Data/Adwords.csv b/tests/FSharp.Data.Core.Tests/Data/Adwords.csv new file mode 100644 index 000000000..a85e0a41d --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Adwords.csv @@ -0,0 +1,6 @@ +Criteria ID,Name,Canonical Name,Parent ID,Country Code,Target Type,Status +1000010,Abu Dhabi,"Abu Dhabi,Abu Dhabi,United Arab Emirates",9041082,AE,City,Active +1000011,Ajman,"Ajman,Ajman,United Arab Emirates",9047096,AE,City,Active +1000012,Al Ain,"Al Ain,Abu Dhabi,United Arab Emirates",9041082,AE,City,Active +1000013,Dubai,"Dubai,Dubai,United Arab Emirates",9041083,AE,City,Active +2004,Afghanistan,Afghanistan,,AF,Country,Active diff --git a/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv b/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv new file mode 100644 index 000000000..a18a7cc82 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv @@ -0,0 +1,154 @@ +Ozone;Solar.R;Wind;Temp;Month;Day +41;190;7.4;67;5;1 +36;118;8;72;5;2 +12;149;12.6;74;5;3 +18;313;11.5;62;5;4 +#N/A;#N/A;14.3;56;5;5 +28;#N/A;14.9;66;5;6 +23;299;8.6;65;5;7 +19;99;13.8;59;5;8 +8;19;20.1;61;5;9 +#N/A;194;8.6;69;5;10 +7;#N/A;6.9;74;5;11 +16;256;9.7;69;5;12 +11;290;9.2;66;5;13 +14;274;10.9;68;5;14 +18;65;13.2;58;5;15 +14;334;11.5;64;5;16 +34;307;12;66;5;17 +6;78;18.4;57;5;18 +30;322;11.5;68;5;19 +11;44;9.7;62;5;20 +1;8;9.7;59;5;21 +11;320;16.6;73;5;22 +4;25;9.7;61;5;23 +32;92;12;61;5;24 +#N/A;66;16.6;57;5;25 +#N/A;266;14.9;58;5;26 +#N/A;#N/A;8;57;5;27 +23;13;12;67;5;28 +45;252;14.9;81;5;29 +115;223;5.7;79;5;30 +37;279;7.4;76;5;31 +#N/A;286;8.6;78;6;1 +#N/A;287;9.7;74;6;2 +#N/A;242;16.1;67;6;3 +#N/A;186;9.2;84;6;4 +#N/A;220;8.6;85;6;5 +#N/A;264;14.3;79;6;6 +29;127;9.7;82;6;7 +#N/A;273;6.9;87;6;8 +71;291;13.8;90;6;9 +39;323;11.5;87;6;10 +#N/A;259;10.9;93;6;11 +#N/A;250;9.2;92;6;12 +23;148;8;82;6;13 +#N/A;332;13.8;80;6;14 +#N/A;322;11.5;79;6;15 +21;191;14.9;77;6;16 +37;284;20.7;72;6;17 +20;37;9.2;65;6;18 +12;120;11.5;73;6;19 +13;137;10.3;76;6;20 +#N/A;150;6.3;77;6;21 +#N/A;59;1.7;76;6;22 +#N/A;91;4.6;76;6;23 +#N/A;250;6.3;76;6;24 +#N/A;135;8;75;6;25 +#N/A;127;8;78;6;26 +#N/A;47;10.3;73;6;27 +#N/A;98;11.5;80;6;28 +#N/A;31;14.9;77;6;29 +#N/A;138;8;83;6;30 +135;269;4.1;84;7;1 +49;248;9.2;85;7;2 +32;236;9.2;81;7;3 +#N/A;101;10.9;84;7;4 +64;175;4.6;83;7;5 +40;314;10.9;83;7;6 +77;276;5.1;88;7;7 +97;267;6.3;92;7;8 +97;272;5.7;92;7;9 +85;175;7.4;89;7;10 +#N/A;139;8.6;82;7;11 +10;264;14.3;73;7;12 +27;175;14.9;81;7;13 +#N/A;291;14.9;91;7;14 +7;48;14.3;80;7;15 +48;260;6.9;81;7;16 +35;274;10.3;82;7;17 +61;285;6.3;84;7;18 +79;187;5.1;87;7;19 +63;220;11.5;85;7;20 +16;7;6.9;74;7;21 +#N/A;258;9.7;81;7;22 +#N/A;295;11.5;82;7;23 +80;294;8.6;86;7;24 +108;223;8;85;7;25 +20;81;8.6;82;7;26 +52;82;12;86;7;27 +82;213;7.4;88;7;28 +50;275;7.4;86;7;29 +64;253;7.4;83;7;30 +59;254;9.2;81;7;31 +39;83;6.9;81;8;1 +9;24;13.8;81;8;2 +16;77;7.4;82;8;3 +78;#N/A;6.9;86;8;4 +35;#N/A;7.4;85;8;5 +66;#N/A;4.6;87;8;6 +122;255;4;89;8;7 +89;229;10.3;90;8;8 +110;207;8;90;8;9 +#N/A;222;8.6;92;8;10 +#N/A;137;11.5;86;8;11 +44;192;11.5;86;8;12 +28;273;11.5;82;8;13 +65;157;9.7;80;8;14 +#N/A;64;11.5;79;8;15 +22;71;10.3;77;8;16 +59;51;6.3;79;8;17 +23;115;7.4;76;8;18 +31;244;10.9;78;8;19 +44;190;10.3;78;8;20 +21;259;15.5;77;8;21 +9;36;14.3;72;8;22 +#N/A;255;12.6;75;8;23 +45;212;9.7;79;8;24 +168;238;3.4;81;8;25 +73;215;8;86;8;26 +#N/A;153;5.7;88;8;27 +76;203;9.7;97;8;28 +118;225;2.3;94;8;29 +84;237;6.3;96;8;30 +85;188;6.3;94;8;31 +96;167;6.9;91;9;1 +78;197;5.1;92;9;2 +73;183;2.8;93;9;3 +91;189;4.6;93;9;4 +47;95;7.4;87;9;5 +32;92;15.5;84;9;6 +20;252;10.9;80;9;7 +23;220;10.3;78;9;8 +21;230;10.9;75;9;9 +24;259;9.7;73;9;10 +44;236;14.9;81;9;11 +21;259;15.5;76;9;12 +28;238;6.3;77;9;13 +9;24;10.9;71;9;14 +13;112;11.5;71;9;15 +46;237;6.9;78;9;16 +18;224;13.8;67;9;17 +13;27;10.3;76;9;18 +24;238;10.3;68;9;19 +16;201;8;82;9;20 +13;238;12.6;64;9;21 +23;14;9.2;71;9;22 +36;139;10.3;81;9;23 +7;49;10.3;69;9;24 +14;20;16.6;63;9;25 +30;193;6.9;70;9;26 +#N/A;145;13.2;77;9;27 +14;191;14.3;75;9;28 +18;131;8;76;9;29 +20;223;11.5;68;9;30 diff --git a/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml b/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml new file mode 100644 index 000000000..5f823969c --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml @@ -0,0 +1,44 @@ + + + Example Feed + A subtitle. + + + urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6 + 2003-12-13T18:30:02Z + + + + Atom-Powered Robots Run Amok + + + + urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a + 2003-12-13T18:30:02Z + Some text. + + John Doe + johndoe@example.com + + + + + + + + W3Schools Home Page + http://www.w3schools.com + Free web building tutorials + + RSS Tutorial + http://www.w3schools.com/rss + New RSS tutorial on W3Schools + + + XML Tutorial + http://www.w3schools.com/xml + New XML tutorial on W3Schools + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/Cars.xml b/tests/FSharp.Data.Core.Tests/Data/Cars.xml new file mode 100644 index 000000000..82cf578d6 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Cars.xml @@ -0,0 +1,7 @@ + + + Audi + BMW + + Trabant + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Dates.json b/tests/FSharp.Data.Core.Tests/Data/Dates.json new file mode 100644 index 000000000..6d700db8c --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Dates.json @@ -0,0 +1,6 @@ +{ + "birthdate": "\/Date(869080830450)\/", + "anniversary": "1997-07-16T19:20:30.45+01:00", + "NoTimeZone": "1997-07-16T19:20:30", + "UtcTime": "1997-07-16T19:50:30Z" +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json b/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json new file mode 100644 index 000000000..7419b320c --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json @@ -0,0 +1,10 @@ +[ + { + "rec": { "0": "111", "1": "222" }, + "rec2": { "0": { "a": "10" }, "1": { "a": "20" } } + }, + { + "rec": { "0": "333" }, + "rec2": { "1": { "a": "30" }, "1": { "a": "40" } } + } +] diff --git a/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv b/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv new file mode 100644 index 000000000..203dafad1 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv @@ -0,0 +1,533 @@ +Dato,USD,EUR,SEK,DKK,GBP,CHF,JPY,CAD,ISK,AUD +07.02.2013,5.4970,7.4366,86.52,99.70,8.6100,603.77,5.8779,5.5188,4.3260,5.6776 +06.02.2013,5.4912,7.4376,86.56,99.70,8.5910,601.61,5.8529,5.5102,4.3275,5.6694 +05.02.2013,5.4962,7.4037,86.71,99.25,8.6458,603.68,5.9612,5.5031,4.3238,5.7251 +04.02.2013,5.4639,7.4459,86.65,99.80,8.5838,601.25,5.8916,5.4812,4.3444,5.6953 +01.02.2013,5.4573,7.4369,86.34,99.68,8.6623,600.32,5.9266,5.4690,4.3162,5.6796 +31.01.2013,5.4833,7.4312,86.20,99.61,8.6784,601.40,6.0309,5.4688,4.2524,5.7013 +30.01.2013,5.4897,7.4180,86.34,99.44,8.6540,595.64,6.0293,5.4828,4.2642,5.7458 +29.01.2013,5.5316,7.4336,86.06,99.64,8.6924,597.72,6.1015,5.5022,4.2981,5.7847 +28.01.2013,5.5368,7.4379,85.53,99.67,8.7033,596.35,6.1038,5.4904,4.3028,5.7613 +25.01.2013,5.5226,7.4055,85.17,99.25,8.7199,595.01,6.0996,5.5064,4.2979,5.7764 +24.01.2013,5.5684,7.4090,85.26,99.29,8.8156,598.01,6.2377,5.5676,4.3071,5.8566 +23.01.2013,5.5770,7.4171,85.51,99.38,8.8228,600.10,6.3167,5.6240,4.3305,5.8862 +22.01.2013,5.5801,7.4553,85.91,99.89,8.8450,599.27,6.2627,5.6271,4.3574,5.8962 +21.01.2013,5.5965,7.4559,85.94,99.90,8.8872,599.74,6.2461,5.6476,4.3586,5.8856 +18.01.2013,5.5683,7.4585,85.74,99.94,8.9020,594.74,6.1856,5.6402,4.3375,5.8581 +17.01.2013,5.5642,7.3962,85.57,99.11,8.8972,594.94,6.2801,5.6406,4.3110,5.8483 +16.01.2013,5.5850,7.4172,85.66,99.40,8.9525,599.92,6.3387,5.6657,4.3243,5.8958 +15.01.2013,5.5240,7.3700,85.56,98.76,8.8711,598.03,6.2136,5.6089,4.2964,5.8260 +14.01.2013,5.5157,7.3792,85.37,98.88,8.9004,604.03,6.1711,5.6071,4.3140,5.8254 +11.01.2013,5.5240,7.3317,85.12,98.26,8.9229,603.22,6.2040,5.6158,4.3049,5.8408 +10.01.2013,5.5934,7.3092,85.21,97.97,8.9631,604.59,6.3360,5.6748,4.3184,5.9103 +09.01.2013,5.5996,7.3223,85.35,98.15,8.9854,605.72,6.4010,5.6748,4.3344,5.8883 +08.01.2013,5.5822,7.3213,85.78,98.14,8.9823,605.54,6.3884,5.6595,4.3397,5.8527 +07.01.2013,5.6145,7.3182,85.63,98.12,9.0062,605.30,6.3968,5.6876,4.3354,5.8832 +04.01.2013,5.6026,7.2881,85.58,97.71,8.9955,602.92,6.3608,5.6566,4.3147,5.8466 +03.01.2013,5.5665,7.3119,85.47,98.01,9.0305,604.10,6.3880,5.6539,4.3237,5.8451 +02.01.2013,5.5228,7.3312,85.60,98.27,9.0088,606.53,6.3320,5.5958,4.3331,5.7860 +31.12.2012,5.5912,7.3756,85.70,98.86,9.0399,610.89,6.4946,5.6258,4.3322,5.8073 +28.12.2012,5.5752,7.3880,85.68,99.04,8.9892,611.01,6.4595,5.6072,4.3636,5.7929 +27.12.2012,5.5797,7.3934,85.69,99.12,9.0068,611.31,6.5153,5.6227,4.3992,5.7898 +21.12.2012,5.5788,7.3637,85.30,98.69,9.0650,610.07,6.6430,5.6332,4.4199,5.8251 +20.12.2012,5.5772,7.3694,85.07,98.78,9.0624,610.23,6.6459,5.6441,4.4332,5.8513 +19.12.2012,5.5906,7.4022,84.66,99.23,9.0981,612.97,6.6263,5.6726,4.4481,5.8861 +18.12.2012,5.6096,7.3859,84.31,98.99,9.0898,611.10,6.6821,5.7028,4.4431,5.9100 +17.12.2012,5.6225,7.3972,84.28,99.14,9.1034,612.24,6.6927,5.7003,4.4604,5.9236 +14.12.2012,5.6088,7.3540,84.23,98.57,9.0498,608.36,6.7043,5.7055,4.4330,5.9204 +13.12.2012,5.6166,7.3507,84.40,98.53,9.0646,606.51,6.7249,5.7123,4.4346,5.9308 +12.12.2012,5.6484,7.3449,85.08,98.47,9.0939,605.95,6.8234,5.7295,4.4484,5.9514 +11.12.2012,5.6733,7.3427,84.79,98.44,9.1204,606.74,6.8859,5.7521,4.4797,5.9465 +10.12.2012,5.6876,7.3344,84.95,98.33,9.1132,607.49,6.9049,5.7599,4.4835,5.9637 +07.12.2012,5.6690,7.3310,85.19,98.30,9.0930,606.50,6.8783,5.7150,4.4878,5.9380 +06.12.2012,5.6347,7.3530,85.28,98.58,9.0629,607.68,6.8357,5.6804,4.4973,5.8942 +05.12.2012,5.6120,7.3615,85.05,98.68,9.0398,606.21,6.8239,5.6633,4.5024,5.8805 +04.12.2012,5.6288,7.3577,85.07,98.63,9.0635,608.29,6.8694,5.6631,4.5016,5.8874 +03.12.2012,5.6676,7.3863,85.14,99.01,9.0897,612.61,6.8857,5.7084,4.5178,5.9014 +30.11.2012,5.6663,7.3772,85.24,98.89,9.0995,612.34,6.8583,5.7100,4.5189,5.9131 +29.11.2012,5.6624,7.3416,85.24,98.42,9.0706,609.81,6.8894,5.7095,4.5036,5.9237 +28.11.2012,5.6982,7.3635,85.06,98.73,9.1217,611.69,6.9601,5.7346,4.5134,5.9606 +27.11.2012,5.6427,7.3313,85.53,98.29,9.0537,608.48,6.8588,5.6868,4.4933,5.9104 +26.11.2012,5.6626,7.3458,85.46,98.49,9.0760,609.96,6.8905,5.7086,4.5117,5.9234 +23.11.2012,5.6732,7.3221,85.23,98.18,9.0561,607.77,6.8908,5.6911,4.5016,5.9078 +22.11.2012,5.7100,7.3359,84.97,98.37,9.1143,608.90,6.9179,5.7326,4.5112,5.9278 +21.11.2012,5.7504,7.3395,84.65,98.42,9.1426,609.25,7.0076,5.7616,4.5167,5.9600 +20.11.2012,5.7505,7.3540,85.25,98.60,9.1507,610.55,7.0845,5.7683,4.5322,5.9836 +19.11.2012,5.7773,7.3739,85.27,98.86,9.1876,611.71,7.1070,5.7779,4.5419,5.9908 +16.11.2012,5.7652,7.3550,85.14,98.61,9.1569,610.69,7.1070,5.7649,4.4825,5.9598 +15.11.2012,5.7720,7.3525,84.93,98.54,9.1451,610.19,7.1325,5.7586,4.4695,5.9786 +14.11.2012,5.7568,7.3293,84.96,98.28,9.1481,608.64,7.2050,5.7571,4.4666,6.0173 +13.11.2012,5.7550,7.3022,84.94,97.92,9.1349,606.01,7.2582,5.7504,4.4554,5.9924 +12.11.2012,5.7458,7.3021,85.11,97.91,9.1341,605.49,7.2320,5.7518,4.4598,5.9857 +09.11.2012,5.7266,7.3040,85.65,97.92,9.1537,605.77,7.2060,5.7326,4.4702,5.9703 +08.11.2012,5.7365,7.3241,85.79,98.19,9.1695,607.26,7.1814,5.7587,4.4825,5.9760 +07.11.2012,5.6915,7.3240,85.37,98.17,9.1223,606.02,7.0904,5.7585,4.4690,5.9587 +06.11.2012,5.7292,7.3245,85.73,98.19,9.1587,606.68,7.1552,5.7560,4.5020,5.9747 +05.11.2012,5.7457,7.3502,85.68,98.54,9.2017,609.07,7.1517,5.7708,4.5183,5.9517 +02.11.2012,5.6980,7.3530,85.30,98.57,9.1715,609.31,7.0924,5.7183,4.5051,5.9188 +01.11.2012,5.7162,7.3970,85.73,99.16,9.2208,612.44,7.1470,5.7153,4.4873,5.9246 +31.10.2012,5.7321,7.4377,86.43,99.71,9.2235,615.33,7.1903,5.7419,4.5042,5.9508 +30.10.2012,5.7577,7.4467,86.27,99.83,9.2402,616.03,7.2451,5.7557,4.5197,5.9693 +29.10.2012,5.7842,7.4642,85.97,100.07,9.2929,617.41,7.2620,5.7891,4.5361,5.9852 +26.10.2012,5.7792,7.4716,85.95,100.17,9.3138,617.60,7.2367,5.8056,4.5393,5.9673 +25.10.2012,5.7338,7.4531,86.03,99.92,9.2136,615.84,7.1529,5.7745,4.5375,5.9480 +24.10.2012,5.7218,7.4340,86.14,99.67,9.1463,614.09,7.1711,5.7746,4.5480,5.9018 +23.10.2012,5.6805,7.4054,86.07,99.29,9.0962,611.96,7.1122,5.7185,4.5562,5.8586 +22.10.2012,5.6541,7.3828,86.02,98.99,9.0669,610.50,7.0987,5.6957,4.5504,5.8336 +19.10.2012,5.6452,7.3695,85.90,98.80,9.0552,609.67,7.1179,5.7262,4.5644,5.8481 +18.10.2012,5.6326,7.3824,85.87,98.97,9.0916,610.02,7.1173,5.7614,4.5982,5.8497 +17.10.2012,5.6470,7.4024,85.67,99.24,9.1126,611.58,7.1726,5.7278,4.6260,5.8263 +16.10.2012,5.7005,7.4015,85.78,99.24,9.1660,612.00,7.2276,5.8093,4.6363,5.8585 +15.10.2012,5.7214,7.3923,85.17,99.11,9.1714,611.42,7.2828,5.8385,4.6406,5.8516 +12.10.2012,5.7031,7.3812,85.17,98.96,9.1449,610.32,7.2707,5.8305,4.6421,5.8631 +11.10.2012,5.7377,7.3744,85.63,98.87,9.1849,610.30,7.3541,5.8503,4.6587,5.8918 +10.10.2012,5.7397,7.3850,85.56,99.02,9.1801,610.05,7.3351,5.8655,4.6651,5.8663 +09.10.2012,5.7109,7.4102,86.15,99.36,9.1603,611.09,7.2890,5.8534,4.6834,5.8374 +08.10.2012,5.6955,7.3976,85.98,99.22,9.1658,610.22,7.2517,5.8281,4.6740,5.7932 +05.10.2012,5.7055,7.4186,86.18,99.50,9.2324,612.21,7.2793,5.8210,4.6686,5.8496 +04.10.2012,5.7362,7.4269,86.20,99.61,9.2476,612.22,7.2998,5.8200,4.6756,5.8719 +03.10.2012,5.7296,7.3875,86.17,99.09,9.2281,610.41,7.3222,5.8065,4.6505,5.8485 +02.10.2012,5.7263,7.3803,86.84,98.99,9.2457,610.19,7.3395,5.8286,4.6238,5.9007 +01.10.2012,5.7368,7.3686,87.28,98.85,9.2552,609.42,7.3709,5.8316,4.6132,5.9407 +28.09.2012,5.7083,7.3783,87.43,98.96,9.2771,609.63,7.3646,5.8319,4.6055,5.9712 +27.09.2012,5.7520,7.4140,87.34,99.44,9.3148,613.12,7.4028,5.8559,4.6281,5.9870 +26.09.2012,5.7420,7.3897,87.15,99.10,9.2825,611.27,7.3843,5.8526,4.6174,5.9467 +25.09.2012,5.7522,7.4224,87.30,99.54,9.3373,613.60,7.3955,5.8747,4.6335,5.9987 +24.09.2012,5.7568,7.4525,87.54,99.96,9.3398,615.27,7.3739,5.8824,4.6529,5.9954 +21.09.2012,5.7237,7.4319,87.64,99.69,9.2993,614.03,7.3231,5.8714,4.6419,5.9907 +20.09.2012,5.7393,7.4419,87.54,99.83,9.2839,615.90,7.3468,5.8549,4.6498,5.9583 +19.09.2012,5.7117,7.4632,87.19,100.12,9.2861,615.52,7.2199,5.8693,4.6731,5.9759 +18.09.2012,5.7109,7.4821,86.65,100.36,9.2808,616.36,7.2593,5.8624,4.6980,5.9727 +17.09.2012,5.6995,7.4755,86.73,100.28,9.2451,614.79,7.2734,5.8704,4.6982,5.9998 +14.09.2012,5.6855,7.4182,86.92,99.51,9.2102,610.06,7.3257,5.8887,4.6897,6.0172 +13.09.2012,5.7420,7.4161,87.38,99.49,9.2509,613.10,7.3862,5.8802,4.7232,6.0035 +12.09.2012,5.7592,7.4135,87.29,99.48,9.2666,613.17,7.3940,5.9218,4.7300,6.0325 +11.09.2012,5.7816,7.4031,87.25,99.35,9.2639,612.75,7.3952,5.9323,4.7316,5.9837 +10.09.2012,5.7409,7.3400,86.65,98.50,9.1843,607.02,7.3366,5.8691,4.6960,5.9444 +07.09.2012,5.8420,7.3840,86.66,99.10,9.3101,611.25,7.4006,5.9561,4.7448,6.0316 +06.09.2012,5.8217,7.3484,86.59,98.62,9.2600,609.51,7.4256,5.8799,4.7348,5.9553 +05.09.2012,5.8253,7.2971,86.53,97.94,9.2360,607.47,7.4312,5.8975,4.7287,5.9363 +04.09.2012,5.7925,7.3093,86.83,98.09,9.2069,608.55,7.3903,5.8816,4.7402,5.9561 +03.09.2012,5.8105,7.3029,87.08,98.01,9.2146,608.08,7.4199,5.8933,4.7637,5.9619 +31.08.2012,5.8175,7.2768,87.09,97.68,9.1838,605.89,7.4184,5.8677,4.7488,5.9976 +30.08.2012,5.8182,7.3021,87.45,98.00,9.2125,607.93,7.3985,5.8755,4.7639,6.0140 +29.08.2012,5.8432,7.3358,88.12,98.47,9.2413,610.73,7.4379,5.9139,4.8063,6.0632 +28.08.2012,5.8189,7.2640,88.39,97.53,9.1822,604.72,7.4088,5.8756,4.7863,6.0368 +27.08.2012,5.8421,7.3000,88.30,98.01,9.2358,607.76,7.4223,5.8949,4.8264,6.0679 +24.08.2012,5.8407,7.3292,88.43,98.41,9.2660,610.22,7.4309,5.8810,4.8744,6.0869 +23.08.2012,5.8457,7.3442,88.18,98.61,9.2982,611.44,7.4486,5.9146,4.9171,6.1488 +22.08.2012,5.8882,7.3393,88.34,98.56,9.2954,610.97,7.4233,5.9468,4.9506,6.1523 +21.08.2012,5.9195,7.3204,88.80,98.32,9.3111,609.47,7.4656,5.9947,4.9463,6.2116 +20.08.2012,5.9153,7.3098,88.67,98.17,9.2914,608.53,7.4406,5.9826,4.9444,6.1800 +17.08.2012,5.9478,7.3571,88.75,98.81,9.3508,612.51,7.4909,6.0234,4.9795,6.2187 +16.08.2012,5.9604,7.3101,88.94,98.21,9.3268,608.61,7.5220,6.0240,4.9598,6.2486 +15.08.2012,5.9425,7.3266,88.69,98.45,9.3101,609.73,7.5274,5.9863,4.9585,6.2230 +14.08.2012,5.9174,7.3154,88.59,98.28,9.2850,608.94,7.5362,5.9654,4.9528,6.2278 +13.08.2012,5.9233,7.2753,88.74,97.75,9.2797,605.75,7.5658,5.9771,4.9449,6.2494 +10.08.2012,5.9418,7.2998,88.47,98.08,9.2787,607.76,7.5759,5.9801,4.9608,6.2511 +09.08.2012,5.8780,7.2749,87.98,97.74,9.2114,605.51,7.4879,5.9174,4.9318,6.2304 +08.08.2012,5.9441,7.3514,88.23,98.75,9.2603,611.88,7.5837,5.9563,4.9739,6.2654 +07.08.2012,5.9560,7.3792,88.60,99.15,9.2780,614.18,7.6105,5.9539,4.9793,6.2994 +06.08.2012,5.9867,7.4082,88.71,99.55,9.3455,616.45,7.6400,5.9822,5.0004,6.3246 +03.08.2012,6.0422,7.3694,89.03,99.03,9.3817,613.39,7.7236,6.0121,4.9874,6.3398 +02.08.2012,6.0242,7.3781,89.11,99.14,9.3694,613.87,7.6781,5.9939,4.9838,6.3143 +01.08.2012,6.0271,7.4191,88.90,99.70,9.4457,617.56,7.7172,6.0175,5.0015,6.3306 +31.07.2012,6.0441,7.4176,88.96,99.72,9.4971,617.47,7.7251,6.0378,4.9929,6.3587 +30.07.2012,6.0674,7.4493,88.10,100.14,9.5264,620.17,7.7400,6.0369,4.9923,6.3456 +27.07.2012,6.0095,7.3896,87.81,99.34,9.4289,615.25,7.6710,5.9624,4.9111,6.2694 +26.07.2012,6.0751,7.3846,87.18,99.27,9.4091,614.80,7.7707,5.9909,4.8853,6.2838 +25.07.2012,6.1094,7.3682,87.50,99.04,9.4671,613.49,7.8185,5.9837,4.8924,6.2441 +24.07.2012,6.0881,7.3736,87.68,99.12,9.4460,613.87,7.7813,5.9772,4.8867,6.2656 +23.07.2012,6.0937,7.3725,87.36,99.09,9.4848,613.88,7.8114,5.9980,4.8865,6.2829 +20.07.2012,6.0608,7.4296,87.33,99.88,9.5139,618.54,7.7129,6.0121,4.8621,6.3084 +19.07.2012,6.0972,7.4925,87.89,100.72,9.5467,623.72,7.7573,6.0371,4.8550,6.3377 +18.07.2012,6.0772,7.4661,87.28,100.33,9.5108,621.61,7.6956,6.0037,4.8066,6.2653 +17.07.2012,6.0870,7.4781,86.60,100.50,9.5250,622.18,7.7071,6.0056,4.8032,6.2704 +16.07.2012,6.1120,7.4734,86.73,100.46,9.5066,622.18,7.7338,6.0223,4.7496,6.2498 +13.07.2012,6.1029,7.4416,86.92,100.05,9.4156,619.62,7.6998,5.9935,4.7282,6.2015 +12.07.2012,6.1172,7.4798,87.18,100.58,9.4670,622.77,7.7101,5.9928,4.7570,6.2209 +11.07.2012,6.1008,7.4823,87.44,100.60,9.4726,622.94,7.6903,5.9770,4.7527,6.2377 +10.07.2012,6.0862,7.4869,86.82,100.65,9.4427,623.30,7.6633,5.9689,4.7454,6.1997 +09.07.2012,6.1185,7.5236,87.01,101.14,9.4818,626.29,7.6808,6.0068,4.7643,6.2357 +06.07.2012,6.0565,7.4940,86.79,100.72,9.4006,623.83,7.5848,5.9673,4.7292,6.2143 +05.07.2012,5.9927,7.5092,86.73,100.97,9.3519,624.99,7.5247,5.9184,4.7259,6.1524 +04.07.2012,5.9678,7.5173,85.90,101.11,9.3551,625.72,7.4822,5.8933,4.7478,6.1418 +03.07.2012,5.9629,7.5171,86.19,101.11,9.3594,625.66,7.4751,5.8736,4.7583,6.1212 +02.07.2012,5.9765,7.5528,86.25,101.58,9.3628,628.81,7.5072,5.8720,4.7787,6.1208 +29.06.2012,5.9932,7.5457,85.99,101.52,9.3737,627.92,7.5310,5.8507,4.7796,6.0996 +28.06.2012,6.0279,7.5364,85.61,101.38,9.4062,627.42,7.5880,5.8904,4.7736,6.0975 +27.06.2012,6.0242,7.5269,85.14,101.25,9.4167,626.64,7.5709,5.8764,4.7662,6.0582 +26.06.2012,6.0090,7.5128,85.00,101.07,9.3644,625.51,7.5490,5.8448,4.7558,6.0243 +25.06.2012,5.9839,7.4838,84.97,100.68,9.3199,623.10,7.4724,5.8297,4.7358,5.9962 +22.06.2012,5.9721,7.4863,85.00,100.71,9.3164,623.29,7.4261,5.8052,4.7337,5.9897 +21.06.2012,5.9168,7.5027,84.89,100.93,9.2798,624.49,7.4350,5.7942,4.7370,6.0129 +20.06.2012,5.9377,7.5358,85.21,101.38,9.3421,627.43,7.5237,5.8301,4.7587,6.0544 +19.06.2012,5.9753,7.5256,85.17,101.26,9.3705,626.57,7.5656,5.8412,4.7656,6.0509 +18.06.2012,5.9430,7.5408,85.30,101.48,9.3192,627.79,7.4972,5.8262,4.7569,6.0134 +15.06.2012,5.9551,7.5161,84.89,101.15,9.2265,624.53,7.5063,5.8176,4.6784,5.9528 +14.06.2012,5.9845,7.5180,85.07,101.17,9.2645,625.69,7.5361,5.8223,4.6701,5.9512 +13.06.2012,6.0165,7.5233,85.15,101.24,9.3548,626.36,7.5622,5.8558,4.6443,5.9867 +12.06.2012,6.0314,7.5402,85.15,101.45,9.3384,627.78,7.5771,5.8572,4.6562,5.9738 +11.06.2012,6.0064,7.5864,85.21,102.07,9.3388,631.36,7.5505,5.8823,4.6708,5.9953 +08.06.2012,6.0834,7.5973,84.66,102.20,9.3964,632.47,7.6704,5.8951,4.7051,5.9931 +07.06.2012,6.0737,7.6240,84.61,102.57,9.3814,634.69,7.6562,5.9042,4.7204,6.0363 +06.06.2012,6.0794,7.5983,84.58,102.24,9.3902,632.58,7.7042,5.8872,4.7049,5.9879 +05.06.2012,6.0774,7.5910,84.66,102.15,9.3452,631.91,7.7538,5.8586,4.6986,5.9440 +04.06.2012,6.1261,7.6065,84.48,102.37,9.4164,633.22,7.8359,5.8783,4.7118,5.9236 +01.06.2012,6.1177,7.5618,84.08,101.75,9.4096,629.49,7.7962,5.9137,4.6788,5.9351 +31.05.2012,6.0759,7.5314,83.93,101.34,9.4025,626.93,7.7135,5.9118,4.6457,5.9103 +30.05.2012,6.0360,7.5260,83.51,101.28,9.4210,626.50,7.6001,5.8879,4.6340,5.9108 +29.05.2012,5.9970,7.5301,83.87,101.34,9.4182,626.54,7.5433,5.8710,4.6296,5.9271 +25.05.2012,6.0311,7.5699,84.03,101.86,9.4465,629.91,7.5730,5.8751,N/A,5.8897 +24.05.2012,5.9937,7.5416,83.72,101.48,9.4020,627.84,7.5430,5.8509,N/A,5.8591 +23.05.2012,5.9830,7.5838,83.48,102.04,9.4244,631.42,7.5211,5.8519,N/A,5.8469 +22.05.2012,5.9406,7.5959,83.48,102.21,9.4031,632.35,7.4743,5.8485,N/A,5.8957 +21.05.2012,5.9620,7.6179,83.59,102.49,9.4262,634.09,7.5202,5.8514,N/A,5.8657 +18.05.2012,6.0116,7.6104,83.19,102.39,9.4782,633.63,7.5847,5.8900,N/A,5.9061 +16.05.2012,6.0320,7.6555,83.62,102.99,9.6271,637.33,7.5034,5.9637,N/A,5.9672 +15.05.2012,5.9223,7.6140,84.26,102.43,9.5379,633.84,7.4084,5.9220,N/A,5.9261 +14.05.2012,5.8848,7.5808,84.26,101.99,9.4598,630.98,7.3532,5.8739,N/A,5.8851 +11.05.2012,5.8856,7.6024,84.43,102.28,9.4829,632.89,7.3773,5.8607,N/A,5.9012 +10.05.2012,5.8260,7.5480,84.72,101.55,9.4012,628.26,7.3070,5.8273,N/A,5.8971 +09.05.2012,5.8413,7.5791,85.11,101.94,9.4276,630.98,7.3208,5.8375,N/A,5.8877 +08.05.2012,5.8116,7.5626,84.89,101.70,9.3869,629.54,7.2800,5.8417,N/A,5.9113 +07.05.2012,5.8253,7.5746,84.94,101.86,9.4035,630.61,7.2953,5.8437,N/A,5.9170 +04.05.2012,5.7434,7.5531,84.95,101.55,9.2980,628.62,7.1631,5.8140,N/A,5.8953 +03.05.2012,5.7461,7.5544,85.11,101.56,9.2960,628.71,7.1594,5.8303,N/A,5.9182 +02.05.2012,5.7300,7.5751,85.18,101.84,9.2964,630.33,7.1145,5.8117,N/A,5.9217 +30.04.2012,5.7177,7.5822,85.18,101.93,9.3118,631.06,7.1355,5.8317,N/A,5.9799 +27.04.2012,5.7646,7.5856,85.33,101.98,9.3139,631.22,7.1362,5.8426,N/A,5.9701 +26.04.2012,5.7125,7.5588,85.07,101.61,9.2477,629.03,7.0342,5.8178,N/A,5.9299 +25.04.2012,5.7189,7.5547,85.01,101.54,9.2320,628.55,7.0257,5.7969,N/A,5.9028 +24.04.2012,5.7246,7.5445,84.98,101.41,9.2398,627.66,7.0692,5.7818,N/A,5.8892 +23.04.2012,5.7385,7.5536,85.44,101.54,9.2393,628.50,7.0697,5.7734,N/A,5.9264 +20.04.2012,5.7416,7.5468,84.90,101.45,9.2213,628.01,7.0389,5.7425,N/A,5.9342 +19.04.2012,5.7539,7.5445,85.41,101.42,9.2367,627.64,7.0626,5.8100,N/A,5.9625 +18.04.2012,5.7392,7.5247,84.81,101.15,9.1319,626.17,7.0628,5.8013,N/A,5.9599 +17.04.2012,5.7745,7.5620,85.08,101.66,9.1685,628.59,7.1742,5.7713,N/A,5.9573 +16.04.2012,5.8288,7.5833,85.29,101.94,9.2255,630.86,7.2354,5.8262,N/A,6.0214 +13.04.2012,5.7815,7.6102,85.46,102.31,9.2134,633.21,7.1429,5.8062,N/A,6.0050 +12.04.2012,5.7922,7.6075,85.43,102.28,9.2249,632.72,7.1465,5.7893,N/A,6.0201 +11.04.2012,5.7819,7.5899,85.29,102.04,9.2054,631.66,7.1576,5.7735,N/A,5.9562 +10.04.2012,5.7948,7.5883,85.69,101.99,9.2036,631.62,7.1268,5.8154,N/A,5.9713 +04.04.2012,5.7325,7.5686,86.01,101.72,9.1092,628.46,6.9325,5.7819,N/A,5.8939 +03.04.2012,5.6691,7.5609,85.97,101.62,9.0881,627.91,6.9085,5.7313,N/A,5.8950 +02.04.2012,5.6847,7.5868,86.01,101.97,9.1086,629.92,6.8499,5.7055,N/A,5.9192 +30.03.2012,5.7063,7.6259,86.23,102.52,9.1398,632.73,6.9445,5.7269,N/A,5.9394 +29.03.2012,5.7251,7.6367,86.11,102.69,9.1161,633.55,6.9564,5.7403,N/A,5.9510 +28.03.2012,5.6953,7.5901,85.34,102.08,9.0772,629.28,6.8842,5.7173,N/A,5.9348 +27.03.2012,5.6901,7.5912,85.26,102.09,9.0780,629.26,6.8630,5.7426,N/A,5.9834 +26.03.2012,5.7549,7.6281,85.44,102.59,9.1293,632.93,6.9630,5.7661,N/A,6.0130 +23.03.2012,5.7696,7.6390,85.45,102.74,9.1535,633.71,6.9715,5.7722,N/A,6.0047 +22.03.2012,5.7637,7.6225,85.68,102.51,9.1553,632.23,6.9234,5.8055,N/A,5.9911 +21.03.2012,5.7483,7.6182,85.45,102.46,9.1306,631.58,6.8718,5.8166,N/A,6.0389 +20.03.2012,5.7344,7.5843,85.15,102.00,9.0936,628.53,6.8692,5.7996,N/A,6.0421 +19.03.2012,5.7428,7.5564,85.02,101.62,9.0995,626.43,6.9066,5.7923,N/A,6.0894 +16.03.2012,5.7713,7.5471,84.99,101.51,9.0736,625.11,6.9084,5.8111,N/A,6.0757 +15.03.2012,5.8100,7.5790,84.82,101.94,9.0976,625.17,6.9359,5.8538,N/A,6.0934 +14.03.2012,5.7258,7.4693,84.24,100.46,8.9769,617.70,6.8803,5.7793,N/A,6.0215 +13.03.2012,5.6657,7.4566,83.55,100.29,8.8629,618.36,6.8784,5.7200,N/A,5.9714 +12.03.2012,5.7064,7.4805,83.85,100.61,8.9479,620.43,6.9412,5.7614,N/A,6.0120 +09.03.2012,5.6146,7.4214,83.43,99.82,8.8688,615.80,6.8781,5.6705,N/A,5.9675 +08.03.2012,5.6374,7.4295,83.28,99.93,8.8902,616.08,6.9332,5.6635,N/A,5.9861 +07.03.2012,5.6919,7.4769,83.87,100.57,8.9522,620.20,7.0462,5.6962,N/A,6.0143 +06.03.2012,5.6313,7.4271,83.84,99.91,8.9160,615.88,6.9249,5.6531,N/A,5.9807 +05.03.2012,5.6226,7.4128,84.07,99.71,8.8826,614.79,6.9252,5.6705,N/A,6.0204 +02.03.2012,5.5999,7.4305,84.19,99.95,8.9156,616.08,6.8559,5.6705,N/A,6.0286 +01.03.2012,5.5817,7.4320,84.34,99.96,8.8836,616.52,6.8842,5.6441,N/A,5.9950 +29.02.2012,5.5561,7.4785,84.76,100.57,8.8495,620.48,6.9028,5.5944,N/A,6.0086 +28.02.2012,5.5766,7.4972,84.78,100.82,8.8459,621.94,6.9146,5.6029,N/A,6.0107 +27.02.2012,5.5818,7.5120,85.14,101.02,8.8544,623.35,6.8826,5.5754,N/A,5.9572 +24.02.2012,5.6111,7.5037,84.78,100.91,8.8257,622.04,6.9643,5.6221,N/A,6.0103 +23.02.2012,5.6473,7.4962,84.82,100.81,8.8586,621.92,7.0477,5.6549,N/A,6.0220 +22.02.2012,5.6638,7.5102,85.44,101.00,8.9525,621.95,7.0771,5.6897,N/A,6.0509 +21.02.2012,5.6640,7.5059,85.16,100.96,8.9831,621.70,7.0969,5.6996,N/A,6.0738 +20.02.2012,5.6851,7.5004,84.86,100.90,9.0171,620.68,7.1574,5.7226,N/A,6.1169 +17.02.2012,5.7223,7.5185,85.23,101.15,9.0438,622.63,7.2361,5.7473,N/A,6.1598 +16.02.2012,5.7979,7.5489,85.99,101.57,9.0940,625.48,7.3690,5.7898,N/A,6.1959 +15.02.2012,5.7250,7.5350,85.89,101.38,8.9971,623.79,7.2923,5.7538,N/A,6.1528 +14.02.2012,5.7310,7.5386,85.81,101.42,9.0111,623.92,7.3493,5.7258,N/A,6.1244 +13.02.2012,5.7236,7.5861,86.09,102.06,9.0367,627.35,7.3653,5.7296,N/A,6.1526 +10.02.2012,5.7648,7.6389,86.50,102.79,9.1020,631.38,7.4222,5.7778,N/A,6.1617 +09.02.2012,5.7464,7.6341,86.43,102.72,9.0983,630.61,7.4406,5.7730,N/A,6.2121 +08.02.2012,5.7630,7.6469,86.50,102.87,9.1689,631.11,7.4776,5.7969,N/A,6.2433 +07.02.2012,5.8040,7.6294,86.48,102.63,9.1805,632.42,7.5731,5.8282,N/A,6.2715 +06.02.2012,5.8065,7.6048,86.55,102.30,9.1615,629.94,7.5783,5.8330,N/A,6.2330 +03.02.2012,5.8255,7.6588,86.52,103.04,9.2206,635.38,7.6470,5.8313,N/A,6.2318 +02.02.2012,5.7964,7.6420,86.38,102.80,9.1792,633.45,7.6128,5.8147,N/A,6.2221 +01.02.2012,5.8648,7.6547,86.08,102.97,9.2253,635.51,7.6966,5.8446,N/A,6.2176 +31.01.2012,5.8143,7.6574,86.24,103.01,9.1485,635.20,7.6213,5.8134,N/A,6.1815 +30.01.2012,5.8283,7.6689,86.00,103.16,9.1364,635.90,7.5998,5.7979,N/A,6.1573 +27.01.2012,5.8505,7.6594,86.11,103.04,9.1773,634.78,7.5940,5.8303,N/A,6.2117 +26.01.2012,5.8457,7.6643,86.73,103.09,9.1590,634.75,7.5380,5.8402,N/A,6.2230 +25.01.2012,5.8883,7.6725,87.19,103.19,9.1884,634.00,7.5569,5.8268,N/A,6.1977 +24.01.2012,5.8567,7.6325,86.90,102.64,9.1154,632.23,7.6031,5.8099,N/A,6.1510 +23.01.2012,5.9475,7.6687,87.43,103.14,9.2394,634.64,7.7190,5.8720,N/A,6.2398 +20.01.2012,5.9152,7.6679,87.46,103.12,9.1626,634.58,7.6632,5.8402,N/A,6.1645 +19.01.2012,5.9749,7.6825,87.30,103.31,9.2178,635.53,7.7849,5.9128,N/A,6.2076 +18.01.2012,6.0036,7.6834,87.16,103.34,9.2257,634.93,7.8253,5.9201,N/A,6.2446 +17.01.2012,6.0075,7.6650,86.85,103.10,9.2326,633.09,7.8382,5.9357,N/A,6.2682 +16.01.2012,6.0635,7.6782,86.58,103.26,9.2875,635.75,7.8931,5.9397,N/A,6.2445 +13.01.2012,5.9975,7.7110,86.73,103.69,9.2299,636.58,7.8194,5.8964,N/A,6.2089 +12.01.2012,6.0431,7.6759,86.98,103.22,9.2369,633.22,7.8512,5.9313,N/A,6.2205 +11.01.2012,6.0041,7.6558,86.89,102.95,9.2841,631.31,7.8036,5.9122,N/A,6.1857 +10.01.2012,6.0025,7.6646,87.01,103.08,9.2802,632.07,7.8117,5.8845,N/A,6.1805 +09.01.2012,6.0095,7.6579,86.81,103.01,9.2739,630.03,7.8147,5.8421,N/A,6.1324 +06.01.2012,6.0124,7.6832,86.78,103.32,9.3243,630.13,7.7891,5.9017,N/A,6.1564 +05.01.2012,5.9389,7.6837,86.85,103.32,9.2736,630.29,7.7360,5.8688,N/A,6.1364 +04.01.2012,5.9133,7.7127,86.65,103.72,9.2525,633.08,7.7127,5.8342,N/A,6.1247 +03.01.2012,5.9552,7.7340,86.69,104.04,9.2764,634.85,7.7532,5.8776,N/A,6.1353 +02.01.2012,5.9863,7.7457,86.88,104.20,9.2761,638.30,7.7754,5.8744,N/A,6.1165 +30.12.2011,6.0065,7.7718,86.83,104.55,9.2695,638.55,7.7433,5.8870,N/A,6.0969 +29.12.2011,6.0246,7.7916,87.12,104.80,9.3216,638.64,7.7527,5.8883,N/A,6.0821 +28.12.2011,5.9626,7.7883,86.98,104.77,9.3383,637.68,7.6640,5.8506,N/A,6.0547 +27.12.2011,5.9572,7.7878,87.06,104.77,9.3358,636.90,7.6463,5.8372,N/A,6.0486 +23.12.2011,5.9311,7.7608,86.60,104.40,9.3130,634.92,7.6001,5.8205,N/A,6.0340 +22.12.2011,5.9211,7.7377,86.13,104.09,9.2852,634.05,7.5814,5.7708,N/A,5.9765 +21.12.2011,5.8730,7.7066,86.00,103.67,9.2271,632.56,7.5556,5.7384,N/A,5.9878 +20.12.2011,5.9404,7.7296,85.88,103.99,9.2344,633.47,7.6198,5.7315,N/A,5.9062 +19.12.2011,5.9731,7.7698,86.09,104.54,9.2517,637.23,7.6647,5.7481,N/A,5.9304 +16.12.2011,5.9846,7.7854,85.95,104.75,9.2779,635.81,7.6795,5.7976,N/A,5.9735 +15.12.2011,5.9772,7.7781,85.58,104.66,9.2479,630.14,7.6680,5.7628,N/A,5.9249 +14.12.2011,5.9403,7.7343,85.00,104.02,9.1989,627.51,7.6177,5.7403,N/A,5.9442 +13.12.2011,5.8378,7.7012,84.94,103.57,9.1090,623.20,7.5026,5.6915,N/A,5.8988 +12.12.2011,5.7818,7.6956,85.16,103.51,9.0005,622.74,7.4489,5.6485,N/A,5.8688 +09.12.2011,5.8004,7.7192,85.21,103.83,9.0489,626.43,7.4661,5.6595,N/A,5.8442 +08.12.2011,5.7378,7.7001,85.35,103.57,9.0101,621.95,7.3941,5.6852,N/A,5.9033 +07.12.2011,5.7299,7.6987,85.39,103.56,8.9504,619.95,7.3763,5.6847,N/A,5.8952 +06.12.2011,5.7990,7.7361,85.43,104.05,9.0425,625.36,7.4493,5.6916,N/A,5.9075 +05.12.2011,5.7665,7.7536,85.71,104.28,9.0283,627.03,7.3958,5.6762,N/A,5.9075 +02.12.2011,5.7873,7.8013,85.69,104.93,9.0852,632.32,7.4416,5.7122,N/A,5.9317 +01.12.2011,5.7775,7.7678,85.24,104.48,9.0418,632.84,7.4433,5.6626,N/A,5.8864 +30.11.2011,5.8757,7.7988,84.74,104.87,9.1323,636.14,7.5320,5.6773,N/A,5.8543 +29.11.2011,5.8808,7.8420,84.64,105.43,9.1170,638.07,7.5453,5.6863,N/A,5.8482 +28.11.2011,5.8853,7.8280,84.57,105.25,9.0987,633.41,7.5744,5.6598,N/A,5.7955 +25.11.2011,5.8962,7.8425,84.58,105.46,9.1188,638.91,7.6228,5.6243,N/A,5.7202 +24.11.2011,5.8472,7.8177,84.69,105.12,9.0848,636.71,7.5790,5.5882,N/A,5.6931 +23.11.2011,5.8130,7.8156,84.66,105.03,9.0561,635.54,7.5494,5.5779,N/A,5.6720 +22.11.2011,5.7879,7.8281,84.96,105.18,9.0694,632.38,7.5168,5.5838,N/A,5.7141 +21.11.2011,5.8041,7.8222,85.47,105.10,9.1342,631.46,7.5564,5.6386,N/A,5.7765 +18.11.2011,5.7941,7.8330,85.54,105.25,9.1587,632.10,7.5493,5.6355,N/A,5.7979 +17.11.2011,5.7896,7.8026,85.26,104.83,9.1123,629.34,7.5219,5.6641,N/A,5.8437 +16.11.2011,5.7812,7.7786,85.22,104.51,9.1141,628.08,7.5110,5.6295,N/A,5.8370 +15.11.2011,5.7300,7.7935,85.40,104.72,9.1251,627.32,7.4397,5.6248,N/A,5.8343 +14.11.2011,5.6324,7.7372,85.11,103.96,9.0327,624.95,7.3063,5.5473,N/A,5.7870 +11.11.2011,5.6876,7.7470,85.18,104.10,9.0478,627.52,7.3426,5.5708,N/A,5.7561 +10.11.2011,5.7579,7.7737,85.58,104.44,9.1568,631.38,7.4152,5.6123,N/A,5.7945 +09.11.2011,5.6126,7.7409,85.59,103.98,9.0245,626.44,7.2327,5.5491,N/A,5.8009 +08.11.2011,5.6316,7.7328,85.45,103.88,9.0339,621.21,7.2163,5.5326,N/A,5.7958 +07.11.2011,5.6443,7.7479,85.25,104.10,9.0300,629.14,7.2205,5.5410,N/A,5.8224 +04.11.2011,5.5978,7.7255,85.10,103.81,8.9604,634.13,7.1721,5.5303,N/A,5.8186 +03.11.2011,5.6974,7.7901,85.51,104.69,9.0603,642.07,7.2997,5.5876,N/A,5.8236 +02.11.2011,5.6361,7.7541,85.50,104.21,9.0133,637.17,7.2128,5.5509,N/A,5.8624 +01.11.2011,5.6122,7.7291,85.47,103.86,8.9972,636.05,7.1859,5.5907,N/A,5.8415 +31.10.2011,5.4653,7.6749,84.98,103.12,8.7680,628.74,7.0113,5.4771,N/A,5.7744 +28.10.2011,5.4129,7.6750,85.20,103.10,8.7048,628.64,7.1344,5.4579,N/A,5.7769 +27.10.2011,5.4680,7.6618,84.69,102.93,8.7537,625.16,7.2080,5.4792,N/A,5.7641 +26.10.2011,5.5247,7.6943,84.38,103.35,8.8561,629.70,7.2741,5.4533,N/A,5.7377 +25.10.2011,5.5435,7.6988,84.50,103.40,8.8552,627.70,7.2826,5.5288,N/A,5.7943 +24.10.2011,5.5418,7.7131,84.72,103.60,8.8594,628.14,7.2641,5.5090,N/A,5.7732 +21.10.2011,5.6165,7.7188,84.71,103.68,8.8583,631.53,7.3208,5.5215,N/A,5.7392 +20.10.2011,5.6312,7.7198,84.65,103.69,8.8522,621.44,7.3419,5.5162,N/A,5.7368 +19.10.2011,5.6061,7.7308,84.63,103.84,8.8240,623.28,7.3034,5.5404,N/A,5.7690 +18.10.2011,5.6380,7.7534,84.46,104.13,8.9024,628.08,7.3402,5.5201,N/A,5.7364 +17.10.2011,5.5730,7.7260,84.70,103.78,8.8011,623.25,7.2088,5.5338,N/A,5.7553 +14.10.2011,5.6242,7.7501,84.76,104.10,8.8705,626.48,7.3080,5.5185,N/A,5.7409 +13.10.2011,5.6327,7.7658,85.24,104.30,8.8681,627.91,7.3076,5.5242,N/A,5.7445 +12.10.2011,5.6976,7.7784,85.32,104.48,8.8851,627.32,7.4284,5.5497,N/A,5.6825 +11.10.2011,5.7130,7.7874,85.67,104.63,8.9266,631.31,7.4495,5.5361,N/A,5.6773 +10.10.2011,5.8073,7.8166,85.82,104.99,9.0568,629.28,7.5705,5.6221,N/A,5.7060 +07.10.2011,5.8193,7.8194,85.53,105.04,9.0089,633.12,7.5950,5.6084,N/A,5.7061 +06.10.2011,5.8686,7.8293,85.53,105.19,9.0620,632.15,7.6474,5.6372,N/A,5.6799 +05.10.2011,5.8653,7.8202,85.59,105.08,9.0634,636.94,7.6411,5.5719,N/A,5.6116 +04.10.2011,5.8883,7.7843,85.52,104.60,9.1015,640.90,7.6851,5.6010,N/A,5.6083 +03.10.2011,5.8959,7.8622,85.38,105.66,9.1540,647.37,7.6590,5.6176,N/A,5.6775 +30.09.2011,5.8453,7.8899,85.18,106.03,9.0914,647.14,7.6259,5.6115,N/A,5.6836 +29.09.2011,5.7663,7.8491,85.02,105.47,9.0110,642.88,7.5337,5.5861,N/A,5.6495 +28.09.2011,5.7645,7.8224,85.13,105.11,9.0154,640.68,7.5353,5.6291,N/A,5.6945 +27.09.2011,5.7584,7.7871,84.62,104.65,8.9615,638.16,7.5411,5.6106,N/A,5.6804 +26.09.2011,5.8831,7.8898,84.59,106.01,9.0991,645.89,7.7135,5.6811,N/A,5.6863 +23.09.2011,5.7973,7.8414,84.86,105.33,8.9403,641.47,7.6000,5.6576,N/A,5.6979 +22.09.2011,5.7681,7.8164,84.74,104.97,8.9403,639.66,7.5331,5.6989,N/A,5.7782 +21.09.2011,5.6543,7.7385,85.25,103.90,8.8741,632.44,7.4096,5.6927,N/A,5.8123 +20.09.2011,5.7094,7.7842,85.09,104.52,8.9563,645.75,7.4642,5.7583,N/A,5.8324 +19.09.2011,5.6300,7.7108,84.03,103.53,8.8591,639.01,7.3317,5.7300,N/A,5.7716 +16.09.2011,5.5850,7.7280,84.56,103.74,8.8159,640.59,7.2702,5.6738,N/A,5.7718 +15.09.2011,5.6850,7.7961,84.53,104.67,8.9541,647.11,7.4014,5.7240,N/A,5.8084 +14.09.2011,5.6788,7.7425,84.22,103.96,8.9359,643.09,7.3866,5.7220,N/A,5.8035 +13.09.2011,5.6464,7.7056,84.41,103.47,8.9374,639.85,7.3292,5.6862,N/A,5.8415 +12.09.2011,5.5799,7.5636,84.60,101.57,8.8201,627.48,7.2438,5.5779,N/A,5.7520 +09.09.2011,5.4048,7.5181,84.10,100.95,8.6250,620.49,6.9793,5.4680,N/A,5.7456 +08.09.2011,5.3732,7.5671,84.35,101.60,8.5684,624.68,6.9448,5.4586,N/A,5.6953 +07.09.2011,5.3617,7.5498,83.43,101.36,8.5768,626.11,6.9380,5.4265,N/A,5.6858 +06.09.2011,5.4457,7.6703,84.17,102.97,8.7659,687.54,7.0972,5.5024,N/A,5.7411 +05.09.2011,5.4251,7.6689,84.30,102.95,8.7691,689.91,7.0667,5.4963,N/A,5.7368 +02.09.2011,5.4214,7.7141,84.44,103.54,8.7743,687.86,7.0600,5.5465,N/A,5.7985 +01.09.2011,5.3582,7.6896,84.46,103.21,8.7031,664.25,6.9678,5.4891,N/A,5.7427 +31.08.2011,5.3587,7.7358,84.35,103.82,8.7449,656.42,6.9920,5.4834,N/A,5.7266 +30.08.2011,5.3585,7.7698,84.92,104.28,8.7820,655.92,6.9872,5.4799,N/A,5.7098 +29.08.2011,5.3391,7.7620,85.30,104.18,8.7532,656.27,6.9628,5.4578,N/A,5.6645 +26.08.2011,5.3911,7.7891,85.56,104.54,8.7996,682.81,7.0060,5.4652,N/A,5.6631 +25.08.2011,5.4186,7.8239,85.76,105.02,8.8835,681.11,7.0216,5.4958,N/A,5.6708 +24.08.2011,5.4269,7.8332,85.74,105.14,8.9601,685.95,7.0857,5.4903,N/A,5.6915 +23.08.2011,5.4406,7.8307,85.79,105.12,8.9808,690.91,7.0887,5.5086,N/A,5.6977 +22.08.2011,5.4826,7.8697,85.45,105.66,9.0403,695.98,7.1453,5.5394,N/A,5.6945 +19.08.2011,5.4670,7.8320,84.90,105.13,9.0312,691.76,7.1455,5.5286,N/A,5.6712 +18.08.2011,5.4129,7.7908,85.15,104.57,8.9348,680.61,7.0618,5.5037,N/A,5.6719 +17.08.2011,5.4513,7.8313,85.06,105.12,8.9546,689.95,7.1166,5.5476,N/A,5.7056 +16.08.2011,5.4770,7.8680,84.95,105.62,8.9266,698.96,7.1056,5.5595,N/A,5.7062 +15.08.2011,5.4843,7.8464,84.90,105.33,8.9249,690.59,7.1354,5.5506,N/A,5.7171 +12.08.2011,5.5477,7.8804,84.93,105.79,8.9969,731.83,7.2320,5.6108,N/A,5.7010 +11.08.2011,5.4962,7.8403,84.48,105.23,8.9049,753.16,7.1865,5.5644,N/A,5.6548 +10.08.2011,5.4502,7.8249,84.50,105.05,8.8694,748.29,7.0948,5.5515,N/A,5.6472 +09.08.2011,5.4572,7.7842,84.71,104.50,8.9261,721.90,7.0525,5.4971,N/A,5.5786 +08.08.2011,5.4665,7.8559,84.85,105.46,8.9888,724.38,7.0282,5.5766,N/A,5.6625 +05.08.2011,5.5205,7.7800,84.44,104.45,8.9841,720.46,7.0397,5.6208,N/A,5.7681 +04.08.2011,5.3587,7.6742,84.63,103.03,8.7759,689.98,6.7439,5.5528,N/A,5.7260 +03.08.2011,5.4207,7.7023,84.61,103.41,8.8241,704.95,7.0216,5.6375,N/A,5.8243 +02.08.2011,5.3836,7.6404,85.16,102.55,8.7623,690.43,6.9709,5.6343,N/A,5.8635 +01.08.2011,5.3602,7.7214,85.57,103.64,8.8036,675.56,6.9057,5.6337,N/A,5.9233 +29.07.2011,5.4181,7.7365,85.06,103.86,8.8432,676.21,6.9848,5.6991,N/A,5.9336 +28.07.2011,5.4054,7.7595,85.23,104.13,8.8270,673.70,6.9478,5.7004,N/A,5.9689 +27.07.2011,5.3419,7.7484,85.49,103.96,8.7717,667.53,6.8741,5.6651,N/A,5.9057 +26.07.2011,5.3516,7.7662,85.45,104.19,8.7499,667.99,6.8601,5.6742,N/A,5.8496 +25.07.2011,5.4190,7.7795,85.39,104.37,8.8349,669.38,6.9155,5.6967,N/A,5.8604 +22.07.2011,5.3955,7.7711,85.73,104.26,8.7963,656.51,6.8628,5.7135,N/A,5.8485 +21.07.2011,5.4560,7.7879,85.35,104.47,8.8324,665.33,6.9195,5.7735,N/A,5.8622 +20.07.2011,5.5112,7.8171,84.99,104.85,8.8819,669.28,6.9806,5.8071,N/A,5.9199 +19.07.2011,5.5804,7.8751,85.37,105.61,8.9674,679.00,7.0602,5.8296,N/A,5.9373 +18.07.2011,5.6106,7.8790,85.23,105.66,9.0378,689.56,7.1038,5.8514,N/A,5.9503 +15.07.2011,5.5620,7.8660,85.36,105.45,8.9816,680.80,7.0154,5.7883,N/A,5.9341 +14.07.2011,5.5197,7.8358,85.13,105.08,8.9019,676.39,6.9852,5.7494,N/A,5.9218 +13.07.2011,5.5717,7.8037,84.92,104.64,8.8807,670.20,7.0208,5.7885,N/A,5.9280 +12.07.2011,5.5727,7.7667,84.17,104.13,8.8389,664.80,6.9702,5.7288,N/A,5.8973 +11.07.2011,5.4536,7.7283,84.76,103.61,8.7154,650.90,6.7487,5.6546,N/A,5.8394 +08.07.2011,5.3816,7.7188,85.07,103.49,8.5890,635.56,6.6154,5.6149,N/A,5.8011 +07.07.2011,5.3948,7.7334,85.25,103.68,8.6214,643.20,6.6644,5.5890,N/A,5.7997 +06.07.2011,5.3699,7.7412,85.49,103.78,8.5967,638.55,6.6426,5.5771,N/A,5.7530 +05.07.2011,5.3552,7.7549,85.40,103.96,8.5769,630.73,6.5983,5.5676,N/A,5.7244 +04.07.2011,5.3549,7.7855,85.71,104.37,8.6401,631.73,6.6405,5.5780,N/A,5.7520 +01.07.2011,5.3686,7.8054,85.31,104.65,8.6362,636.81,6.6558,5.5850,N/A,5.7629 +30.06.2011,5.3677,7.7816,84.98,104.33,8.6334,644.58,6.6771,5.5472,N/A,5.7641 +29.06.2011,5.4166,7.7950,84.27,104.51,8.6714,652.25,6.6847,5.5370,N/A,5.7343 +28.06.2011,5.4755,7.8092,84.65,104.71,8.7301,656.10,6.7749,5.5479,N/A,5.7200 +27.06.2011,5.5267,7.8153,84.64,104.78,8.8145,660.02,6.8357,5.5851,N/A,5.7624 +24.06.2011,5.4676,7.7870,84.83,104.40,8.7416,653.20,6.7921,5.5817,N/A,5.7549 +23.06.2011,5.4627,7.8100,85.38,104.72,8.7756,649.51,6.7919,5.6180,N/A,5.7672 +22.06.2011,5.4803,7.8971,86.29,105.87,8.9027,650.83,6.8290,5.6422,N/A,5.8154 +21.06.2011,5.5188,7.9239,86.43,106.23,8.9589,654.24,6.8839,5.6516,N/A,5.8386 +20.06.2011,5.5782,7.9205,86.15,106.18,8.9890,656.76,6.9623,5.6689,N/A,5.8663 +17.06.2011,5.5494,7.8624,85.57,105.41,8.9490,652.60,6.8851,5.6457,N/A,5.8532 +16.06.2011,5.5709,7.8761,85.53,105.59,9.0054,654.51,6.8998,5.6860,N/A,5.8742 +15.06.2011,5.4330,7.8045,85.41,104.60,8.8758,640.04,6.7371,5.6115,N/A,5.8107 +14.06.2011,5.4134,7.8126,85.87,104.74,8.8872,645.80,6.7364,5.5565,N/A,5.7580 +10.06.2011,5.4392,7.8841,86.86,105.71,8.8686,645.87,6.7922,5.5790,N/A,5.7696 +09.06.2011,5.3832,7.8719,87.20,105.56,8.8478,643.42,6.7206,5.4945,N/A,5.6995 +08.06.2011,5.3545,7.8551,87.17,105.34,8.7937,640.15,6.6973,5.4811,N/A,5.7135 +07.06.2011,5.3504,7.8341,87.03,105.07,8.7578,641.65,6.6663,5.4738,N/A,5.7204 +06.06.2011,5.3327,7.8124,86.87,104.79,8.7656,639.22,6.6426,5.4424,N/A,5.7351 +03.06.2011,5.3705,7.7743,86.50,104.28,8.7848,637.33,6.6565,5.4913,N/A,5.7327 +01.06.2011,5.3609,7.7336,87.09,103.73,8.8286,627.85,6.5818,5.5390,N/A,5.7589 +31.05.2011,5.3885,7.7476,87.22,103.90,8.9137,631.45,6.6060,5.5483,N/A,5.7692 +30.05.2011,5.4454,7.7733,87.19,104.26,8.9705,638.34,6.7360,5.5822,N/A,5.8192 +27.05.2011,5.4599,7.7793,87.51,104.33,8.9761,636.31,6.7473,5.5944,N/A,5.8364 +26.05.2011,5.5120,7.8061,87.73,104.69,8.9790,632.87,6.7269,5.6386,N/A,5.8369 +25.05.2011,5.5991,7.8483,87.76,105.25,9.0369,635.36,6.8348,5.7107,N/A,5.8609 +24.05.2011,5.5821,7.8540,87.95,105.33,8.9950,633.00,6.8366,5.7202,N/A,5.8933 +23.05.2011,5.5986,7.8537,87.91,105.31,9.0535,635.01,6.8551,5.7272,N/A,5.9051 +20.05.2011,5.4940,7.8652,88.03,105.46,8.9080,623.79,6.7180,5.6830,N/A,5.8569 +19.05.2011,5.5243,7.8843,87.74,105.72,8.9325,627.80,6.7617,5.7043,N/A,5.8848 +18.05.2011,5.5559,7.9224,88.09,106.24,9.0306,630.31,6.8456,5.7198,N/A,5.9045 +16.05.2011,5.5591,7.8483,87.16,105.28,8.9979,622.41,6.8613,5.7407,N/A,5.8829 +13.05.2011,5.5057,7.8489,87.37,105.26,8.9564,622.29,6.8360,5.7235,N/A,5.8793 +12.05.2011,5.5082,7.8178,87.08,104.86,8.9850,620.12,6.7919,5.7148,N/A,5.8379 +11.05.2011,5.4229,7.8019,87.11,104.64,8.8751,616.06,6.7157,5.6719,N/A,5.8863 +10.05.2011,5.5020,7.8720,87.76,105.58,9.0071,628.76,6.8258,5.7138,N/A,5.9269 +09.05.2011,5.4908,7.9089,87.81,106.06,8.9970,628.13,6.8099,5.6973,N/A,5.9122 +06.05.2011,5.4490,7.9397,88.00,106.47,8.9404,627.87,6.7689,5.6507,N/A,5.8367 +05.05.2011,5.3027,7.8899,87.29,105.81,8.7717,618.43,6.6028,5.5332,N/A,5.6890 +04.05.2011,5.2769,7.8272,87.23,104.97,8.7000,611.50,6.5163,5.5363,N/A,5.7305 +03.05.2011,5.2484,7.7745,87.27,104.26,8.7118,606.72,6.4747,5.5413,N/A,5.7152 +02.05.2011,5.2587,7.7845,87.23,104.39,8.7718,605.81,6.4548,5.5498,N/A,5.7533 +29.04.2011,5.2473,7.7854,87.38,104.40,8.7368,600.96,6.4321,5.5139,N/A,5.7266 +28.04.2011,5.2690,7.8181,87.17,104.86,8.8032,604.76,6.4563,5.5560,N/A,5.7503 +27.04.2011,5.3047,7.7772,87.19,104.31,8.7299,605.80,6.4818,5.5760,N/A,5.7405 +26.04.2011,5.3605,7.8054,87.75,104.67,8.8271,607.18,6.5540,5.6234,N/A,5.7381 +20.04.2011,5.3826,7.7612,87.14,104.06,8.8049,600.50,6.4945,5.6478,N/A,5.7037 +19.04.2011,5.4746,7.7964,87.08,104.52,8.8916,610.15,6.6343,5.6770,N/A,5.7305 +18.04.2011,5.3977,7.7560,86.94,103.99,8.7837,602.66,6.5135,5.6092,N/A,5.6965 +15.04.2011,5.4110,7.8303,87.24,104.98,8.8416,605.43,6.5036,5.6262,N/A,5.6948 +14.04.2011,5.4275,7.8666,87.08,105.47,8.8634,607.88,6.5000,5.6478,N/A,5.7154 +13.04.2011,5.4404,7.8924,86.87,105.83,8.8483,606.21,6.4697,5.6650,N/A,5.7089 +12.04.2011,5.4870,7.8921,87.10,105.84,8.9341,605.45,6.5355,5.7277,N/A,5.7340 +11.04.2011,5.3922,7.7950,86.97,104.53,8.8033,594.48,6.3662,5.6454,N/A,5.6944 +08.04.2011,5.4274,7.8138,86.55,104.78,8.8844,595.08,6.3799,5.6822,N/A,5.7142 +07.04.2011,5.4817,7.8361,86.41,105.08,8.9343,598.21,6.4317,5.7003,N/A,5.7347 +06.04.2011,5.4528,7.7888,86.49,104.45,8.9151,588.89,6.3888,5.6756,N/A,5.6603 +05.04.2011,5.4904,7.7892,86.53,104.45,8.8481,595.58,6.5152,5.6713,N/A,5.6768 +04.04.2011,5.4915,7.8084,87.09,104.72,8.8729,594.99,6.5297,5.7105,N/A,5.7048 +01.04.2011,5.5313,7.8334,87.51,105.06,8.8799,601.52,6.6179,5.7109,N/A,5.7174 +31.03.2011,5.5631,7.8818,88.09,105.69,8.9683,606.56,6.7244,5.7319,N/A,5.7486 +30.03.2011,5.6121,7.8917,88.22,105.82,8.9883,606.94,6.7591,5.7696,N/A,5.7813 +29.03.2011,5.5966,7.9013,87.82,105.96,8.9680,611.22,6.8586,5.7428,N/A,5.7407 +28.03.2011,5.6297,7.9131,87.84,106.11,9.0089,610.70,6.8890,5.7390,N/A,5.7876 +25.03.2011,5.5528,7.8761,87.90,105.62,8.9578,609.49,6.8562,5.6949,N/A,5.6891 +24.03.2011,5.6014,7.8829,88.39,105.71,9.0835,614.22,6.9264,5.7131,N/A,5.6745 +23.03.2011,5.5918,7.9197,88.41,106.20,9.1468,620.93,6.9257,5.6957,N/A,5.6413 +22.03.2011,5.5469,7.8955,88.68,105.88,9.0506,612.88,6.8463,5.6801,N/A,5.5960 +21.03.2011,5.5633,7.8832,88.79,105.71,9.0337,614.15,6.8590,5.6719,N/A,5.5853 +18.03.2011,5.6169,7.8990,87.99,105.82,9.0494,620.48,6.8750,5.7193,N/A,5.5739 +17.03.2011,5.6424,7.8757,87.53,105.58,9.0623,624.06,7.1215,5.7020,N/A,5.5456 +16.03.2011,5.6520,7.8913,88.23,105.80,9.0907,614.85,6.9830,5.7544,N/A,5.6195 +15.03.2011,5.6610,7.8800,88.28,105.65,9.0986,613.84,6.9400,5.7789,N/A,5.6362 +14.03.2011,5.6071,7.8141,88.40,104.77,8.9988,603.08,6.8288,5.7695,N/A,5.6567 +11.03.2011,5.6701,7.8310,88.65,105.00,9.0875,607.30,6.8479,5.8194,N/A,5.6675 +10.03.2011,5.5950,7.7373,87.93,103.74,9.0376,600.29,6.7597,5.7731,N/A,5.6188 +09.03.2011,5.5766,7.7531,87.75,103.95,9.0029,596.40,6.7334,5.7452,N/A,5.6209 +08.03.2011,5.5722,7.7738,87.66,104.24,9.0180,596.88,6.7583,5.7307,N/A,5.6382 +07.03.2011,5.5523,7.7582,87.23,104.05,9.0269,600.15,6.7513,5.7143,N/A,5.6231 +04.03.2011,5.5629,7.7658,88.16,104.15,9.0581,596.97,6.7519,5.7193,N/A,5.6344 +03.03.2011,5.5473,7.6930,87.98,103.18,9.0521,599.74,6.7741,5.6986,N/A,5.6402 +02.03.2011,5.5936,7.7057,88.32,103.34,9.0829,602.66,6.8181,5.7356,N/A,5.6543 +01.03.2011,5.5958,7.7272,88.68,103.64,9.1122,600.83,6.8084,5.7629,N/A,5.6884 +28.02.2011,5.6323,7.7523,87.99,103.98,9.0686,607.16,6.8956,5.7711,N/A,5.7261 +25.02.2011,5.6014,7.7406,87.81,103.84,9.0376,605.46,6.8452,5.7090,N/A,5.6745 +24.02.2011,5.6543,7.7498,87.79,103.95,9.1283,609.79,6.9081,5.7192,N/A,5.6585 +23.02.2011,5.6445,7.7448,88.14,103.88,9.1421,602.24,6.8253,5.7180,N/A,5.6696 +22.02.2011,5.7342,7.7687,88.15,104.21,9.2613,606.06,6.8888,5.8159,N/A,5.7437 +21.02.2011,5.6833,7.7753,88.69,104.29,9.2263,601.50,6.8366,5.7666,N/A,5.7529 +18.02.2011,5.7073,7.7585,89.01,104.06,9.2470,600.67,6.8523,5.8063,N/A,5.7806 +17.02.2011,5.7412,7.7879,89.38,104.45,9.2471,599.57,6.8724,5.8348,N/A,5.7667 +16.02.2011,5.7895,7.8425,89.67,105.17,9.3663,601.23,6.9153,5.8643,N/A,5.7799 +15.02.2011,5.8535,7.8841,90.04,105.63,9.3690,601.84,6.9958,5.9305,N/A,5.8644 +14.02.2011,5.8661,7.9415,90.46,106.50,9.4215,602.73,7.0514,5.9527,N/A,5.9010 +11.02.2011,5.8645,7.9575,90.13,106.72,9.4172,604.37,7.0292,5.8851,N/A,5.8566 +10.02.2011,5.7753,7.9000,89.62,105.96,9.2896,601.37,6.9902,5.7994,N/A,5.8149 +09.02.2011,5.7788,7.8800,89.69,105.70,9.2865,599.55,7.0114,5.8122,N/A,5.8507 +08.02.2011,5.7497,7.8357,89.25,105.12,9.2866,602.54,7.0007,5.8160,N/A,5.8500 +07.02.2011,5.7715,7.8412,89.08,105.18,9.3210,602.67,7.0000,5.8428,N/A,5.8445 +04.02.2011,5.7461,7.8273,88.74,105.00,9.2797,606.86,7.0418,5.8033,N/A,5.8533 +03.02.2011,5.7117,7.8890,88.91,105.83,9.2681,605.86,7.0031,5.7884,N/A,5.7902 +02.02.2011,5.6934,7.8768,89.36,105.66,9.2071,608.56,6.9875,5.7605,N/A,5.7609 +01.02.2011,5.7441,7.8930,89.74,105.88,9.2233,611.37,7.0230,5.7611,N/A,5.7691 +31.01.2011,5.8092,7.9139,89.19,106.17,9.2215,617.11,7.0809,5.8133,N/A,5.7839 +28.01.2011,5.8020,7.9493,89.85,106.65,9.2057,613.22,7.0200,5.8227,N/A,5.7466 +27.01.2011,5.7724,7.8914,89.32,105.88,9.1874,610.55,6.9673,5.8034,N/A,5.7282 +26.01.2011,5.7670,7.8841,88.47,105.79,9.0992,611.20,7.0201,5.7823,N/A,5.7517 +25.01.2011,5.7650,7.8790,88.12,105.71,9.1981,607.39,6.9972,5.8112,N/A,5.7515 +24.01.2011,5.8200,7.9071,88.23,106.09,9.2858,606.16,7.0264,5.8498,N/A,5.7627 +21.01.2011,5.8728,7.9435,88.28,106.59,9.3557,609.31,7.0953,5.8937,N/A,5.8032 +20.01.2011,5.8455,7.8505,87.98,105.36,9.3177,611.68,7.1130,5.8563,N/A,5.8096 +19.01.2011,5.8097,7.8262,87.73,105.04,9.3115,605.84,7.0781,5.8716,N/A,5.8466 +18.01.2011,5.8360,7.7928,87.40,104.60,9.3166,608.96,7.0739,5.9288,N/A,5.8217 +17.01.2011,5.8655,7.7940,87.69,104.64,9.2997,607.04,7.0682,5.9326,N/A,5.8021 +14.01.2011,5.8505,7.8367,87.46,105.19,9.2689,606.68,7.0907,5.9004,N/A,5.8368 +13.01.2011,5.9050,7.7533,87.52,104.08,9.2951,606.29,7.1145,5.9867,N/A,5.8770 +12.01.2011,5.9467,7.7337,87.10,103.81,9.3024,609.95,7.1638,6.0223,N/A,5.8911 +11.01.2011,5.9711,7.7165,86.72,103.59,9.2827,614.66,7.1846,6.0150,N/A,5.8723 +10.01.2011,5.9890,7.7234,86.54,103.68,9.3057,620.65,7.2026,6.0182,N/A,5.9426 +07.01.2011,5.9659,7.7491,86.84,104.01,9.2170,618.64,7.1439,5.9725,N/A,5.9232 +06.01.2011,5.9247,7.7732,87.28,104.31,9.1969,612.15,7.1287,5.9611,N/A,5.9120 +05.01.2011,5.8862,7.8039,87.43,104.71,9.1875,618.40,7.1783,5.8880,N/A,5.9012 +04.01.2011,5.8321,7.7864,86.98,104.47,9.0304,620.60,7.0898,5.8655,N/A,5.8691 +03.01.2011,5.8642,7.7830,87.02,104.43,9.1051,626.02,7.2104,5.9097,N/A,5.9800 diff --git a/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json b/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json new file mode 100644 index 000000000..373a3a8eb --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json @@ -0,0 +1,6 @@ +{ + "main": { + "title": "example", + "nested": { "nestedTitle": "sub" } + } +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Empty.json b/tests/FSharp.Data.Core.Tests/Data/Empty.json new file mode 100644 index 000000000..22fdca1b2 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Empty.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html b/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html new file mode 100644 index 000000000..2f4628c3b --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html @@ -0,0 +1,8 @@ + + +
+
Foo
+
Foo2
+
+ + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/GDP.csv b/tests/FSharp.Data.Core.Tests/Data/GDP.csv new file mode 100644 index 000000000..49f2b91bf --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/GDP.csv @@ -0,0 +1,327 @@ +,Gross domestic product 2013,,,,,,,, +,,,,,,,,, +,,,,(millions of,,,,, +,Ranking,,Economy,US dollars),,,,, +,,,,,,,,, +USA,1,,United States," 16,800,000 ",,,,, +CHN,2,,China," 9,240,270 ",,,,, +JPN,3,,Japan," 4,901,530 ",,,,, +DEU,4,,Germany," 3,634,823 ",,,,, +FRA,5,,France," 2,734,949 ",,,,, +GBR,6,,United Kingdom," 2,521,381 ",,,,, +BRA,7,,Brazil," 2,245,673 ",,,,, +RUS,8,,Russian Federation," 2,096,777 ",,,,, +ITA,9,,Italy," 2,071,307 ",,,,, +IND,10,,India," 1,876,797 ",,,,, +CAN,11,,Canada," 1,826,769 ",,,,, +AUS,12,,Australia," 1,560,597 ",,,,, +ESP,13,,Spain," 1,358,263 ",,,,, +KOR,14,,"Korea, Rep."," 1,304,554 ",,,,, +MEX,15,,Mexico," 1,260,915 ",,,,, +IDN,16,,Indonesia," 868,346 ",,,,, +TUR,17,,Turkey," 820,207 ",,,,, +NLD,18,,Netherlands," 800,173 ",,,,, +SAU,19,,Saudi Arabia," 745,273 ",,,,, +CHE,20,,Switzerland," 650,377 ",,,,, +ARG,21,,Argentina," 611,755 ",,,,, +SWE,22,,Sweden," 558,949 ",,,,, +NGA,23,,Nigeria," 521,803 ",,,,, +POL,24,,Poland," 517,543 ",,,,, +NOR,25,,Norway," 512,580 ",,,,, +BEL,26,,Belgium," 508,116 ",,,,, +VEN,27,,"Venezuela, RB"," 438,284 ",,,,, +AUT,28,,Austria," 415,672 ",,,,, +THA,29,,Thailand," 387,252 ",,,,, +ARE,30,,United Arab Emirates," 383,799 ",,,,, +COL,31,,Colombia," 378,148 ",,,,, +IRN,32,,"Iran, Islamic Rep."," 368,904 ",,,,, +ZAF,33,,South Africa," 350,630 ",,,,, +DNK,34,,Denmark," 330,614 ",,,,, +MYS,35,,Malaysia," 312,435 ",,,,, +SGP,36,,Singapore," 297,941 ",,,,, +ISR,37,,Israel," 291,357 ",,,,, +CHL,38,,Chile," 277,199 ",,,,, +HKG,39,,"Hong Kong SAR, China"," 274,013 ",,,,, +PHL,40,,Philippines," 272,017 ",,,,, +EGY,41,,"Egypt, Arab Rep."," 271,973 ",,,,, +FIN,42,,Finland," 256,842 ",,,,, +GRC,43,,Greece," 241,721 ",,,,, +PAK,44,,Pakistan," 236,625 ",,,,, +KAZ,45,,Kazakhstan," 224,415 ",,,,, +IRQ,46,,Iraq," 222,879 ",,,,, +PRT,47,,Portugal," 220,022 ",,,,, +IRL,48,,Ireland," 217,816 ",,,,, +DZA,49,,Algeria," 210,183 ",,,,, +QAT,50,,Qatar," 202,450 ",,,,, +PER,51,,Peru," 202,296 ",,,,, +CZE,52,,Czech Republic," 198,450 ",,,,, +ROM,53,,Romania," 189,638 ",,,,, +NZL,54,,New Zealand," 185,787 ",,,,, +KWT,55,,Kuwait," 183,219 ",,,,, +UKR,56,,Ukraine," 177,431 ",,,,, +VNM,57,,Vietnam," 171,392 ",,,,, +HUN,58,,Hungary," 129,989 ",,,,, +BGD,59,,Bangladesh," 129,857 ",,,,, +AGO,60,,Angola," 121,704 ",,,,, +MAR,61,,Morocco," 104,374 ",a,,,, +PRI,62,,Puerto Rico," 103,135 ",,,,, +SVK,63,,Slovak Republic," 95,770 ",,,,, +ECU,64,,Ecuador," 90,023 ",,,,, +OMN,65,,Oman," 80,570 ",,,,, +LBY,66,,Libya," 75,456 ",,,,, +AZE,67,,Azerbaijan," 73,560 ",,,,, +BLR,68,,Belarus," 71,710 ",,,,, +CUB,69,,Cuba," 68,234 ",,,,, +LKA,70,,Sri Lanka," 67,182 ",,,,, +SDN,71,,Sudan," 66,548 ",b,,,, +DOM,72,,Dominican Republic," 60,614 ",,,,, +LUX,73,,Luxembourg," 60,383 ",,,,, +HRV,74,,Croatia," 57,539 ",,,,, +UZB,75,,Uzbekistan," 56,796 ",,,,, +URY,76,,Uruguay," 55,708 ",,,,, +GTM,77,,Guatemala," 53,797 ",,,,, +BGR,78,,Bulgaria," 53,010 ",,,,, +MAC,79,,"Macao SAR, China"," 51,753 ",,,,, +CRI,80,,Costa Rica," 49,621 ",,,,, +GHA,81,,Ghana," 47,929 ",,,,, +TUN,82,,Tunisia," 47,129 ",,,,, +ETH,83,,Ethiopia," 46,869 ",,,,, +SVN,84,,Slovenia," 46,833 ",,,,, +LTU,85,,Lithuania," 45,932 ",,,,, +LBN,86,,Lebanon," 44,352 ",,,,, +KEN,87,,Kenya," 44,101 ",,,,, +PAN,88,,Panama," 42,648 ",,,,, +SRB,89,,Serbia," 42,521 ",,,,, +TKM,90,,Turkmenistan," 41,851 ",,,,, +YEM,91,,"Yemen, Rep."," 35,955 ",,,,, +JOR,92,,Jordan," 33,678 ",,,,, +TZA,93,,Tanzania," 33,225 ",c,,,, +BHR,94,,Bahrain," 32,788 ",,,,, +LVA,95,,Latvia," 30,957 ",,,,, +CIV,96,,Cte d'Ivoire," 30,905 ",,,,, +ZAR,97,,"Congo, Dem. Rep."," 30,629 ",,,,, +BOL,98,,Bolivia," 30,601 ",,,,, +PRY,99,,Paraguay," 29,949 ",,,,, +CMR,100,,Cameroon," 29,275 ",,,,, +TTO,101,,Trinidad and Tobago," 24,641 ",,,,, +EST,102,,Estonia," 24,477 ",,,,, +SLV,103,,El Salvador," 24,259 ",,,,, +ZMB,104,,Zambia," 22,384 ",,,,, +CYP,105,,Cyprus," 21,911 ",d,,,, +UGA,106,,Uganda," 21,483 ",,,,, +AFG,107,,Afghanistan," 20,725 ",,,,, +GAB,108,,Gabon," 19,344 ",,,,, +NPL,109,,Nepal," 19,294 ",,,,, +HND,110,,Honduras," 18,550 ",,,,, +BIH,111,,Bosnia and Herzegovina," 17,828 ",,,,, +GEO,112,,Georgia," 16,127 ",e,,,, +BRN,113,,Brunei Darussalam," 16,111 ",,,,, +GNQ,114,,Equatorial Guinea," 15,574 ",,,,, +MOZ,115,,Mozambique," 15,319 ",,,,, +PNG,116,,Papua New Guinea," 15,289 ",,,,, +KHM,117,,Cambodia," 15,250 ",,,,, +SEN,118,,Senegal," 15,150 ",,,,, +BWA,119,,Botswana," 14,788 ",,,,, +ISL,120,,Iceland," 14,620 ",,,,, +JAM,121,,Jamaica," 14,362 ",,,,, +COG,122,,"Congo, Rep."," 14,108 ",,,,, +SSD,123,,South Sudan," 13,797 ",,,,, +TCD,124,,Chad," 13,414 ",,,,, +ALB,125,,Albania," 12,904 ",,,,, +ZWE,126,,Zimbabwe," 12,802 ",,,,, +NAM,127,,Namibia," 12,580 ",,,,, +MUS,128,,Mauritius," 11,938 ",,,,, +BFA,129,,Burkina Faso," 11,583 ",,,,, +MNG,130,,Mongolia," 11,516 ",,,,, +NIC,131,,Nicaragua," 11,256 ",,,,, +LAO,132,,Lao PDR," 11,141 ",,,,, +MLI,133,,Mali," 10,943 ",,,,, +MDG,134,,Madagascar," 10,797 ",,,,, +ARM,135,,Armenia," 10,432 ",,,,, +WBG,136,,West Bank and Gaza," 10,239 ",,,,, +MKD,137,,"Macedonia, FYR"," 10,221 ",,,,, +MLT,138,,Malta," 9,642 ",,,,, +TJK,139,,Tajikistan," 8,508 ",,,,, +HTI,140,,Haiti," 8,459 ",,,,, +BEN,141,,Benin," 8,307 ",,,,, +BHS,142,,"Bahamas, The"," 8,149 ",,,,, +MDA,143,,Moldova," 7,935 ",f,,,, +RWA,144,,Rwanda," 7,452 ",,,,, +NER,145,,Niger," 7,356 ",,,,, +KGZ,146,,Kyrgyz Republic," 7,226 ",,,,, +KSV,147,,Kosovo," 6,960 ",,,,, +GIN,148,,Guinea," 6,193 ",,,,, +MCO,149,,Monaco," 6,075 ",,,,, +BMU,150,,Bermuda," 5,474 ",,,,, +SUR,151,,Suriname," 5,231 ",,,,, +SLE,152,,Sierra Leone," 4,929 ",,,,, +MNE,153,,Montenegro," 4,428 ",,,,, +TGO,154,,Togo," 4,339 ",,,,, +BRB,155,,Barbados," 4,225 ",,,,, +MRT,156,,Mauritania," 4,163 ",,,,, +FJI,157,,Fiji," 4,028 ",,,,, +SWZ,158,,Swaziland," 3,791 ",,,,, +MWI,159,,Malawi," 3,705 ",,,,, +ERI,160,,Eritrea," 3,444 ",,,,, +GUY,161,,Guyana," 3,076 ",,,,, +BDI,162,,Burundi," 2,718 ",,,,, +ABW,163,,Aruba," 2,584 ",,,,, +MDV,164,,Maldives," 2,300 ",,,,, +LSO,165,,Lesotho," 2,230 ",,,,, +LBR,166,,Liberia," 1,951 ",,,,, +CPV,167,,Cape Verde," 1,888 ",,,,, +BTN,168,,Bhutan," 1,884 ",,,,, +TMP,169,,Timor-Leste," 1,615 ",,,,, +BLZ,170,,Belize," 1,605 ",,,,, +CAF,171,,Central African Republic," 1,538 ",,,,, +DJI,172,,Djibouti," 1,456 ",,,,, +LCA,173,,St. Lucia," 1,332 ",,,,, +SYC,174,,Seychelles," 1,268 ",,,,, +ATG,175,,Antigua and Barbuda," 1,230 ",,,,, +SLB,176,,Solomon Islands," 1,096 ",,,,, +GMB,177,,"Gambia, The", 914 ,,,,, +GNB,178,,Guinea-Bissau, 859 ,,,,, +VUT,179,,Vanuatu, 835 ,,,,, +GRD,180,,Grenada, 834 ,,,,, +KNA,181,,St. Kitts and Nevis, 743 ,,,,, +VCT,182,,St. Vincent and the Grenadines, 726 ,,,,, +WSM,183,,Samoa, 694 ,,,,, +COM,184,,Comoros, 657 ,,,,, +DMA,185,,Dominica, 505 ,,,,, +TON,186,,Tonga, 466 ,,,,, +FSM,187,,"Micronesia, Fed. Sts.", 335 ,,,,, +STP,188,,So Tom and Principe, 311 ,,,,, +PLW,189,,Palau, 247 ,,,,, +MHL,190,,Marshall Islands, 175 ,,,,, +KIR,191,,Kiribati, 169 ,,,,, +TUV,192,,Tuvalu, 38 ,,,,, +,,,,,,,,, +ASM,,,American Samoa,..,,,,, +ADO,,,Andorra,..,,,,, +CYM,,,Cayman Islands,..,,,,, +CHI,,,Channel Islands,..,,,,, +CUW,,,Curaao,..,,,,, +FRO,,,Faeroe Islands,..,,,,, +PYF,,,French Polynesia,..,,,,, +GRL,,,Greenland,..,,,,, +GUM,,,Guam,..,,,,, +IMY,,,Isle of Man,..,,,,, +PRK,,,"Korea, Dem. Rep.",..,,,,, +LIE,,,Liechtenstein,..,,,,, +MMR,,,Myanmar,..,,,,, +NCL,,,New Caledonia,..,,,,, +MNP,,,Northern Mariana Islands,..,,,,, +SMR,,,San Marino,..,,,,, +SXM,,,Sint Maarten (Dutch part),..,,,,, +SOM,,,Somalia,..,,,,, +MAF,,,St. Martin (French part),..,,,,, +SYR,,,Syrian Arab Republic,..,,,,, +TCA,,,Turks and Caicos Islands,..,,,,, +VIR,,,Virgin Islands (U.S.),..,,,,, +,,,,,,,,, +WLD,,,World,"74,909,811",,,,, +,,,,,,,,, +LIC,,,Low income,"574,456",,,,, +MIC,,,Middle income,"23,896,945",,,,, +LMC,,, Lower middle income,"5,234,869",,,,, +UMC,,, Upper middle income,"18,657,637",,,,, +LMY,,,Low & middle income,"24,484,655",,,,, +EAP,,, East Asia & Pacific,"11,413,001",,,,, +ECA,,, Europe & Central Asia,"1,983,694",,,,, +LAC,,, Latin America & Caribbean,"5,654,890",,,,, +MNA,,, Middle East & North Africa,"1,489,944",,,,, +SAS,,, South Asia,"2,354,663",,,,, +SSA,,, Sub-Saharan Africa,"1,591,417",,,,, +HIC,,,High income,"50,461,403",,,,, +EMU,,, Euro area,"12,749,677",,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, +,,,,,,,,, diff --git a/tests/FSharp.Data.Core.Tests/Data/GitHub.json b/tests/FSharp.Data.Core.Tests/Data/GitHub.json new file mode 100644 index 000000000..8f7c7885e --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/GitHub.json @@ -0,0 +1,1507 @@ +[ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/89", + "id": 11091705, + "number": 89, + "title": "Experimental package", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-17T18:45:56Z", + "updated_at": "2013-02-17T18:45:56Z", + "closed_at": null, + "pull_request": { + "html_url": "https://github.com/tpetricek/FSharp.Data/pull/89", + "diff_url": "https://github.com/tpetricek/FSharp.Data/pull/89.diff", + "patch_url": "https://github.com/tpetricek/FSharp.Data/pull/89.patch" + }, + "body": "List of changes:\r\n* Fixed a couple of bugs in AssemblyReplacer that only applied to Apiary\r\n* The api has changed and the json now has `request` and `responses` instead of `incoming` and `outgoing`\r\n* The json generator had JsonDcument hardcoded on some places, adapted it so it works with apiary\r\n* Added the replace.ToRuntime and replace.ToDesigntime where needed\r\n* Instead of referencing the non experimental dll, the minimum needed files are reincluded in the experimental .fsproj. This was needed otherwise AssemblyReplacer wouldn't work. It still only has the Apiary provider, the extra stuff is internal\r\n* Changed the sample to cope with the new signatures generated by json provider\r\n* Added the new type of signature tests for Apiary also" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/85", + "id": 11067374, + "number": 85, + "title": "Added ability to override or add headers to CSV provider", + "user": { + "login": "colinbull", + "id": 585546, + "avatar_url": "https://secure.gravatar.com/avatar/d9dd4f2053c161a94581a0d0d366d03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "d9dd4f2053c161a94581a0d0d366d03d", + "url": "https://api.github.com/users/colinbull", + "html_url": "https://github.com/colinbull", + "followers_url": "https://api.github.com/users/colinbull/followers", + "following_url": "https://api.github.com/users/colinbull/following", + "gists_url": "https://api.github.com/users/colinbull/gists{/gist_id}", + "starred_url": "https://api.github.com/users/colinbull/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/colinbull/subscriptions", + "organizations_url": "https://api.github.com/users/colinbull/orgs", + "repos_url": "https://api.github.com/users/colinbull/repos", + "events_url": "https://api.github.com/users/colinbull/events{/privacy}", + "received_events_url": "https://api.github.com/users/colinbull/received_events", + "type": "User" + }, + "labels": [ + + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 5, + "created_at": "2013-02-16T13:46:43Z", + "updated_at": "2013-02-17T14:12:12Z", + "closed_at": null, + "pull_request": { + "html_url": "https://github.com/tpetricek/FSharp.Data/pull/85", + "diff_url": "https://github.com/tpetricek/FSharp.Data/pull/85.diff", + "patch_url": "https://github.com/tpetricek/FSharp.Data/pull/85.patch" + }, + "body": "Can now override the headers provided in a CSV file or add them if they don't exist. Also added the ability to change the amount of rows are skipped. This is required because 1 row was always skipped which caused some problems for header less CSV's. " + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/80", + "id": 11036707, + "number": 80, + "title": "Freebase provider fetching too much data - AllowLocalQueryEvaluation=false not working?", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-15T14:09:54Z", + "updated_at": "2013-02-15T14:09:54Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "In this query\r\n\r\n let people = \r\n query {\r\n for p in data2.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender <> null)\r\n groupBy p.Gender.Name into g\r\n select (g.Key, g.Count())\r\n } |> Seq.toList\r\n\r\nI was expecting to get only a single MQL query, something like this (from http://infotrope.net/2009/09/10/gendered-names-in-freebase/)\r\n
\r\n[{\r\n    \"id\":   null,\r\n    \"type\": \"/people/gender\",\r\n    \"!/people/person/gender\": [{\r\n    \"type\":   \"/people/person\",\r\n    \"name~=\": \"^Evelyn \",\r\n    \"return\": \"count\"\r\n    }]\r\n}]\r\n
\r\n\r\nBut there are 465 mql queries being made, 1 for the query itself and 464 for each person that matches the where clauses, even though I'm not including any person data in the select, just a string. It seems the group by is being done locally, but I have AllowLocalQueryEvaluation=false, and didn't get any error" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/79", + "id": 11036400, + "number": 79, + "title": "Freebase query error when comparing to null", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-15T14:00:09Z", + "updated_at": "2013-02-15T14:00:09Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "This query works fine:\r\n\r\n query {\r\n for p in data.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender <> null)\r\n select p\r\n }\r\n\r\nbut this one fails with an error:\r\n\r\n query {\r\n for p in data2.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender = null)\r\n select p\r\n }\r\n\r\n>System.Exception: unknown qualification - not a lambda - p => (p.GetPropertyByIdTyped(\"/people/person\", \"/people/person/gender\") == null), Lambda, true\r\n at Microsoft.FSharp.Linq.RuntimeHelpers.LeafExpressionConverter.EvaluateQuotation(FSharpExpr e)\r\n at Microsoft.FSharp.Linq.QueryModule.EvalNonNestedInner(CanEliminate canElim, FSharpExpr queryProducingSequence)\r\n at Microsoft.FSharp.Linq.QueryModule.EvalNonNestedOuter(CanEliminate canElim, FSharpExpr tm)" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/77", + "id": 10989696, + "number": 77, + "title": "Missing primitive types in freebase provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-14T10:07:34Z", + "updated_at": "2013-02-14T10:07:34Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "Related to #68\r\n\r\nFrom http://stackoverflow.com/a/14777505/165633\r\n\r\n>Be forewarned that there additional primitive types missing see freebase.com/inspect/type" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/69", + "id": 10747619, + "number": 69, + "title": "Unnecessary wrapper types in json provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", + "name": "status-consider", + "color": "5ED1BA" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", + "name": "type-proposal", + "color": "D460CF" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2013-02-07T17:41:19Z", + "updated_at": "2013-02-07T21:09:04Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "In https://github.com/tpetricek/FSharp.Data/blob/master/tests/FSharp.Data.Tests/JsonProvider.Tests.fs#L38\r\n\r\n`prov.[0].A.Number` is an int option. Either `prov.[0].A` should directly be an int option, or `prov.[0].Number` should be an int instead of an int option.\r\n\r\nBefore https://github.com/tpetricek/FSharp.Data/commit/fa0a913e0f553dbebb53b3410e7a39aa810e0839 it was the first option, did you change it intentionally?\r\n" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/67", + "id": 10746915, + "number": 67, + "title": "Fix the \"Can access the first 10 amino acids\" test", + "user": { + "login": "tpetricek", + "id": 485413, + "avatar_url": "https://secure.gravatar.com/avatar/d06834fe3fb105f62b2186aba4a430d5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "d06834fe3fb105f62b2186aba4a430d5", + "url": "https://api.github.com/users/tpetricek", + "html_url": "https://github.com/tpetricek", + "followers_url": "https://api.github.com/users/tpetricek/followers", + "following_url": "https://api.github.com/users/tpetricek/following", + "gists_url": "https://api.github.com/users/tpetricek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tpetricek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tpetricek/subscriptions", + "organizations_url": "https://api.github.com/users/tpetricek/orgs", + "repos_url": "https://api.github.com/users/tpetricek/repos", + "events_url": "https://api.github.com/users/tpetricek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tpetricek/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", + "name": "type-bug", + "color": "6E0069" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", + "name": "status-priority", + "color": "006A55" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2013-02-07T17:30:08Z", + "updated_at": "2013-02-07T17:35:38Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "The test seems to be failing on my machine. Perhaps the Freebase structure has changed somehow?" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/66", + "id": 10746640, + "number": 66, + "title": "Optional Strings in Json/Xml providers", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2013-02-07T17:23:26Z", + "updated_at": "2013-02-07T17:51:59Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "In the Json and Xml providers, does it make sense to generate string option? Shouldn't we just generate string like in the csv provider?\r\n\r\nE.g., before https://github.com/tpetricek/FSharp.Data/commit/fa0a913e0f553dbebb53b3410e7a39aa810e0839, instead of tweet.Text.Value we could use tweet.Text in here:\r\n https://github.com/tpetricek/FSharp.Data/blob/master/samples/JsonProvider.fsx#L187 " + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/65", + "id": 10742172, + "number": 65, + "title": "Add FunScript demo", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-07T16:01:58Z", + "updated_at": "2013-02-07T16:01:58Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "In the demos solution, in addition to Silverlight, Windows 8 and Windows Phone would be nice to have also a FunScript project. If we add ReflectedDefinition to the portable library maybe we could even reuse it and just add the mappings?" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/64", + "id": 10691945, + "number": 64, + "title": "CSV Type provider should have a GetColumn(columnName:string) method for dynamic lookup", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-06T13:34:51Z", + "updated_at": "2013-02-06T13:34:51Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "From https://github.com/fsharp/fsharpx/issues/121\r\n\r\n>Noticed during the F# progressive tutorials that the CSV provider would benefit from a GetCoumn(columnName:string) method that does dynamic lookup by name instead of static binding. This is a normal design pattern for a type provider.\r\n\r\n>(This was based on using @tomasp's version of the type provider)\r\n\r\n>Also GetColumnNames etc. for dynamic access to the schema" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/62", + "id": 10577489, + "number": 62, + "title": "add some column descriptors (for code sprint)", + "user": { + "login": "nrolland", + "id": 37239, + "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", + "url": "https://api.github.com/users/nrolland", + "html_url": "https://github.com/nrolland", + "followers_url": "https://api.github.com/users/nrolland/followers", + "following_url": "https://api.github.com/users/nrolland/following", + "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", + "organizations_url": "https://api.github.com/users/nrolland/orgs", + "repos_url": "https://api.github.com/users/nrolland/repos", + "events_url": "https://api.github.com/users/nrolland/events{/privacy}", + "received_events_url": "https://api.github.com/users/nrolland/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-02T22:03:45Z", + "updated_at": "2013-02-02T22:04:08Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "we could expose the inferred types of columns at the TP level (and even add additional information like mean, variance for numeric types, 10 first options cases etc... )" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/61", + "id": 10577412, + "number": 61, + "title": "add a option for header or not in Csvprovider (for code sprint)", + "user": { + "login": "nrolland", + "id": 37239, + "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", + "url": "https://api.github.com/users/nrolland", + "html_url": "https://github.com/nrolland", + "followers_url": "https://api.github.com/users/nrolland/followers", + "following_url": "https://api.github.com/users/nrolland/following", + "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", + "organizations_url": "https://api.github.com/users/nrolland/orgs", + "repos_url": "https://api.github.com/users/nrolland/repos", + "events_url": "https://api.github.com/users/nrolland/events{/privacy}", + "received_events_url": "https://api.github.com/users/nrolland/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-02T21:57:02Z", + "updated_at": "2013-02-02T22:00:36Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "when there is no header, it takes the first data row as of now. \r\nwe can add names by hand to the csv or generate generic names like col0, .." + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/59", + "id": 10577341, + "number": 59, + "title": "publish a new nuget (keep for code sprint)", + "user": { + "login": "nrolland", + "id": 37239, + "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", + "url": "https://api.github.com/users/nrolland", + "html_url": "https://github.com/nrolland", + "followers_url": "https://api.github.com/users/nrolland/followers", + "following_url": "https://api.github.com/users/nrolland/following", + "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", + "organizations_url": "https://api.github.com/users/nrolland/orgs", + "repos_url": "https://api.github.com/users/nrolland/repos", + "events_url": "https://api.github.com/users/nrolland/events{/privacy}", + "received_events_url": "https://api.github.com/users/nrolland/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", + "name": "status-priority", + "color": "006A55" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-02T21:50:27Z", + "updated_at": "2013-02-02T21:50:27Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/57", + "id": 10546621, + "number": 57, + "title": "Support XSD in XmlProvider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-01T16:46:54Z", + "updated_at": "2013-02-01T16:46:54Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/56", + "id": 10546531, + "number": 56, + "title": "Support mixed separators in CsvProvider?", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", + "name": "status-consider", + "color": "5ED1BA" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-01T16:44:57Z", + "updated_at": "2013-02-01T16:44:57Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "I just saw a file that is classified as tab separated values, but in which the first column is a collection of 5 values comma separated :/\r\n\r\nThis was a random file from the EU open data, but I wonder if this is common:\r\nhttp://open-data.europa.eu/open-data/data/dataset/00YYPa7FUadFAd4HH4quTw/resource/f6884ab7-edb7-46fa-a61b-ee0b0c0cb723" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/55", + "id": 10545929, + "number": 55, + "title": "Allow to specify the NA string in CSV provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-01T16:28:17Z", + "updated_at": "2013-02-01T16:28:17Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "In some datasets it's \":\"" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/54", + "id": 10545624, + "number": 54, + "title": "Use a smarter default separator for CSVProvider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", + "name": "status-consider", + "color": "5ED1BA" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-01T16:20:31Z", + "updated_at": "2013-02-01T16:20:31Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "If the sample file/url ends with tsv, use \\t as the default separator if nothing was specified.\r\nWe could also look at the header row and infer it in case there isn't any comma" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/52", + "id": 10542733, + "number": 52, + "title": "Use AddDefinitionLocation in the type providers when using a file in the sample", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-02-01T15:03:56Z", + "updated_at": "2013-02-01T15:07:32Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "So when pressing F12 in VisualStudio on a generated property, it opens up the sample csv/xml/json in the right place.\r\nSee http://msdn.microsoft.com/en-gb/library/hh361034.aspx for an example" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/48", + "id": 10439321, + "number": 48, + "title": "Consider renaming CsvProvider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2013-01-29T23:29:57Z", + "updated_at": "2013-02-07T16:44:48Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "I know this suggestion is a little bold, but thinking about it, CsvProvider currently works not only with just csv files but also with tab separated files, or any other similar textual format, and in the future it might well support more formats of tabular data (like xls/xlsx, hdf5/netCDF4, .rdata, .mat, etc...), either directly or maybe as plugins (I have some ideas about how to make that work without changing the api or creating dependencies...). But the inference and generation of typed properties is the same between all the formats.\r\nBoth the R tools and the several Python libraries that work with all those kind of files are usually called read.table or read_table (even though they have overloads called read.csv or read_csv that the only thing they do is to set the default separator to ',')\r\nDo you think renaming CsvProvider to TabularDataProvider would be a good idea? Or are people expecting that name and we can always make the same type provider available under other additional names (like we do with freebase and worldbank that have two versions each)?" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/39", + "id": 10379680, + "number": 39, + "title": "Yahoo Finance Type Provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", + "name": "type-proposal", + "color": "D460CF" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2013-01-28T15:46:37Z", + "updated_at": "2013-01-28T15:55:18Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "I'm not sure if this fits within FSharp.Data or not, but it does seem like a fairly common use case. We already use yahoo data in the CSV samples, but like WorldBank, where we can use the Json TP, having a dedicated TP is much better.\r\n\r\nSome links with info on the API:\r\nhttp://code.google.com/p/yahoo-finance-managed/wiki/CSVAPI\r\nhttp://developer.yahoo.com/yql/\r\nhttp://www.jarloo.com/yahoo-stock-symbol-lookup/\r\n" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/38", + "id": 10379124, + "number": 38, + "title": "NameUtils improvements", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-01-28T15:32:50Z", + "updated_at": "2013-01-28T15:32:50Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "* When we find a field like \"Foo%\", instead of generating \"Foo\", generate \"FooPct\" or \"FooPercentage\"\r\n\r\n* When we find something like \"Foo&Bar\", instead of generating \"FooBar\" generate \"FooAndBar\"\r\n\r\n* When we find something like \"Foo@Bar\", instead of generating \"FooBar\" generate \"FooAtBar\"\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/37", + "id": 10378954, + "number": 37, + "title": "Generate enums in csv type provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2013-01-28T15:27:53Z", + "updated_at": "2013-01-28T16:02:54Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "If a column is infered as string, and there are many repeated values, it's probably an enumeration, so we could generate an enum. If the inference geets it wrong, we could always override (#19). We could use something like (number of distinct values / number of rows) < 0.2 to trigger this" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/32", + "id": 10330252, + "number": 32, + "title": "Write API", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", + "name": "type-proposal", + "color": "D460CF" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-01-25T23:21:00Z", + "updated_at": "2013-01-25T23:21:00Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "See https://github.com/fsharp/fsharpx/issues/196" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/26", + "id": 10327553, + "number": 26, + "title": "Fix System.Xml.Linq reference in portable library for Silverlight", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", + "name": "type-bug", + "color": "6E0069" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2013-01-25T21:45:23Z", + "updated_at": "2013-02-08T22:08:52Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "If not possible" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/24", + "id": 10327515, + "number": 24, + "title": "Fix enableUriSlashes for Portable version", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", + "name": "type-bug", + "color": "6E0069" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", + "name": "status-priority", + "color": "006A55" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2013-01-25T21:43:58Z", + "updated_at": "2013-02-09T18:31:16Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/23", + "id": 10323295, + "number": 23, + "title": "version of fsharpchart is not the current one from nuget", + "user": { + "login": "nrolland", + "id": 37239, + "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", + "url": "https://api.github.com/users/nrolland", + "html_url": "https://github.com/nrolland", + "followers_url": "https://api.github.com/users/nrolland/followers", + "following_url": "https://api.github.com/users/nrolland/following", + "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", + "organizations_url": "https://api.github.com/users/nrolland/orgs", + "repos_url": "https://api.github.com/users/nrolland/repos", + "events_url": "https://api.github.com/users/nrolland/events{/privacy}", + "received_events_url": "https://api.github.com/users/nrolland/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2013-01-25T19:34:09Z", + "updated_at": "2013-01-25T19:34:09Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "\r\nversion the packages config + some specific build targets for downloading them ?" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/19", + "id": 10269384, + "number": 19, + "title": "Allow overriding the schema in the CSV provider", + "user": { + "login": "ovatsus", + "id": 738761, + "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", + "url": "https://api.github.com/users/ovatsus", + "html_url": "https://github.com/ovatsus", + "followers_url": "https://api.github.com/users/ovatsus/followers", + "following_url": "https://api.github.com/users/ovatsus/following", + "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", + "organizations_url": "https://api.github.com/users/ovatsus/orgs", + "repos_url": "https://api.github.com/users/ovatsus/repos", + "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", + "received_events_url": "https://api.github.com/users/ovatsus/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2013-01-24T11:32:51Z", + "updated_at": "2013-01-28T15:24:26Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "Two alternatives:\r\n\r\n* Type provider parameter like in in TryFSharp.org:\r\n\r\n type csvType = CsvFile\r\n\r\n* Allow to specify the type in the header title within braces, like we already allow for units\r\n\r\n Column1 (m), Column1 (float), Column2 (float)" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/18", + "id": 10160408, + "number": 18, + "title": "Add async loading", + "user": { + "login": "tpetricek", + "id": 485413, + "avatar_url": "https://secure.gravatar.com/avatar/d06834fe3fb105f62b2186aba4a430d5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "d06834fe3fb105f62b2186aba4a430d5", + "url": "https://api.github.com/users/tpetricek", + "html_url": "https://github.com/tpetricek", + "followers_url": "https://api.github.com/users/tpetricek/followers", + "following_url": "https://api.github.com/users/tpetricek/following", + "gists_url": "https://api.github.com/users/tpetricek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tpetricek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tpetricek/subscriptions", + "organizations_url": "https://api.github.com/users/tpetricek/orgs", + "repos_url": "https://api.github.com/users/tpetricek/repos", + "events_url": "https://api.github.com/users/tpetricek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tpetricek/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", + "name": "status-planned", + "color": "00A383" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", + "name": "type-feature", + "color": "AA00A2" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2013-01-21T15:27:22Z", + "updated_at": "2013-01-26T00:08:39Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "When reading CSV, XML or JSON from the web, it should be possible to read the data asynchronously.\r\n\r\n * For XML and JSON, we read the entire file before processing, so this should be just a simple `AsyncLoad` method.\r\n * For CSV, it would be nice to use some sort of async enumerator so that we can read the data asynchronously on demand." + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/17", + "id": 10128720, + "number": 17, + "title": "Will FSharp.Data work with mono on a Mac?", + "user": { + "login": "carsten-j", + "id": 2677833, + "avatar_url": "https://secure.gravatar.com/avatar/e24931e1dd5980a29c2df12214a93b63?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "e24931e1dd5980a29c2df12214a93b63", + "url": "https://api.github.com/users/carsten-j", + "html_url": "https://github.com/carsten-j", + "followers_url": "https://api.github.com/users/carsten-j/followers", + "following_url": "https://api.github.com/users/carsten-j/following", + "gists_url": "https://api.github.com/users/carsten-j/gists{/gist_id}", + "starred_url": "https://api.github.com/users/carsten-j/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/carsten-j/subscriptions", + "organizations_url": "https://api.github.com/users/carsten-j/orgs", + "repos_url": "https://api.github.com/users/carsten-j/repos", + "events_url": "https://api.github.com/users/carsten-j/events{/privacy}", + "received_events_url": "https://api.github.com/users/carsten-j/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", + "name": "type-bug", + "color": "6E0069" + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/review", + "name": "review", + "color": "A68100" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 5, + "created_at": "2013-01-19T19:48:34Z", + "updated_at": "2013-02-16T14:17:32Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "Does the type providers work with mono on Mac? I am using visual studio on Windows right now but would like to switch to Mac if possible." + }, + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10", + "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/comments", + "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/events", + "html_url": "https://github.com/tpetricek/FSharp.Data/issues/10", + "id": 9971160, + "number": 10, + "title": "Add FsCharts to the nuget package", + "user": { + "login": "forki", + "id": 57396, + "avatar_url": "https://secure.gravatar.com/avatar/523ac2f66c6152ec45ff96d7f01665d2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", + "gravatar_id": "523ac2f66c6152ec45ff96d7f01665d2", + "url": "https://api.github.com/users/forki", + "html_url": "https://github.com/forki", + "followers_url": "https://api.github.com/users/forki/followers", + "following_url": "https://api.github.com/users/forki/following", + "gists_url": "https://api.github.com/users/forki/gists{/gist_id}", + "starred_url": "https://api.github.com/users/forki/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/forki/subscriptions", + "organizations_url": "https://api.github.com/users/forki/orgs", + "repos_url": "https://api.github.com/users/forki/repos", + "events_url": "https://api.github.com/users/forki/events{/privacy}", + "received_events_url": "https://api.github.com/users/forki/received_events", + "type": "User" + }, + "labels": [ + { + "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", + "name": "discussion", + "color": "FFD440" + } + ], + "state": "open", + "assignee": null, + "milestone": null, + "comments": 5, + "created_at": "2013-01-15T08:22:52Z", + "updated_at": "2013-01-16T10:52:03Z", + "closed_at": null, + "pull_request": { + "html_url": null, + "diff_url": null, + "patch_url": null + }, + "body": "Hi,\r\n\r\nsince nearly all of the samples are using FsChart it would be cool it this could become part of the nuget package. This would allow me to write easier tutorials for my Dynamics NAV friends.\r\n\r\nCheers,\r\nSteffen" + } +] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml b/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml new file mode 100644 index 000000000..f8119a2ab --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml @@ -0,0 +1,10 @@ +
+ Main text +
+ First text + Another text +
+
+
Second text
+
+
\ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd b/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd new file mode 100644 index 000000000..bf0f6d5ad --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd @@ -0,0 +1,7 @@ + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml b/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml new file mode 100644 index 000000000..988febe98 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml @@ -0,0 +1,1275 @@ + + + + Belfast Central + + 54.6123 + -5.91744 + BFSTC + 228 + + + Lisburn + + 54.514 + -6.04327 + LBURN + 238 + + + Lurgan + + 54.4672 + -6.33547 + LURGN + 241 + + + Portadown + + 54.4295 + -6.43868 + PDOWN + 242 + + + Sligo + + 54.2723 + -8.48249 + SLIGO + 180 + + + Newry + + 54.1911 + -6.36225 + NEWRY + 260 + + + Collooney + + 54.1871 + -8.49453 + COLNY + 177 + + + Ballina + + 54.1085 + -9.16146 + BALNA + 167 + + + Ballymote + + 54.0887 + -8.52088 + BMOTE + 176 + + + Dundalk + + 54.0007 + -6.41291 + DDALK + 123 + + + Foxford + + 53.983 + -9.1364 + FXFRD + 193 + + + Boyle + + 53.9676 + -8.30438 + BOYLE + 175 + + + Carrick on Shannon + + 53.9383 + -8.10657 + CKOSH + 174 + + + Dromod + + 53.8591 + -7.9164 + DRMOD + 173 + + + Castlebar + + 53.8471 + -9.2873 + CLBAR + 168 + + + Manulla Junction + + 53.828 + -9.19296 + MNLAJ + 194 + + + Westport + + 53.7955 + -9.50885 + WPORT + 169 + + + Ballyhaunis + + 53.7616 + -8.7584 + BYHNS + 165 + + + Castlerea + + 53.7612 + -8.48448 + CSREA + 164 + + + Longford + + 53.7243 + -7.79574 + LFORD + 172 + + + Claremorris + + 53.7204 + -9.00222 + CLMRS + 166 + + + Drogheda + + 53.712 + -6.33538 + DGHDA + 120 + + + Edgeworthstown + + 53.6888 + -7.60299 + ETOWN + 171 + + + Laytown + + 53.6794 + -6.24253 + LTOWN + 119 + + + Gormanston + + 53.638 + -6.21705 + GSTON + 117 + + + Roscommon + + 53.6243 + -8.19631 + RSCMN + 163 + + + Balbriggan + + 53.6118 + -6.18226 + BBRGN + 116 + + + Skerries + + 53.5741 + -6.11933 + SKRES + 115 + + + Mullingar + + 53.523 + -7.34608 + MLGAR + 153 + + + Rush and Lusk + + 53.5201 + -6.1439 + RLUSK + 114 + + + Donabate + + 53.4855 + -6.15134 + DBATE + 113 + + + Malahide + + 53.4509 + -6.15649 + MHIDE + 112 + + + M3 Parkway + + 53.4349 + -6.46898 + M3WAY + 86 + + + Athlone + + 53.4273 + -7.93683 + ATLNE + 156 + + + Dunboyne + + 53.4175 + -6.46483 + DBYNE + 85 + + + Portmarnock + + 53.4169 + -6.1512 + PMNCK + 111 + + + Enfield + + 53.4157 + -6.83395 + ENFLD + 83 + + + Kilcock + + 53.4043 + -6.67892 + KCOCK + 90 + + + Clongriffin + + 53.4032 + -6.14839 + GRGRD + 187 + + + Sutton + + 53.392 + -6.11448 + SUTTN + 107 + + + Bayside + + 53.3917 + -6.13678 + BYSDE + 106 + + + Howth Junction + Donaghmede ( Howth Junction ) + 53.3909 + -6.15672 + HWTHJ + 105 + + + Howth + + 53.3891 + -6.07401 + HOWTH + 108 + + + Kilbarrack + + 53.387 + -6.16163 + KBRCK + 104 + + + Hansfield + + 53.3853 + -6.44205 + HAFLD + 87 + + + Clonsilla + + 53.3831 + -6.4242 + CLSLA + 94 + + + Castleknock + + 53.3816 + -6.37149 + CNOCK + 96 + + + Raheny + + 53.3815 + -6.17699 + RAHNY + 103 + + + Harmonstown + + 53.3786 + -6.19131 + HTOWN + 102 + + + Maynooth + + 53.378 + -6.58993 + MYNTH + 91 + + + Navan Road Parkway + Phoenix Park + 53.3777 + -6.34591 + PHNPK + 89 + + + Coolmine + + 53.3776 + -6.39072 + CMINE + 95 + + + Ashtown + + 53.3755 + -6.33135 + ASHTN + 97 + + + Leixlip (Confey) + + 53.3743 + -6.48624 + LXCON + 93 + + + Killester + + 53.373 + -6.20442 + KLSTR + 101 + + + Broombridge + + 53.3725 + -6.29869 + BBRDG + 98 + + + Leixlip (Louisa Bridge) + + 53.3704 + -6.50598 + LXLSA + 92 + + + Drumcondra + + 53.3632 + -6.25908 + DCDRA + 99 + + + Clontarf Road + + 53.3629 + -6.22753 + CTARF + 109 + + + Dublin Connolly + Connolly + 53.3531 + -6.24591 + CNLLY + 100 + + + Docklands + + 53.3509 + -6.23929 + DCKLS + 84 + + + Tara Street + + 53.347 + -6.25425 + TARA + 124 + + + Dublin Heuston + Heuston + 53.3464 + -6.29461 + HSTON + 1 + + + Dublin Pearse + Pearse + 53.3433 + -6.24829 + PERSE + 150 + + + Woodlawn + + 53.3432 + -8.47231 + WLAWN + 158 + + + Grand Canal Dock + + 53.3397 + -6.23773 + GCDK + 110 + + + Clara + + 53.3395 + -7.61596 + CLARA + 73 + + + Ballinasloe + + 53.3363 + -8.24081 + BSLOE + 157 + + + Adamstown + + 53.3353 + -6.45233 + ADMTN + 75 + + + Adamstown + + 53.3353 + -6.45233 + ADAMF + 975 + + + Lansdowne Road + + 53.3347 + -6.22979 + LDWNE + 125 + + + Cherry Orchard + Park West (Cherry Orchard ) + 53.334 + -6.37868 + CHORC + 76 + + + Cherry Orchard + Park West (Cherry Orchard ) + 53.334 + -6.37868 + PWESF + 976 + + + Clondalkin + Fonthill ( Clondalkin ) + 53.3334 + -6.40628 + CLONF + 977 + + + Clondalkin + Fonthill ( Clondalkin ) + 53.3334 + -6.40628 + CLDKN + 77 + + + Sandymount + + 53.3281 + -6.22116 + SMONT + 188 + + + Hazelhatch + Celbridge (Hazelhatch ) + 53.3223 + -6.52356 + HZLCH + 78 + + + Hazelhatch + Celbridge (Hazelhatch ) + 53.3223 + -6.52356 + HAZEF + 978 + + + Attymon + + 53.3212 + -8.60608 + ATMON + 159 + + + Sydney Parade + + 53.3206 + -6.21112 + SIDNY + 126 + + + Booterstown + + 53.3099 + -6.19498 + BTSTN + 127 + + + Blackrock + + 53.3027 + -6.17833 + BROCK + 128 + + + Athenry + + 53.3015 + -8.74855 + ATHRY + 162 + + + Seapoint + + 53.2991 + -6.16512 + SEAPT + 129 + + + Salthill + Monkstown ( Salthill ) + 53.2954 + -6.15206 + SHILL + 130 + + + Dun Laoghaire + + 53.2951 + -6.13498 + DLERY + 131 + + + Sandycove + Glasthule (Sandycove ) + 53.2878 + -6.12712 + SCOVE + 132 + + + Glenageary + + 53.2812 + -6.12289 + GLGRY + 133 + + + Dalkey + + 53.2756 + -6.10333 + DLKEY + 134 + + + Oranmore + + 53.2751 + -8.94792 + ORNMR + 161 + + + Galway + + 53.2736 + -9.04696 + GALWY + 170 + + + Tullamore + + 53.2704 + -7.49985 + TMORE + 72 + + + Killiney + + 53.2557 + -6.11317 + KILNY + 135 + + + Sallins + + 53.2469 + -6.66386 + SALNS + 79 + + + Shankill + + 53.2364 + -6.11691 + SKILL + 136 + + + Craughwell + + 53.2252 + -8.7359 + CRGHW + 184 + + + Woodbrook + + 53.22 + -6.1101 + WBROK + 801 + + + Bray + + 53.2043 + -6.10046 + BRAY + 140 + + + Newbridge + + 53.1855 + -6.80807 + NBRGE + 4 + + + Curragh + + 53.1725 + -6.86245 + CURAH + 5 + + + Kildare + + 53.163 + -6.90802 + KDARE + 6 + + + Ardrahan + + 53.1572 + -8.81483 + ARHAN + 183 + + + Portarlington + + 53.146 + -7.18055 + PTRTN + 8 + + + Monasterevin + + 53.1454 + -7.06361 + MONVN + 7 + + + Greystones + + 53.1442 + -6.06085 + GSTNS + 141 + + + Kilcoole + + 53.107 + -6.04112 + KCOOL + 139 + + + Gort + + 53.0653 + -8.81595 + GORT + 182 + + + Portlaoise + + 53.0371 + -7.30086 + PTLSE + 9 + + + Athy + + 52.992 + -6.9762 + ATHY + 45 + + + Wicklow + + 52.9882 + -6.05338 + WLOW + 142 + + + Roscrea + + 52.9607 + -7.7941 + RCREA + 31 + + + Cloughjordan + + 52.9363 + -8.0246 + CJRDN + 32 + + + Rathdrum + + 52.9295 + -6.22641 + RDRUM + 143 + + + Ballybrophy + + 52.8999 + -7.60259 + BBRHY + 11 + + + Nenagh + + 52.8605 + -8.19471 + NNAGH + 33 + + + Carlow + + 52.8407 + -6.92217 + CRLOW + 46 + + + Ennis + + 52.8386 + -8.97491 + ENNIS + 181 + + + Arklow + + 52.7932 + -6.15994 + ARKLW + 144 + + + Templemore + + 52.7878 + -7.82293 + TPMOR + 12 + + + Birdhill + + 52.7656 + -8.44247 + BHILL + 34 + + + Sixmilebridge + + 52.7376 + -8.78427 + SXMBR + 185 + + + Castleconnell + + 52.7128 + -8.49794 + CCONL + 35 + + + Muine Bheag + Bagenalstown + 52.699 + -6.95213 + MNEBG + 47 + + + Thurles + + 52.6766 + -7.82189 + THRLS + 13 + + + Gorey + + 52.6712 + -6.29195 + GOREY + 145 + + + Limerick + + 52.6587 + -8.62397 + LMRCK + 40 + + + Kilkenny + + 52.655 + -7.24498 + KKNNY + 48 + + + Thomastown + + 52.523 + -7.14891 + THTWN + 49 + + + Enniscorthy + + 52.5046 + -6.56627 + ECRTY + 147 + + + Limerick Junction + + 52.5009 + -8.20003 + LMRKJ + 16 + + + Tipperary + + 52.4701 + -8.1625 + TIPRY + 41 + + + Cahir + + 52.3777 + -7.92181 + CAHIR + 42 + + + Clonmel + + 52.3611 + -7.69936 + CLMEL + 43 + + + Carrick on Suir + + 52.3487 + -7.40354 + CKOSR + 44 + + + Charleville + + 52.3468 + -8.65362 + CVILL + 19 + + + Wexford + + 52.3434 + -6.4636 + WXFRD + 148 + + + Campile + + 52.2855 + -6.93896 + CPILE + 52 + + + Ballycullane + + 52.2834 + -6.83958 + BCLAN + 53 + + + Rosslare Strand + + 52.2726 + -6.39254 + RLSTD + 58 + + + Tralee + + 52.271 + -9.69846 + TRLEE + 28 + + + Wellingtonbridge + + 52.2678 + -6.75392 + WBDGE + 54 + + + Waterford + + 52.2667 + -7.1183 + WFORD + 50 + + + Rosslare Europort + Rosslare Harbour + 52.2531 + -6.33493 + RLEPT + 60 + + + Bridgetown + + 52.2312 + -6.54918 + BRGTN + 56 + + + Farranfore + + 52.1733 + -9.55278 + FFORE + 27 + + + Mallow + + 52.1396 + -8.65521 + MLLOW + 21 + + + Banteer + + 52.1287 + -8.89793 + BTEER + 23 + + + Rathmore + + 52.0854 + -9.21756 + RMORE + 25 + + + Millstreet + + 52.0776 + -9.06973 + MLSRT + 24 + + + Killarney + + 52.0595 + -9.50198 + KLRNY + 26 + + + Midleton + + 51.9212 + -8.17579 + MDLTN + 68 + + + Carrigtwohill + + 51.9163 + -8.26323 + CGTWL + 67 + + + Glounthaune + + 51.9112 + -8.3254 + GHANE + 380 + + + LittleIsland + Little Island + 51.9078 + -8.35466 + LSLND + 61 + + + Cork + + 51.9018 + -8.4582 + CORK + 30 + + + Fota + + 51.896 + -8.3183 + FOTA + 63 + + + Carrigaloe + + 51.8688 + -8.32417 + CGLOE + 64 + + + Rushbrooke + + 51.8496 + -8.32252 + RBROK + 65 + + + Cobh + + 51.8491 + -8.29956 + COBH + 66 + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml b/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml new file mode 100644 index 000000000..48b5ed304 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + +2 + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv b/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv new file mode 100644 index 000000000..d7d03c6ab --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv @@ -0,0 +1,5 @@ +user_000001 2009-05-04T23:08:57Z f1b1cf71-bd35-4e99-8624-24a6e15f133a Deep Dish Fuck Me Im Famous (Pacha Ibiza)-09-28-2007 +user_000001 2009-05-04T13:54:10Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Composition 0919 (Live_2009_4_15) +user_000001 2009-05-04T13:52:04Z 坂本龍一 Mc2 (Live_2009_4_15) +user_000001 2009-05-04T13:42:52Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Hibari (Live_2009_4_15) +user_000001 2009-05-04T13:42:11Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Mc1 (Live_2009_4_15) diff --git a/tests/FSharp.Data.Core.Tests/Data/MSFT.csv b/tests/FSharp.Data.Core.Tests/Data/MSFT.csv new file mode 100644 index 000000000..5af6dd5f5 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/MSFT.csv @@ -0,0 +1,6528 @@ +Date,Open,High,Low,Close,Volume,Adj Close +2012-01-27,29.45,29.53,29.17,29.23,44187700,29.23 +2012-01-26,29.61,29.70,29.40,29.50,49102800,29.50 +2012-01-25,29.07,29.65,29.07,29.56,59231700,29.56 +2012-01-24,29.47,29.57,29.18,29.34,51703300,29.34 +2012-01-23,29.55,29.95,29.35,29.73,76078100,29.73 +2012-01-20,28.82,29.74,28.75,29.71,165902900,29.71 +2012-01-19,28.16,28.44,28.03,28.12,74053500,28.12 +2012-01-18,28.31,28.40,27.97,28.23,64860600,28.23 +2012-01-17,28.40,28.65,28.17,28.26,72395300,28.26 +2012-01-13,27.93,28.25,27.79,28.25,60196100,28.25 +2012-01-12,27.87,28.02,27.65,28.00,49370800,28.00 +2012-01-11,27.43,27.98,27.37,27.72,65582400,27.72 +2012-01-10,27.93,28.15,27.75,27.84,60014400,27.84 +2012-01-09,28.05,28.10,27.72,27.74,59706800,27.74 +2012-01-06,27.53,28.19,27.53,28.11,99455500,28.11 +2012-01-05,27.38,27.73,27.29,27.68,56081400,27.68 +2012-01-04,26.82,27.47,26.78,27.40,80516100,27.40 +2012-01-03,26.55,26.96,26.39,26.77,64731500,26.77 +2011-12-30,26.00,26.12,25.91,25.96,27395700,25.96 +2011-12-29,25.95,26.05,25.86,26.02,22616900,26.02 +2011-12-28,26.11,26.15,25.76,25.82,29822500,25.82 +2011-12-27,25.96,26.14,25.93,26.04,21287200,26.04 +2011-12-23,25.91,26.04,25.73,26.03,23205800,26.03 +2011-12-22,25.82,25.86,25.48,25.81,35794100,25.81 +2011-12-21,26.01,26.19,25.44,25.76,64132500,25.76 +2011-12-20,25.86,26.10,25.81,26.03,60767600,26.03 +2011-12-19,26.02,26.12,25.46,25.53,52258300,25.53 +2011-12-16,25.67,26.17,25.63,26.00,101408100,26.00 +2011-12-15,25.72,25.88,25.54,25.56,46213900,25.56 +2011-12-14,25.72,25.86,25.57,25.59,47926400,25.59 +2011-12-13,25.75,26.10,25.65,25.76,54581100,25.76 +2011-12-12,25.41,25.57,25.29,25.51,38945900,25.51 +2011-12-09,25.52,25.87,25.50,25.70,53788500,25.70 +2011-12-08,25.48,25.72,25.37,25.40,60522200,25.40 +2011-12-07,25.67,25.76,25.34,25.60,62667000,25.60 +2011-12-06,25.81,25.87,25.61,25.66,46175300,25.66 +2011-12-05,25.78,25.80,25.50,25.70,56818400,25.70 +2011-12-02,25.59,25.62,25.16,25.22,52293800,25.22 +2011-12-01,25.56,25.63,25.20,25.28,48545400,25.28 +2011-11-30,25.37,25.59,25.14,25.58,81350900,25.58 +2011-11-29,24.82,25.04,24.75,24.84,40917100,24.84 +2011-11-28,24.94,24.97,24.69,24.87,46766700,24.87 +2011-11-25,24.38,24.67,24.30,24.30,26164600,24.30 +2011-11-23,24.61,24.79,24.47,24.47,49099700,24.47 +2011-11-22,24.89,24.96,24.65,24.79,49204500,24.79 +2011-11-21,25.24,25.25,24.90,25.00,61882500,25.00 +2011-11-18,25.48,25.50,25.15,25.30,47626200,25.30 +2011-11-17,26.01,26.04,25.44,25.54,70977500,25.54 +2011-11-16,26.47,26.51,26.04,26.07,53262800,26.07 +2011-11-15,26.56,26.94,26.40,26.74,43874200,26.74 +2011-11-14,26.88,27.00,26.65,26.76,34199200,26.56 +2011-11-11,26.58,27.08,26.57,26.91,37903000,26.71 +2011-11-10,26.47,26.50,26.12,26.28,32514400,26.08 +2011-11-09,26.59,26.75,26.06,26.20,62950900,26.00 +2011-11-08,27.01,27.20,26.69,27.16,47822500,26.96 +2011-11-07,26.21,26.82,26.13,26.80,42589700,26.60 +2011-11-04,26.38,26.40,26.00,26.25,36549200,26.05 +2011-11-03,26.24,26.59,25.98,26.53,65836100,26.33 +2011-11-02,26.10,26.20,25.70,26.01,53533100,25.82 +2011-11-01,26.19,26.32,25.86,25.99,61182600,25.80 +2011-10-31,26.76,27.00,26.62,26.63,46799000,26.43 +2011-10-28,27.14,27.19,26.79,26.98,57712100,26.78 +2011-10-27,27.13,27.40,26.65,27.25,74512400,27.05 +2011-10-26,27.03,27.06,26.10,26.59,63029900,26.39 +2011-10-25,27.08,27.23,26.72,26.81,53554600,26.61 +2011-10-24,27.06,27.40,27.04,27.19,56897800,26.99 +2011-10-21,27.15,27.19,26.80,27.16,76620600,26.96 +2011-10-20,27.26,27.34,26.40,27.04,76300200,26.84 +2011-10-19,27.37,27.47,27.01,27.13,42880000,26.93 +2011-10-18,26.94,27.40,26.80,27.31,52487900,27.11 +2011-10-17,27.11,27.42,26.85,26.98,39453300,26.78 +2011-10-14,27.31,27.50,27.02,27.27,50947700,27.07 +2011-10-13,26.76,27.20,26.62,27.18,43823500,26.98 +2011-10-12,27.18,27.31,26.90,26.96,52489800,26.76 +2011-10-11,26.86,27.07,26.72,27.00,38826200,26.80 +2011-10-10,26.58,26.97,26.47,26.94,41815300,26.74 +2011-10-07,26.34,26.51,26.20,26.25,52741600,26.05 +2011-10-06,25.90,26.40,25.70,26.34,55111400,26.14 +2011-10-05,25.42,26.16,25.16,25.89,94061300,25.70 +2011-10-04,24.30,25.39,24.26,25.34,83485400,25.15 +2011-10-03,24.72,25.34,24.52,24.53,64592500,24.35 +2011-09-30,25.20,25.50,24.88,24.89,54060500,24.70 +2011-09-29,25.98,26.17,25.09,25.45,63407300,25.26 +2011-09-28,25.93,26.37,25.51,25.58,60736200,25.39 +2011-09-27,25.66,25.92,25.45,25.67,55620700,25.48 +2011-09-26,25.19,25.52,24.73,25.44,51057600,25.25 +2011-09-23,24.90,25.15,24.69,25.06,64768100,24.87 +2011-09-22,25.30,25.65,24.60,25.06,96278300,24.87 +2011-09-21,27.05,27.06,25.97,25.99,72750700,25.80 +2011-09-20,27.31,27.50,26.93,26.98,49211900,26.78 +2011-09-19,26.80,27.31,26.60,27.21,52324900,27.01 +2011-09-16,27.05,27.27,26.83,27.12,89681500,26.92 +2011-09-15,26.73,27.03,26.31,26.99,67808300,26.79 +2011-09-14,26.17,26.80,25.89,26.50,66739200,26.30 +2011-09-13,25.92,26.19,25.81,26.04,48792300,25.85 +2011-09-12,25.44,25.93,25.27,25.89,55046100,25.70 +2011-09-09,26.00,26.18,25.50,25.74,64529200,25.55 +2011-09-08,26.00,26.66,25.95,26.22,65811900,26.02 +2011-09-07,25.69,26.00,25.57,26.00,41961000,25.81 +2011-09-06,25.20,25.59,25.11,25.51,54929300,25.32 +2011-09-02,25.78,26.00,25.66,25.80,43894400,25.61 +2011-09-01,26.46,26.86,26.21,26.21,60510800,26.01 +2011-08-31,26.29,26.71,26.26,26.60,59300800,26.40 +2011-08-30,25.73,26.43,25.70,26.23,57341400,26.03 +2011-08-29,25.53,25.86,25.37,25.84,38863200,25.65 +2011-08-26,24.51,25.34,24.42,25.25,71957000,25.06 +2011-08-25,25.08,25.16,24.50,24.57,48192000,24.39 +2011-08-24,24.65,24.93,24.42,24.90,45329700,24.71 +2011-08-23,24.03,24.75,24.03,24.72,59670600,24.54 +2011-08-22,24.42,24.49,23.79,23.98,54721000,23.80 +2011-08-19,24.41,24.62,23.91,24.05,77397900,23.87 +2011-08-18,24.57,25.09,24.03,24.67,105714200,24.49 +2011-08-17,25.25,25.70,24.93,25.25,50923700,25.06 +2011-08-16,25.22,25.59,25.05,25.35,54251500,25.16 +2011-08-15,25.24,25.58,25.15,25.51,56529400,25.16 +2011-08-12,25.13,25.34,24.65,25.10,64787100,24.76 +2011-08-11,24.50,25.38,24.40,25.19,90690100,24.84 +2011-08-10,24.95,25.09,24.10,24.20,127819900,23.87 +2011-08-09,24.71,25.62,24.03,25.58,126268900,25.23 +2011-08-08,25.02,25.60,24.39,24.48,134257200,24.14 +2011-08-05,25.97,26.10,25.23,25.68,112071700,25.33 +2011-08-04,26.53,26.87,25.93,25.94,92949500,25.58 +2011-08-03,26.83,27.00,26.48,26.92,64581200,26.55 +2011-08-02,26.98,27.45,26.76,26.80,63883100,26.43 +2011-08-01,27.51,27.69,26.75,27.27,61838400,26.90 +2011-07-29,27.52,27.71,27.26,27.40,104394800,27.02 +2011-07-28,27.29,28.07,27.21,27.72,83761400,27.34 +2011-07-27,27.88,27.99,27.20,27.33,71488700,26.96 +2011-07-26,27.82,28.15,27.78,28.08,74636500,27.70 +2011-07-25,27.26,28.09,27.19,27.91,108482400,27.53 +2011-07-22,26.86,27.55,26.68,27.53,76380600,27.15 +2011-07-21,27.04,27.31,26.65,27.10,81737400,26.73 +2011-07-20,27.28,27.35,26.98,27.06,49795400,26.69 +2011-07-19,26.81,27.64,26.78,27.54,86730600,27.16 +2011-07-18,26.63,26.90,26.26,26.59,44501900,26.23 +2011-07-15,26.47,26.93,26.47,26.78,49132400,26.41 +2011-07-14,26.62,27.01,26.36,26.47,46382300,26.11 +2011-07-13,26.60,26.96,26.51,26.63,40861800,26.27 +2011-07-12,26.55,26.79,26.34,26.54,47319300,26.18 +2011-07-11,26.62,26.80,26.49,26.63,43999800,26.27 +2011-07-08,26.54,26.98,26.51,26.92,58332500,26.55 +2011-07-07,26.49,26.88,26.36,26.77,51946500,26.40 +2011-07-06,25.97,26.37,25.96,26.33,48744200,25.97 +2011-07-05,26.10,26.15,25.90,26.03,37805300,25.67 +2011-07-01,25.93,26.17,25.84,26.02,52906200,25.66 +2011-06-30,25.74,26.00,25.66,26.00,52535400,25.64 +2011-06-29,25.71,25.71,25.36,25.62,66051000,25.27 +2011-06-28,25.30,25.92,25.16,25.80,81032100,25.45 +2011-06-27,24.23,25.46,24.23,25.20,92044200,24.85 +2011-06-24,24.51,24.54,24.19,24.30,101387200,23.97 +2011-06-23,24.44,24.65,24.20,24.63,59470400,24.29 +2011-06-22,24.60,24.81,24.59,24.65,44287300,24.31 +2011-06-21,24.52,24.86,24.40,24.76,49708700,24.42 +2011-06-20,24.17,24.66,24.16,24.47,54338400,24.13 +2011-06-17,24.22,24.30,23.98,24.26,83320400,23.93 +2011-06-16,23.75,24.10,23.65,24.00,57184100,23.67 +2011-06-15,24.00,24.01,23.67,23.74,49410200,23.41 +2011-06-14,24.30,24.45,24.19,24.22,42894500,23.89 +2011-06-13,24.04,24.19,23.70,24.04,47574100,23.71 +2011-06-10,24.02,24.02,23.69,23.71,49327200,23.39 +2011-06-09,24.01,24.04,23.82,23.96,42878700,23.63 +2011-06-08,23.90,24.02,23.86,23.94,42205000,23.61 +2011-06-07,24.09,24.17,23.90,24.06,41112600,23.73 +2011-06-06,23.89,24.25,23.77,24.01,54778700,23.68 +2011-06-03,24.05,24.14,23.84,23.91,60697700,23.58 +2011-06-02,24.49,24.65,24.18,24.22,51487800,23.89 +2011-06-01,24.99,25.10,24.37,24.43,74033500,24.10 +2011-05-31,24.96,25.06,24.70,25.01,60196300,24.67 +2011-05-27,24.68,24.90,24.65,24.76,50251000,24.42 +2011-05-26,24.35,25.03,24.32,24.67,78016600,24.33 +2011-05-25,24.19,24.31,24.16,24.19,34904200,23.86 +2011-05-24,24.20,24.29,24.04,24.15,47691800,23.82 +2011-05-23,24.21,24.25,24.03,24.17,52692500,23.84 +2011-05-20,24.72,24.87,24.44,24.49,45451500,24.15 +2011-05-19,24.85,24.88,24.50,24.72,37783600,24.38 +2011-05-18,24.53,24.74,24.25,24.69,53931100,24.35 +2011-05-17,24.40,24.70,24.27,24.52,82882100,24.18 +2011-05-16,24.96,25.07,24.50,24.57,91350900,24.08 +2011-05-13,25.28,25.32,24.95,25.03,66812300,24.53 +2011-05-12,25.35,25.39,25.10,25.32,77400000,24.81 +2011-05-11,25.65,25.66,25.21,25.36,78600000,24.85 +2011-05-10,25.38,25.85,25.25,25.67,120798700,25.15 +2011-05-09,25.80,25.96,25.67,25.83,38696400,25.31 +2011-05-06,26.07,26.22,25.75,25.87,55993000,25.35 +2011-05-05,26.05,26.08,25.68,25.79,55600000,25.27 +2011-05-04,25.85,26.25,25.79,26.06,73292300,25.54 +2011-05-03,25.60,25.85,25.49,25.81,71892900,25.29 +2011-05-02,25.94,26.00,25.48,25.66,89825600,25.14 +2011-04-29,26.55,26.64,25.36,25.92,319317900,25.40 +2011-04-28,26.46,26.87,26.40,26.71,80200000,26.17 +2011-04-27,26.30,26.39,26.13,26.38,52689000,25.85 +2011-04-26,25.74,26.44,25.67,26.19,69200000,25.66 +2011-04-25,25.56,25.62,25.34,25.61,33525100,25.09 +2011-04-21,25.79,25.89,25.36,25.52,46892300,25.01 +2011-04-20,25.54,26.00,25.51,25.76,61608600,25.24 +2011-04-19,25.00,25.17,24.87,25.15,38892400,24.64 +2011-04-18,25.10,25.28,24.72,25.08,58045100,24.58 +2011-04-15,25.46,25.56,25.18,25.37,65080400,24.86 +2011-04-14,25.42,25.44,25.09,25.42,55239900,24.91 +2011-04-13,25.65,25.87,25.56,25.63,38144700,25.11 +2011-04-12,25.83,25.85,25.55,25.64,36920400,25.12 +2011-04-11,26.19,26.25,25.80,25.98,34286300,25.46 +2011-04-08,26.17,26.28,25.96,26.07,39887600,25.55 +2011-04-07,26.19,26.26,25.97,26.20,46134700,25.67 +2011-04-06,25.98,26.31,25.86,26.15,65581400,25.62 +2011-04-05,25.82,26.18,25.74,25.78,73694500,25.26 +2011-04-04,25.45,25.66,25.41,25.55,35433700,25.04 +2011-04-01,25.53,25.53,25.31,25.48,63114200,24.97 +2011-03-31,25.60,25.68,25.34,25.39,63233700,24.88 +2011-03-30,25.60,25.72,25.50,25.61,41999300,25.09 +2011-03-29,25.34,25.52,25.30,25.49,40763500,24.98 +2011-03-28,25.66,25.72,25.38,25.41,48973200,24.90 +2011-03-25,25.93,25.95,25.59,25.62,57029800,25.10 +2011-03-24,25.60,25.87,25.50,25.81,38696700,25.29 +2011-03-23,25.23,25.61,25.18,25.54,43969000,25.03 +2011-03-22,25.30,25.46,25.23,25.30,30895600,24.79 +2011-03-21,25.18,25.58,25.15,25.33,46878100,24.82 +2011-03-18,25.06,25.18,24.80,24.80,85486700,24.30 +2011-03-17,25.06,25.22,24.75,24.78,62497000,24.28 +2011-03-16,25.22,25.28,24.68,24.79,100725400,24.29 +2011-03-15,25.08,25.47,25.00,25.39,76067300,24.88 +2011-03-14,25.49,25.76,25.35,25.69,54473400,25.17 +2011-03-11,25.41,25.85,25.36,25.68,49905800,25.16 +2011-03-10,25.62,25.71,25.35,25.41,66549500,24.90 +2011-03-09,25.81,25.98,25.66,25.89,39789100,25.37 +2011-03-08,25.77,26.02,25.65,25.91,50549800,25.39 +2011-03-07,26.13,26.27,25.55,25.72,64980400,25.20 +2011-03-04,26.22,26.24,25.80,25.95,70437200,25.43 +2011-03-03,26.26,26.40,26.18,26.20,68271500,25.67 +2011-03-02,26.11,26.37,26.04,26.08,48658200,25.56 +2011-03-01,26.60,26.78,26.15,26.16,60055000,25.63 +2011-02-28,26.69,26.86,26.51,26.58,51379900,26.05 +2011-02-25,26.91,26.95,26.50,26.55,53006300,26.02 +2011-02-24,26.64,27.06,26.50,26.77,64494200,26.23 +2011-02-23,26.53,26.86,26.43,26.59,60234100,26.05 +2011-02-22,26.78,27.10,26.52,26.59,60889000,26.05 +2011-02-18,27.13,27.21,26.99,27.06,68667800,26.52 +2011-02-17,26.97,27.37,26.91,27.21,57207300,26.66 +2011-02-16,27.05,27.07,26.60,27.02,70817900,26.48 +2011-02-15,27.04,27.33,26.95,26.96,44116500,26.42 +2011-02-14,27.21,27.27,26.95,27.23,56766200,26.53 +2011-02-11,27.76,27.81,27.07,27.25,83939700,26.54 +2011-02-10,27.93,27.94,27.29,27.50,76672400,26.79 +2011-02-09,28.19,28.26,27.91,27.97,52905100,27.25 +2011-02-08,28.10,28.34,28.05,28.28,34904200,27.55 +2011-02-07,27.80,28.34,27.79,28.20,68980900,27.47 +2011-02-04,27.70,27.84,27.51,27.77,40412200,27.05 +2011-02-03,27.97,27.97,27.54,27.65,60340100,26.93 +2011-02-02,27.93,28.11,27.88,27.94,45824000,27.22 +2011-02-01,27.80,28.06,27.61,27.99,62810700,27.27 +2011-01-31,27.77,27.90,27.42,27.73,65029000,27.01 +2011-01-28,28.90,28.93,27.45,27.75,141249400,27.03 +2011-01-27,28.75,29.46,28.49,28.87,146938600,28.12 +2011-01-26,28.51,28.99,28.50,28.78,74628800,28.04 +2011-01-25,28.14,28.45,28.12,28.45,42436600,27.71 +2011-01-24,28.02,28.56,27.99,28.38,52047800,27.65 +2011-01-21,28.40,28.43,28.02,28.02,58080300,27.29 +2011-01-20,28.50,28.55,28.13,28.35,58613600,27.62 +2011-01-19,28.46,28.68,28.27,28.47,50005900,27.73 +2011-01-18,28.16,28.74,28.14,28.66,53322700,27.92 +2011-01-14,28.08,28.38,27.91,28.30,62688400,27.57 +2011-01-13,28.33,28.39,28.01,28.19,67077600,27.46 +2011-01-12,28.12,28.59,28.07,28.55,52631100,27.81 +2011-01-11,28.20,28.25,28.05,28.11,50298900,27.38 +2011-01-10,28.26,28.40,28.04,28.22,57573600,27.49 +2011-01-07,28.64,28.74,28.25,28.60,73762000,27.86 +2011-01-06,28.04,28.85,27.86,28.82,87992900,28.07 +2011-01-05,27.90,28.01,27.77,28.00,58998700,27.28 +2011-01-04,27.94,28.17,27.85,28.09,54405600,27.36 +2011-01-03,28.05,28.18,27.92,27.98,53443800,27.26 +2010-12-31,27.80,27.92,27.63,27.91,24752000,27.19 +2010-12-30,27.92,28.00,27.78,27.85,20786100,27.13 +2010-12-29,27.94,28.12,27.88,27.97,19502500,27.25 +2010-12-28,27.97,28.17,27.96,28.01,23042200,27.29 +2010-12-27,28.12,28.20,27.88,28.07,21652800,27.34 +2010-12-23,27.97,28.32,27.96,28.30,24902500,27.57 +2010-12-22,28.01,28.40,27.98,28.19,42252300,27.46 +2010-12-21,27.85,28.14,27.76,28.07,38153000,27.34 +2010-12-20,27.95,27.99,27.68,27.81,52811000,27.09 +2010-12-17,27.92,28.09,27.75,27.90,87456500,27.18 +2010-12-16,27.76,27.99,27.66,27.99,57680200,27.27 +2010-12-15,27.53,27.99,27.53,27.85,69634200,27.13 +2010-12-14,27.31,27.75,27.26,27.62,64070500,26.91 +2010-12-13,27.27,27.45,27.17,27.25,47943900,26.54 +2010-12-10,27.19,27.40,27.11,27.34,37625800,26.63 +2010-12-09,27.28,27.34,27.01,27.08,47148300,26.38 +2010-12-08,26.83,27.24,26.80,27.23,41666800,26.53 +2010-12-07,27.08,27.13,26.85,26.87,57860500,26.17 +2010-12-06,26.93,26.98,26.76,26.84,36264200,26.15 +2010-12-03,26.81,27.06,26.78,27.02,52622000,26.32 +2010-12-02,26.24,26.98,26.20,26.89,91759200,26.19 +2010-12-01,25.57,26.25,25.56,26.04,74123500,25.37 +2010-11-30,25.05,25.47,25.00,25.26,75282100,24.61 +2010-11-29,25.19,25.42,24.93,25.31,56603600,24.65 +2010-11-26,25.21,25.41,25.17,25.25,21356500,24.60 +2010-11-24,25.20,25.46,25.16,25.37,56825900,24.71 +2010-11-23,25.57,25.60,25.09,25.12,69742500,24.47 +2010-11-22,25.65,25.74,25.44,25.73,53350500,25.06 +2010-11-19,25.80,25.83,25.60,25.69,52423200,25.03 +2010-11-18,25.71,26.08,25.61,25.84,59514000,25.17 +2010-11-17,25.90,25.91,25.55,25.57,58299700,24.91 +2010-11-16,26.04,26.04,25.65,25.81,65339200,25.14 +2010-11-15,26.33,26.50,26.17,26.20,51794600,25.37 +2010-11-12,26.47,26.52,26.10,26.27,64962200,25.43 +2010-11-11,26.68,26.72,26.28,26.68,62073100,25.83 +2010-11-10,27.01,27.08,26.81,26.94,52277300,26.08 +2010-11-09,26.81,27.11,26.71,26.95,58538600,26.09 +2010-11-08,26.68,28.87,26.58,26.81,71670800,25.96 +2010-11-05,27.17,27.19,26.53,26.85,110953700,26.00 +2010-11-04,27.41,27.43,27.01,27.14,93599300,26.28 +2010-11-03,27.46,27.49,26.96,27.03,110255300,26.17 +2010-11-02,27.06,27.42,27.02,27.39,54402100,26.52 +2010-11-01,26.88,27.22,26.70,26.95,61912100,26.09 +2010-10-29,27.15,27.20,26.48,26.67,114193200,25.82 +2010-10-28,26.21,26.38,25.92,26.28,80730300,25.44 +2010-10-27,25.79,26.11,25.62,26.05,64805500,25.22 +2010-10-26,25.12,25.97,25.06,25.90,69304200,25.08 +2010-10-25,25.24,25.35,25.17,25.19,50912400,24.39 +2010-10-22,25.52,25.54,25.27,25.38,25837900,24.57 +2010-10-21,25.40,25.54,25.05,25.42,50032400,24.61 +2010-10-20,25.26,25.40,25.10,25.31,56283600,24.50 +2010-10-19,25.27,25.37,24.95,25.10,66150900,24.30 +2010-10-18,25.59,25.95,25.45,25.82,48330500,25.00 +2010-10-15,25.36,25.55,25.23,25.54,68954800,24.73 +2010-10-14,25.29,25.34,25.00,25.23,51949100,24.43 +2010-10-13,25.02,25.54,24.89,25.34,75336500,24.53 +2010-10-12,24.65,24.93,24.43,24.83,50141500,24.04 +2010-10-11,24.74,24.74,24.50,24.59,27587800,23.81 +2010-10-08,24.62,24.65,24.37,24.57,41327800,23.79 +2010-10-07,24.62,24.75,24.28,24.53,50096100,23.75 +2010-10-06,24.32,24.54,24.13,24.43,50489700,23.65 +2010-10-05,24.06,24.45,23.91,24.35,78152900,23.57 +2010-10-04,23.96,23.99,23.78,23.91,98143400,23.15 +2010-10-01,24.77,24.82,24.30,24.38,62672300,23.60 +2010-09-30,24.61,24.83,24.36,24.49,61262700,23.71 +2010-09-29,24.63,24.66,24.40,24.50,44318900,23.72 +2010-09-28,24.80,24.90,24.35,24.68,56041200,23.89 +2010-09-27,24.85,24.99,24.59,24.73,43603300,23.94 +2010-09-24,24.64,24.80,24.58,24.78,51948800,23.99 +2010-09-23,24.51,24.59,24.36,24.43,46201800,23.65 +2010-09-22,24.89,24.97,24.36,24.61,94299400,23.83 +2010-09-21,25.42,25.42,25.08,25.15,52675700,24.35 +2010-09-20,25.28,25.52,25.11,25.43,49838700,24.62 +2010-09-17,25.40,25.53,25.08,25.22,70341600,24.42 +2010-09-16,25.06,25.37,25.05,25.33,44548300,24.52 +2010-09-15,25.10,25.22,24.92,25.12,56201900,24.32 +2010-09-14,25.04,25.35,24.89,25.03,87160400,24.23 +2010-09-13,24.20,25.29,24.09,25.11,114680400,24.31 +2010-09-10,23.98,24.03,23.79,23.85,58284300,23.09 +2010-09-09,24.19,24.21,23.99,24.01,46028900,23.25 +2010-09-08,24.07,24.20,23.74,23.93,65512400,23.17 +2010-09-07,24.10,24.30,23.92,23.96,51928700,23.20 +2010-09-03,24.24,24.45,24.20,24.29,64189100,23.52 +2010-09-02,23.88,23.95,23.71,23.94,48837100,23.18 +2010-09-01,23.67,23.95,23.54,23.90,65235900,23.14 +2010-08-31,23.60,23.73,23.32,23.47,66074600,22.72 +2010-08-30,23.74,23.82,23.60,23.64,45453100,22.89 +2010-08-27,23.88,24.02,23.51,23.93,60939400,23.17 +2010-08-26,24.09,24.19,23.79,23.82,49105300,23.06 +2010-08-25,24.00,24.22,23.87,24.10,47404800,23.33 +2010-08-24,24.09,24.35,24.00,24.04,66522500,23.27 +2010-08-23,24.44,24.64,24.24,24.28,51643000,23.51 +2010-08-20,24.31,24.40,24.20,24.23,49560100,23.46 +2010-08-19,24.62,24.74,24.21,24.44,54064600,23.66 +2010-08-18,24.68,24.95,24.41,24.82,46818900,24.03 +2010-08-17,24.71,24.96,24.60,24.71,52912600,23.92 +2010-08-16,24.36,24.61,24.30,24.50,40909700,23.59 +2010-08-13,24.35,24.67,24.24,24.40,45263500,23.50 +2010-08-12,24.42,24.68,24.36,24.49,70240500,23.58 +2010-08-11,24.68,24.90,24.56,24.86,76746900,23.94 +2010-08-10,25.33,25.34,24.88,25.07,87257700,24.14 +2010-08-09,25.55,25.73,25.37,25.61,57096500,24.66 +2010-08-06,25.18,25.56,25.02,25.55,55982100,24.61 +2010-08-05,25.49,25.58,25.21,25.37,64922100,24.43 +2010-08-04,26.15,26.24,25.44,25.73,78531900,24.78 +2010-08-03,26.20,26.35,25.97,26.16,56877700,25.19 +2010-08-02,25.99,26.38,25.75,26.33,55044600,25.36 +2010-07-30,25.75,25.84,25.35,25.81,83534800,24.86 +2010-07-29,26.13,26.41,25.60,26.03,69446200,25.07 +2010-07-28,26.07,26.19,25.83,25.95,69704800,24.99 +2010-07-27,26.14,26.24,25.96,26.16,60672100,25.19 +2010-07-26,25.86,26.20,25.80,26.10,67249900,25.14 +2010-07-23,25.84,26.02,25.25,25.81,108520100,24.86 +2010-07-22,25.51,25.99,25.47,25.84,73016400,24.88 +2010-07-21,25.60,25.65,24.98,25.12,73297300,24.19 +2010-07-20,24.86,25.48,24.70,25.48,45530700,24.54 +2010-07-19,24.96,25.30,24.91,25.23,38181800,24.30 +2010-07-16,25.51,25.64,24.88,24.89,65064800,23.97 +2010-07-15,25.50,25.59,24.98,25.51,56934700,24.57 +2010-07-14,25.50,25.61,25.12,25.44,72808100,24.50 +2010-07-13,25.14,25.30,24.90,25.13,61928700,24.20 +2010-07-12,24.43,24.89,24.42,24.83,49854200,23.91 +2010-07-09,24.33,24.41,24.15,24.27,53806100,23.37 +2010-07-08,24.60,24.62,23.97,24.41,50758100,23.51 +2010-07-07,23.82,24.32,23.61,24.30,79965300,23.40 +2010-07-06,23.70,24.09,23.58,23.82,73592000,22.94 +2010-07-02,23.36,23.48,23.05,23.27,62485100,22.41 +2010-07-01,23.09,23.32,22.73,23.16,92239400,22.30 +2010-06-30,23.30,23.68,22.95,23.01,81050500,22.16 +2010-06-29,24.13,24.20,23.11,23.31,119882100,22.45 +2010-06-28,24.51,24.61,24.12,24.31,73784800,23.41 +2010-06-25,25.05,25.11,24.31,24.53,156256700,23.62 +2010-06-24,25.46,25.72,24.93,25.00,85243400,24.08 +2010-06-23,25.78,25.78,25.22,25.31,61466200,24.37 +2010-06-22,26.16,26.45,25.76,25.77,55985400,24.82 +2010-06-21,26.78,26.89,25.89,25.95,54625300,24.99 +2010-06-18,26.37,26.53,26.17,26.44,52075600,25.46 +2010-06-17,26.56,26.67,26.04,26.37,47995500,25.40 +2010-06-16,26.47,26.58,26.23,26.32,48698000,25.35 +2010-06-15,25.75,26.65,25.74,26.58,81641500,25.60 +2010-06-14,25.86,25.96,25.47,25.50,50972400,24.56 +2010-06-11,25.04,25.72,24.77,25.66,68057700,24.71 +2010-06-10,25.13,25.15,24.78,25.00,78930900,24.08 +2010-06-09,25.22,25.52,24.75,24.79,87794000,23.87 +2010-06-08,25.25,25.26,24.65,25.11,87355000,24.18 +2010-06-07,25.82,25.83,25.24,25.29,80456200,24.36 +2010-06-04,26.10,26.57,25.62,25.79,89832200,24.84 +2010-06-03,26.55,26.93,26.41,26.86,67837000,25.87 +2010-06-02,26.06,26.48,25.73,26.46,65718800,25.48 +2010-06-01,25.53,26.31,25.52,25.89,76152400,24.93 +2010-05-28,25.84,26.12,25.66,25.80,67496900,24.85 +2010-05-27,25.73,26.36,25.73,26.00,136433600,25.04 +2010-05-26,26.23,26.61,24.56,25.01,176684100,24.09 +2010-05-25,25.65,26.33,25.38,26.07,98373600,25.11 +2010-05-24,26.85,26.86,26.26,26.27,73711700,25.30 +2010-05-21,26.63,27.11,26.44,26.84,117596300,25.85 +2010-05-20,27.65,27.84,27.04,27.11,87991100,26.11 +2010-05-19,28.52,28.69,27.79,28.24,61746700,27.20 +2010-05-18,28.87,29.00,28.40,28.60,52690600,27.54 +2010-05-17,29.12,29.23,28.45,28.94,46053300,27.75 +2010-05-14,29.20,29.21,28.64,28.93,63334000,27.74 +2010-05-13,29.26,29.73,29.18,29.24,45188800,28.03 +2010-05-12,28.98,29.58,28.92,29.44,47146800,28.22 +2010-05-11,28.68,29.65,28.57,28.88,63789400,27.69 +2010-05-10,29.01,29.48,28.71,28.94,86653300,27.75 +2010-05-07,28.93,28.95,27.32,28.21,173718100,27.05 +2010-05-06,29.59,29.88,27.91,28.98,128613000,27.78 +2010-05-05,29.77,30.09,29.69,29.85,66833800,28.62 +2010-05-04,30.52,30.55,29.75,30.13,82085600,28.89 +2010-05-03,30.67,31.06,30.58,30.86,43989500,29.59 +2010-04-30,31.07,31.08,30.52,30.54,63214800,29.28 +2010-04-29,30.93,31.43,30.67,31.00,52665200,29.72 +2010-04-28,30.92,31.00,30.62,30.91,64557900,29.63 +2010-04-27,30.95,31.25,30.75,30.85,68730900,29.58 +2010-04-26,31.00,31.28,30.86,31.11,63649300,29.83 +2010-04-23,31.12,31.58,30.65,30.96,126766600,29.68 +2010-04-22,31.04,31.53,30.90,31.39,84847600,30.09 +2010-04-21,31.33,31.50,31.23,31.33,55343100,30.04 +2010-04-20,31.22,31.44,31.13,31.36,52199500,30.07 +2010-04-19,30.77,31.25,30.76,31.04,64970300,29.76 +2010-04-16,30.79,30.98,30.60,30.67,88703100,29.40 +2010-04-15,30.82,30.95,30.71,30.87,52745400,29.60 +2010-04-14,30.79,31.00,30.66,30.82,68941200,29.55 +2010-04-13,30.15,30.50,30.13,30.45,41374600,29.19 +2010-04-12,30.25,30.49,30.21,30.32,37068800,29.07 +2010-04-09,29.95,30.41,29.90,30.34,54752500,29.09 +2010-04-08,29.32,29.98,29.30,29.92,63713800,28.68 +2010-04-07,29.16,29.56,29.14,29.35,58318800,28.14 +2010-04-06,29.15,29.58,28.98,29.32,47366800,28.11 +2010-04-05,29.13,29.43,29.03,29.27,34331200,28.06 +2010-04-01,29.35,29.54,28.62,29.16,74768100,27.96 +2010-03-31,29.64,29.72,29.17,29.29,63760000,28.08 +2010-03-30,29.63,29.86,29.50,29.77,34954800,28.54 +2010-03-29,29.71,29.82,29.55,29.59,33336000,28.37 +2010-03-26,30.09,30.20,29.59,29.66,55595500,28.44 +2010-03-25,29.83,30.57,29.80,30.01,73168700,28.77 +2010-03-24,29.72,29.85,29.60,29.65,33987700,28.43 +2010-03-23,29.59,29.90,29.41,29.88,42026600,28.65 +2010-03-22,29.50,29.70,29.39,29.60,37718200,28.38 +2010-03-19,29.76,29.90,29.35,29.59,81332100,28.37 +2010-03-18,29.63,29.72,29.50,29.61,43845200,28.39 +2010-03-17,29.50,29.87,29.40,29.63,50385700,28.41 +2010-03-16,29.42,29.49,29.20,29.37,36723500,28.16 +2010-03-15,29.18,29.37,29.01,29.29,37512000,28.08 +2010-03-12,29.32,29.38,29.04,29.27,31700200,28.06 +2010-03-11,28.89,29.19,28.85,29.18,35349700,27.98 +2010-03-10,28.86,29.11,28.80,28.97,44891400,27.77 +2010-03-09,28.56,29.11,28.55,28.80,50271600,27.61 +2010-03-08,28.52,28.93,28.50,28.63,39414500,27.45 +2010-03-05,28.66,28.68,28.42,28.59,56001800,27.41 +2010-03-04,28.46,28.65,28.27,28.63,42890600,27.45 +2010-03-03,28.51,28.61,28.35,28.46,48442100,27.28 +2010-03-02,29.08,29.30,28.24,28.46,93123900,27.28 +2010-03-01,28.77,29.05,28.53,29.02,43805400,27.82 +2010-02-26,28.65,28.85,28.51,28.67,40370600,27.49 +2010-02-25,28.27,28.65,28.02,28.60,48735300,27.42 +2010-02-24,28.52,28.79,28.38,28.63,43165900,27.45 +2010-02-23,28.68,28.83,28.09,28.33,52266200,27.16 +2010-02-22,28.84,28.94,28.65,28.73,36707100,27.54 +2010-02-19,28.79,28.92,28.69,28.77,44451800,27.58 +2010-02-18,28.59,29.03,28.51,28.97,42856500,27.77 +2010-02-17,28.53,28.65,28.36,28.59,45882900,27.41 +2010-02-16,28.13,28.37,28.02,28.35,51935600,27.18 +2010-02-12,27.81,28.06,27.58,27.93,81117200,26.65 +2010-02-11,27.93,28.40,27.70,28.12,65993700,26.83 +2010-02-10,28.03,28.24,27.84,27.99,48591300,26.71 +2010-02-09,27.97,28.34,27.75,28.01,59195800,26.73 +2010-02-08,28.01,28.08,27.57,27.72,52820600,26.45 +2010-02-05,28.00,28.28,27.57,28.02,80960100,26.74 +2010-02-04,28.38,28.50,27.81,27.84,77850000,26.57 +2010-02-03,28.26,28.79,28.12,28.63,61397900,27.32 +2010-02-02,28.37,28.50,28.14,28.46,54413700,27.16 +2010-02-01,28.39,28.48,27.92,28.41,85931100,27.11 +2010-01-29,29.90,29.92,27.66,28.18,193888500,26.89 +2010-01-28,29.84,29.87,28.89,29.16,117513700,27.83 +2010-01-27,29.35,29.82,29.02,29.67,63949500,28.31 +2010-01-26,29.20,29.85,29.09,29.50,66639900,28.15 +2010-01-25,29.24,29.66,29.10,29.32,63373000,27.98 +2010-01-22,30.00,30.20,28.84,28.96,102004600,27.63 +2010-01-21,30.61,30.72,30.00,30.01,73086700,28.64 +2010-01-20,30.81,30.94,30.31,30.59,54849500,29.19 +2010-01-19,30.75,31.24,30.68,31.10,46575700,29.68 +2010-01-15,31.08,31.24,30.71,30.86,79913200,29.45 +2010-01-14,30.31,31.10,30.26,30.96,63228100,29.54 +2010-01-13,30.26,30.52,30.01,30.35,51863500,28.96 +2010-01-12,30.15,30.40,29.91,30.07,65912100,28.69 +2010-01-11,30.71,30.76,30.12,30.27,68754700,28.89 +2010-01-08,30.28,30.88,30.24,30.66,51197400,29.26 +2010-01-07,30.63,30.70,30.19,30.45,50559700,29.06 +2010-01-06,30.88,31.08,30.52,30.77,58182400,29.36 +2010-01-05,30.85,31.10,30.64,30.96,49749600,29.54 +2010-01-04,30.62,31.10,30.59,30.95,38409100,29.53 +2009-12-31,30.98,30.99,30.48,30.48,31929700,29.09 +2009-12-30,31.15,31.29,30.80,30.96,42006200,29.54 +2009-12-29,31.35,31.50,31.23,31.39,29716200,29.95 +2009-12-28,31.00,31.18,30.89,31.17,25384000,29.74 +2009-12-24,30.88,31.00,30.76,31.00,11083900,29.58 +2009-12-23,30.71,30.95,30.69,30.92,28362700,29.51 +2009-12-22,30.60,30.93,30.54,30.82,36321000,29.41 +2009-12-21,30.40,30.84,30.37,30.52,40129100,29.12 +2009-12-18,29.84,30.45,29.80,30.36,94118000,28.97 +2009-12-17,29.95,29.96,29.57,29.60,43691200,28.25 +2009-12-16,30.07,30.41,30.04,30.10,55737800,28.72 +2009-12-15,29.89,30.21,29.88,30.02,49473200,28.65 +2009-12-14,29.91,30.16,29.90,30.11,34651200,28.73 +2009-12-11,29.97,30.00,29.79,29.85,43744200,28.48 +2009-12-10,29.71,29.96,29.66,29.87,45940200,28.50 +2009-12-09,29.47,29.81,29.25,29.71,44713300,28.35 +2009-12-08,29.52,29.74,29.38,29.57,37402200,28.22 +2009-12-07,29.78,30.08,29.68,29.79,38082700,28.43 +2009-12-04,30.05,30.37,29.83,29.98,58810700,28.61 +2009-12-03,29.84,30.20,29.76,29.83,43095200,28.47 +2009-12-02,29.90,29.99,29.65,29.78,36308600,28.42 +2009-12-01,29.52,30.05,29.41,30.01,49904200,28.64 +2009-11-30,29.15,29.45,29.00,29.41,44172000,28.06 +2009-11-27,29.11,29.39,28.75,29.22,29357900,27.88 +2009-11-25,29.81,29.86,29.58,29.79,32033500,28.43 +2009-11-24,29.95,29.99,29.75,29.91,37341400,28.54 +2009-11-23,29.84,30.01,29.70,29.94,41832700,28.57 +2009-11-20,29.66,29.77,29.43,29.62,42647100,28.26 +2009-11-19,29.99,30.00,29.70,29.78,51967700,28.42 +2009-11-18,30.00,30.14,29.81,30.11,59431200,28.73 +2009-11-17,29.50,30.00,29.47,30.00,75648900,28.63 +2009-11-16,29.61,29.80,29.37,29.54,54129500,28.06 +2009-11-13,29.47,29.79,29.37,29.63,53037600,28.15 +2009-11-12,29.01,29.49,29.00,29.36,55352400,27.89 +2009-11-11,29.08,29.30,29.02,29.12,49693400,27.67 +2009-11-10,28.90,29.28,28.81,29.01,65881100,27.56 +2009-11-09,28.62,29.00,28.53,28.99,57518000,27.54 +2009-11-06,28.38,28.63,28.20,28.52,38908500,27.10 +2009-11-05,28.52,28.74,28.28,28.47,52681700,27.05 +2009-11-04,27.69,28.39,27.62,28.06,63898400,26.66 +2009-11-03,27.64,27.74,27.43,27.53,50294800,26.15 +2009-11-02,27.70,28.05,27.41,27.88,62428900,26.49 +2009-10-30,28.03,28.40,27.66,27.73,73371800,26.34 +2009-10-29,28.07,28.41,27.85,28.22,65225500,26.81 +2009-10-28,28.24,28.77,27.95,28.02,73542400,26.62 +2009-10-27,28.73,28.88,28.44,28.59,69685800,27.16 +2009-10-26,28.13,29.02,28.11,28.68,124149700,27.25 +2009-10-23,29.20,29.35,27.88,28.02,281761000,26.62 +2009-10-22,26.56,26.72,26.13,26.59,61600000,25.26 +2009-10-21,26.46,26.75,26.39,26.58,61672700,25.25 +2009-10-20,26.42,26.51,25.94,26.37,54604700,25.05 +2009-10-19,26.49,26.58,26.25,26.36,48143200,25.04 +2009-10-16,26.45,26.63,26.10,26.50,56500900,25.18 +2009-10-15,25.90,26.71,25.90,26.71,65620100,25.38 +2009-10-14,26.14,26.20,25.82,25.96,45365500,24.66 +2009-10-13,25.59,25.94,25.52,25.81,37749000,24.52 +2009-10-12,25.66,25.89,25.55,25.72,29145800,24.44 +2009-10-09,25.57,25.79,25.46,25.55,39520000,24.27 +2009-10-08,25.44,25.90,25.22,25.67,60521300,24.39 +2009-10-07,24.99,25.18,24.88,25.10,38472700,23.85 +2009-10-06,24.68,25.21,24.66,25.11,48795300,23.86 +2009-10-05,24.98,25.06,24.52,24.64,60804900,23.41 +2009-10-02,24.46,25.09,24.43,24.96,51219700,23.71 +2009-10-01,25.41,25.47,24.80,24.88,75958100,23.64 +2009-09-30,25.76,25.99,25.38,25.72,63533400,24.44 +2009-09-29,25.91,25.96,25.69,25.75,39050300,24.46 +2009-09-28,25.60,26.16,25.60,25.83,44358000,24.54 +2009-09-25,25.69,25.82,25.52,25.55,50158900,24.27 +2009-09-24,25.92,26.11,25.66,25.94,56302900,24.64 +2009-09-23,25.92,26.25,25.64,25.71,60599900,24.43 +2009-09-22,25.40,25.82,25.29,25.77,61376700,24.48 +2009-09-21,25.11,25.37,25.10,25.30,28878700,24.04 +2009-09-18,25.46,25.48,25.10,25.26,68016500,24.00 +2009-09-17,25.06,25.38,25.06,25.30,42428800,24.04 +2009-09-16,25.25,25.35,24.95,25.20,50055800,23.94 +2009-09-15,24.97,25.27,24.86,25.20,44716600,23.94 +2009-09-14,24.65,25.09,24.64,25.00,42806800,23.75 +2009-09-11,24.93,25.17,24.81,24.86,54303500,23.62 +2009-09-10,24.80,25.05,24.65,25.00,46256000,23.75 +2009-09-09,24.74,24.95,24.67,24.78,49900300,23.54 +2009-09-08,24.62,24.84,24.41,24.82,53737100,23.58 +2009-09-04,24.09,24.80,24.08,24.62,44999700,23.39 +2009-09-03,23.91,24.14,23.76,24.11,34120000,22.91 +2009-09-02,23.82,24.14,23.78,23.86,40771300,22.67 +2009-09-01,24.35,24.74,23.90,24.00,62608500,22.80 +2009-08-31,24.57,24.85,24.29,24.65,49592800,23.42 +2009-08-28,25.07,25.49,24.61,24.68,55808000,23.45 +2009-08-27,24.41,24.78,24.30,24.69,45495600,23.46 +2009-08-26,24.59,24.75,24.42,24.55,41079000,23.32 +2009-08-25,24.60,24.82,24.46,24.64,43980300,23.41 +2009-08-24,24.41,24.73,24.28,24.64,54180900,23.41 +2009-08-21,23.93,24.42,23.77,24.41,69011400,23.19 +2009-08-20,23.60,23.87,23.54,23.67,39505900,22.49 +2009-08-19,23.25,23.72,23.25,23.65,41821300,22.47 +2009-08-18,23.29,23.65,23.27,23.58,38878900,22.40 +2009-08-17,23.32,23.60,23.23,23.25,42474400,21.97 +2009-08-14,23.62,23.80,23.51,23.69,46330200,22.38 +2009-08-13,23.63,23.85,23.40,23.62,38954500,22.31 +2009-08-12,23.13,23.90,23.03,23.53,61972300,22.23 +2009-08-11,23.32,23.40,23.05,23.13,33615800,21.85 +2009-08-10,23.46,23.55,23.30,23.42,35261900,22.13 +2009-08-07,23.75,23.82,23.50,23.56,46169700,22.26 +2009-08-06,23.93,23.98,23.27,23.46,59686000,22.16 +2009-08-05,23.84,24.25,23.79,23.81,53310300,22.49 +2009-08-04,23.68,23.79,23.53,23.77,49218300,22.46 +2009-08-03,23.82,23.86,23.50,23.83,46902900,22.51 +2009-07-31,23.77,24.07,23.50,23.52,54258200,22.22 +2009-07-30,24.20,24.43,23.71,23.81,67820000,22.49 +2009-07-29,23.73,23.91,23.34,23.80,73626900,22.48 +2009-07-28,22.99,23.55,22.90,23.47,70288400,22.17 +2009-07-27,23.44,23.45,22.90,23.11,80950000,21.83 +2009-07-24,23.61,23.89,22.81,23.45,215135700,22.15 +2009-07-23,24.93,25.72,24.84,25.56,106060500,24.15 +2009-07-22,24.70,24.90,24.51,24.80,66192500,23.43 +2009-07-21,24.69,24.83,24.37,24.83,52028400,23.46 +2009-07-20,24.44,24.53,24.15,24.53,47798000,23.17 +2009-07-17,24.40,24.45,24.10,24.29,52860100,22.95 +2009-07-16,23.93,24.44,23.86,24.44,64555100,23.09 +2009-07-15,23.75,24.12,23.56,24.12,67238700,22.79 +2009-07-14,23.20,23.22,22.86,23.11,45448700,21.83 +2009-07-13,22.42,23.29,22.14,23.23,67584000,21.95 +2009-07-10,22.19,22.54,22.15,22.39,43229200,21.15 +2009-07-09,22.65,22.81,22.37,22.44,46981200,21.20 +2009-07-08,22.31,22.69,22.00,22.56,73023400,21.31 +2009-07-07,23.08,23.14,22.46,22.53,52842500,21.28 +2009-07-06,23.21,23.28,22.87,23.20,49207700,21.92 +2009-07-02,23.76,24.04,23.21,23.37,65422200,22.08 +2009-07-01,24.05,24.30,23.96,24.04,54908400,22.71 +2009-06-30,23.97,24.24,23.63,23.77,66452400,22.46 +2009-06-29,23.60,24.03,23.55,23.86,62854900,22.54 +2009-06-26,23.57,23.69,23.32,23.35,65126400,22.06 +2009-06-25,23.43,23.92,23.20,23.79,57724300,22.48 +2009-06-24,23.45,23.75,23.36,23.47,54287700,22.17 +2009-06-23,23.38,23.66,23.21,23.34,56752700,22.05 +2009-06-22,23.95,23.95,23.25,23.28,71291600,21.99 +2009-06-19,24.04,24.34,23.75,24.07,115459000,22.74 +2009-06-18,23.62,23.69,23.30,23.50,58852200,22.20 +2009-06-17,23.50,23.82,23.17,23.68,86483100,22.37 +2009-06-16,23.47,24.11,23.44,23.45,105295600,22.15 +2009-06-15,23.23,23.54,23.02,23.42,69089600,22.13 +2009-06-12,22.90,23.38,22.74,23.33,50963500,22.04 +2009-06-11,22.59,23.26,22.57,22.83,65124600,21.57 +2009-06-10,22.17,22.62,22.12,22.55,61297200,21.30 +2009-06-09,22.06,22.32,21.88,22.08,50887700,20.86 +2009-06-08,21.98,22.32,21.63,22.05,49000600,20.83 +2009-06-05,21.96,22.31,21.81,22.14,59579200,20.92 +2009-06-04,21.77,21.90,21.58,21.83,42330000,20.62 +2009-06-03,21.31,21.76,21.29,21.73,56039600,20.53 +2009-06-02,21.36,21.98,21.20,21.40,48935700,20.22 +2009-06-01,21.00,21.50,20.86,21.40,57317100,20.22 +2009-05-29,20.56,20.94,20.30,20.89,46134900,19.74 +2009-05-28,20.32,20.63,20.05,20.45,45480800,19.32 +2009-05-27,20.25,20.60,20.07,20.13,42892900,19.02 +2009-05-26,19.54,20.45,19.45,20.34,44991700,19.22 +2009-05-22,19.93,20.17,19.47,19.75,37318700,18.66 +2009-05-21,20.14,20.23,19.51,19.82,58232800,18.72 +2009-05-20,20.41,20.69,20.22,20.38,47450700,19.25 +2009-05-19,20.51,20.74,20.25,20.31,51368300,19.19 +2009-05-18,20.36,20.60,20.24,20.60,46073800,19.34 +2009-05-15,20.13,20.50,19.98,20.22,61289900,18.98 +2009-05-14,19.83,20.23,19.80,20.06,54539500,18.83 +2009-05-13,19.92,20.00,19.67,19.75,49281700,18.54 +2009-05-12,19.51,20.06,19.47,19.89,71966800,18.67 +2009-05-11,19.20,19.73,19.01,19.32,63762600,18.14 +2009-05-08,19.46,19.64,19.14,19.42,67597600,18.23 +2009-05-07,19.96,19.99,19.14,19.32,68727200,18.14 +2009-05-06,20.06,20.07,19.61,19.79,59639100,18.58 +2009-05-05,20.14,20.24,19.64,19.79,66835500,18.58 +2009-05-04,20.37,20.40,19.98,20.19,54313400,18.95 +2009-05-01,20.19,20.35,19.86,20.24,63224500,19.00 +2009-04-30,20.60,21.10,20.01,20.26,87439900,19.02 +2009-04-29,20.11,20.89,20.06,20.25,79301600,19.01 +2009-04-28,20.25,20.27,19.79,19.93,76685200,18.71 +2009-04-27,20.55,20.82,20.28,20.40,68219600,19.15 +2009-04-24,19.82,21.20,19.50,20.91,168478500,19.63 +2009-04-23,18.92,18.94,18.47,18.92,86116300,17.76 +2009-04-22,18.76,19.19,18.70,18.78,59401000,17.63 +2009-04-21,18.59,19.08,18.57,18.97,60928300,17.81 +2009-04-20,18.89,18.95,18.57,18.61,62937200,17.47 +2009-04-17,19.69,19.69,19.00,19.20,61398500,18.02 +2009-04-16,19.16,19.78,18.99,19.76,67688700,18.55 +2009-04-15,19.21,19.25,18.51,18.83,72725500,17.68 +2009-04-14,19.44,19.55,19.00,19.35,63796300,18.17 +2009-04-13,19.69,19.85,19.37,19.59,44444700,18.39 +2009-04-09,19.45,19.70,19.22,19.67,55759600,18.47 +2009-04-08,18.97,19.62,18.96,19.19,56408900,18.02 +2009-04-07,18.76,19.14,18.63,18.76,65815200,17.61 +2009-04-06,18.54,18.76,18.27,18.76,47476100,17.61 +2009-04-03,19.13,19.15,18.43,18.75,81858400,17.60 +2009-04-02,19.50,19.89,19.00,19.29,99082300,18.11 +2009-04-01,18.23,19.36,18.18,19.31,96438900,18.13 +2009-03-31,17.83,18.79,17.78,18.37,92095500,17.25 +2009-03-30,17.74,17.76,17.27,17.48,49633000,16.41 +2009-03-27,18.54,18.62,18.05,18.13,47670400,17.02 +2009-03-26,18.17,18.88,18.12,18.83,63775100,17.68 +2009-03-25,17.98,18.31,17.52,17.88,73927100,16.79 +2009-03-24,18.04,18.21,17.84,17.93,50044100,16.83 +2009-03-23,17.37,18.59,17.31,18.33,71600000,17.21 +2009-03-20,17.32,17.65,16.88,17.06,81725500,16.02 +2009-03-19,17.37,17.45,16.92,17.14,58994600,16.09 +2009-03-18,17.03,17.22,16.60,16.96,70710700,15.92 +2009-03-17,16.32,16.90,16.26,16.90,62481000,15.87 +2009-03-16,16.82,16.96,16.24,16.25,67028900,15.26 +2009-03-13,16.98,17.05,16.18,16.65,82965800,15.63 +2009-03-12,17.01,17.04,16.48,17.01,93694100,15.97 +2009-03-11,16.63,17.20,16.43,17.11,84522200,16.06 +2009-03-10,15.37,16.62,15.25,16.48,95184200,15.47 +2009-03-09,15.20,15.74,15.10,15.15,66479100,14.22 +2009-03-06,15.35,15.62,14.87,15.28,92821400,14.34 +2009-03-05,15.86,15.88,15.27,15.27,89708500,14.34 +2009-03-04,16.12,16.40,15.89,16.12,69285100,15.13 +2009-03-03,16.03,16.24,15.64,15.88,80476600,14.91 +2009-03-02,15.96,16.25,15.72,15.79,80602100,14.82 +2009-02-27,16.29,16.52,16.10,16.15,93428000,15.16 +2009-02-26,17.05,17.08,16.42,16.42,83219500,15.41 +2009-02-25,17.01,17.24,16.46,16.96,105894600,15.92 +2009-02-24,17.03,17.35,16.36,17.17,122674500,16.12 +2009-02-23,18.02,18.15,17.16,17.21,70803400,16.16 +2009-02-20,17.77,18.19,17.66,18.00,69413800,16.90 +2009-02-19,18.30,18.38,17.81,17.91,49195600,16.81 +2009-02-18,18.22,18.45,18.00,18.12,54946900,17.01 +2009-02-17,18.49,18.50,17.89,18.09,75853300,16.98 +2009-02-13,19.27,19.47,19.04,19.09,47416000,17.80 +2009-02-12,18.97,19.32,18.54,19.26,75323200,17.96 +2009-02-11,18.94,19.49,18.92,19.21,58599000,17.91 +2009-02-10,19.25,19.80,18.70,18.80,83953200,17.53 +2009-02-09,19.64,19.77,19.26,19.44,52196400,18.13 +2009-02-06,19.16,19.93,19.06,19.66,86746000,18.33 +2009-02-05,18.51,19.14,18.25,19.04,75195200,17.75 +2009-02-04,18.54,19.00,18.50,18.63,75618000,17.37 +2009-02-03,17.85,18.61,17.60,18.50,86865100,17.25 +2009-02-02,17.03,18.13,17.00,17.83,88871700,16.62 +2009-01-30,17.74,17.79,17.10,17.10,62370900,15.94 +2009-01-29,17.78,17.96,17.56,17.59,49192800,16.40 +2009-01-28,17.80,18.31,17.76,18.04,64145500,16.82 +2009-01-27,17.78,17.97,17.43,17.66,61695000,16.47 +2009-01-26,17.29,17.81,17.23,17.63,92476500,16.44 +2009-01-23,16.97,17.49,16.75,17.20,117020600,16.04 +2009-01-22,18.05,18.18,17.07,17.11,222436600,15.95 +2009-01-21,18.87,19.45,18.46,19.38,68340900,18.07 +2009-01-20,19.46,19.62,18.37,18.48,89873000,17.23 +2009-01-16,19.63,19.91,19.15,19.71,79634100,18.38 +2009-01-15,19.07,19.30,18.52,19.24,96169800,17.94 +2009-01-14,19.53,19.68,19.01,19.09,80257500,17.80 +2009-01-13,19.52,19.99,19.52,19.82,65843500,18.48 +2009-01-12,19.71,19.79,19.30,19.47,52163500,18.15 +2009-01-09,20.17,20.30,19.41,19.52,49815300,18.20 +2009-01-08,19.63,20.19,19.55,20.12,70229900,18.76 +2009-01-07,20.19,20.29,19.48,19.51,72709900,18.19 +2009-01-06,20.75,21.00,20.61,20.76,58083400,19.36 +2009-01-05,20.20,20.67,20.06,20.52,61475200,19.13 +2009-01-02,19.53,20.40,19.37,20.33,50084000,18.96 +2008-12-31,19.31,19.68,19.27,19.44,46419000,18.13 +2008-12-30,19.01,19.49,19.00,19.34,43224100,18.03 +2008-12-29,19.15,19.21,18.64,18.96,58512800,17.68 +2008-12-26,19.20,19.33,19.09,19.13,23101000,17.84 +2008-12-24,19.26,19.45,19.10,19.17,16880400,17.87 +2008-12-23,19.28,19.57,19.01,19.28,47511400,17.98 +2008-12-22,19.24,19.29,18.89,19.18,58575400,17.88 +2008-12-19,19.42,19.80,19.11,19.12,113530400,17.83 +2008-12-18,19.86,20.02,18.99,19.30,80759200,17.99 +2008-12-17,19.81,20.05,19.50,19.66,78922700,18.33 +2008-12-16,19.21,20.18,19.00,20.11,97688700,18.75 +2008-12-15,19.34,19.44,18.89,19.04,59925900,17.75 +2008-12-12,19.15,19.85,18.70,19.36,78112600,18.05 +2008-12-11,20.11,20.12,19.31,19.45,83564300,18.13 +2008-12-10,20.82,20.96,20.30,20.61,61499000,19.22 +2008-12-09,20.62,21.25,20.46,20.60,80484900,19.21 +2008-12-08,20.35,21.25,20.14,21.01,107225000,19.59 +2008-12-05,18.91,19.98,18.47,19.87,91996200,18.53 +2008-12-04,19.40,19.92,18.79,19.11,78719200,17.82 +2008-12-03,18.65,19.90,18.60,19.87,80961500,18.53 +2008-12-02,18.99,19.31,18.56,19.15,79689800,17.86 +2008-12-01,19.88,19.95,18.60,18.61,79639900,17.35 +2008-11-28,20.23,20.31,20.02,20.22,28650800,18.85 +2008-11-26,19.73,20.68,19.73,20.49,79678300,19.10 +2008-11-25,20.86,20.93,19.55,19.99,92948100,18.64 +2008-11-24,19.89,20.94,19.87,20.69,125289900,19.29 +2008-11-21,18.02,19.70,17.98,19.68,157231900,18.35 +2008-11-20,18.12,18.84,17.50,17.53,139532800,16.34 +2008-11-19,19.63,19.95,18.25,18.29,103010500,17.05 +2008-11-18,19.50,19.66,18.75,19.62,108966500,18.29 +2008-11-17,19.74,20.24,19.15,19.32,97289000,17.89 +2008-11-14,20.56,21.34,19.65,20.06,96624500,18.58 +2008-11-13,20.15,21.25,18.74,21.25,148413700,19.68 +2008-11-12,20.89,21.00,20.28,20.30,90162300,18.80 +2008-11-11,21.29,21.30,20.79,21.20,78014500,19.63 +2008-11-10,21.85,21.97,21.19,21.30,67106800,19.73 +2008-11-07,21.32,21.54,21.00,21.50,71256300,19.91 +2008-11-06,21.87,22.08,20.86,20.88,95509700,19.34 +2008-11-05,23.33,23.34,22.05,22.08,81179700,20.45 +2008-11-04,23.13,23.66,22.87,23.53,72123000,21.79 +2008-11-03,22.48,22.91,22.21,22.62,61923500,20.95 +2008-10-31,22.53,22.91,22.12,22.33,93055200,20.68 +2008-10-30,23.69,23.88,22.39,22.63,95323000,20.96 +2008-10-29,23.13,23.97,22.70,23.00,111701800,21.30 +2008-10-28,21.64,23.21,21.34,23.10,134088800,21.39 +2008-10-27,21.67,21.96,21.02,21.18,117683900,19.61 +2008-10-24,21.06,22.86,20.95,21.96,153919700,20.34 +2008-10-23,21.55,22.59,20.89,22.32,154774100,20.67 +2008-10-22,23.04,23.06,20.90,21.53,150054800,19.94 +2008-10-21,24.30,25.01,23.27,23.36,100385600,21.63 +2008-10-20,24.20,24.75,23.01,24.72,93484300,22.89 +2008-10-17,23.57,25.11,23.31,23.93,133673100,22.16 +2008-10-16,22.94,24.19,21.31,24.19,161147800,22.40 +2008-10-15,23.78,24.25,22.48,22.66,113280200,20.99 +2008-10-14,25.64,25.73,23.60,24.10,165674900,22.32 +2008-10-13,22.86,25.50,22.63,25.50,144935400,23.62 +2008-10-10,21.79,22.35,20.65,21.50,228467500,19.91 +2008-10-09,23.77,23.91,22.07,22.30,131948700,20.65 +2008-10-08,22.90,24.30,22.50,23.01,171598600,21.31 +2008-10-07,24.98,25.21,23.14,23.23,145941200,21.51 +2008-10-06,25.63,25.99,24.14,24.91,146374600,23.07 +2008-10-03,26.37,27.47,26.24,26.32,114289400,24.38 +2008-10-02,26.18,26.53,25.70,26.25,93819800,24.31 +2008-10-01,26.38,26.99,26.28,26.48,88957000,24.52 +2008-09-30,25.77,26.69,25.54,26.69,107192700,24.72 +2008-09-29,26.94,27.66,25.01,25.01,134383100,23.16 +2008-09-26,26.17,27.56,26.14,27.40,100744300,25.38 +2008-09-25,25.82,26.88,25.74,26.61,96203500,24.64 +2008-09-24,25.58,26.09,25.46,25.72,80250300,23.82 +2008-09-23,25.66,26.17,25.34,25.44,92181300,23.56 +2008-09-22,26.22,26.32,25.32,25.40,105207700,23.52 +2008-09-19,26.37,26.40,23.50,25.16,134926100,23.30 +2008-09-18,24.80,25.35,24.01,25.26,132291300,23.39 +2008-09-17,25.73,25.87,24.50,24.57,106972100,22.75 +2008-09-16,26.09,26.49,25.52,25.99,111729700,24.07 +2008-09-15,26.92,27.49,26.73,26.82,82349400,24.84 +2008-09-12,27.14,27.74,26.94,27.62,75628500,25.58 +2008-09-11,26.10,27.46,26.03,27.34,72913300,25.32 +2008-09-10,26.52,26.86,26.25,26.44,75064900,24.49 +2008-09-09,26.20,26.60,26.05,26.10,85735700,24.17 +2008-09-08,26.21,26.33,25.67,26.12,62110800,24.19 +2008-09-05,26.03,26.22,25.63,25.65,82305200,23.75 +2008-09-04,26.74,26.89,26.35,26.35,66141900,24.40 +2008-09-03,27.00,27.18,26.84,26.90,57127700,24.91 +2008-09-02,27.67,27.76,27.06,27.10,66079200,25.10 +2008-08-29,27.68,27.78,27.29,27.29,50735500,25.27 +2008-08-28,27.61,28.01,27.60,27.94,48372600,25.88 +2008-08-27,27.34,27.79,27.13,27.56,33975300,25.52 +2008-08-26,27.58,27.72,27.17,27.27,44774400,25.25 +2008-08-25,27.61,27.84,27.46,27.66,51381300,25.62 +2008-08-22,27.23,27.88,27.22,27.84,47930400,25.78 +2008-08-21,27.10,27.23,26.86,27.18,43614200,25.17 +2008-08-20,27.54,27.58,27.17,27.29,41497200,25.27 +2008-08-19,27.54,27.75,27.27,27.32,40332900,25.30 +2008-08-18,27.78,28.05,27.55,27.69,38078200,25.54 +2008-08-15,27.98,28.15,27.58,27.81,47267400,25.65 +2008-08-14,27.82,28.28,27.56,27.91,49732300,25.74 +2008-08-13,28.07,28.50,27.76,27.91,51165200,25.74 +2008-08-12,27.78,28.36,27.58,28.12,62813000,25.94 +2008-08-11,27.86,28.40,27.66,27.90,68743800,25.74 +2008-08-08,27.35,28.23,27.19,28.13,80814100,25.95 +2008-08-07,26.90,27.75,26.73,27.39,82565800,25.27 +2008-08-06,26.73,27.16,26.38,27.02,95550000,24.92 +2008-08-05,25.64,26.28,25.50,26.21,84297600,24.18 +2008-08-04,25.39,25.55,25.11,25.28,60588300,23.32 +2008-08-01,25.92,25.95,25.07,25.44,82720200,23.47 +2008-07-31,25.85,26.28,25.71,25.72,60461000,23.72 +2008-07-30,26.20,26.49,25.90,26.23,51977700,24.20 +2008-07-29,25.52,26.19,25.40,26.11,66368200,24.08 +2008-07-28,26.06,26.11,25.34,25.50,59707800,23.52 +2008-07-25,25.64,26.22,25.50,26.16,58682300,24.13 +2008-07-24,26.09,26.17,25.44,25.44,81092600,23.47 +2008-07-23,25.86,26.84,25.85,26.43,79408800,24.38 +2008-07-22,25.54,25.94,25.48,25.80,88657200,23.80 +2008-07-21,25.66,26.17,25.53,25.64,77575600,23.65 +2008-07-18,26.36,26.47,25.11,25.86,150277000,23.85 +2008-07-17,27.58,27.91,27.11,27.52,96526100,25.39 +2008-07-16,26.13,27.29,25.92,27.26,82060400,25.15 +2008-07-15,24.93,26.64,24.93,26.15,92719300,24.12 +2008-07-14,25.48,25.81,25.07,25.15,51216200,23.20 +2008-07-11,25.16,25.64,24.87,25.25,69532600,23.29 +2008-07-10,25.20,25.67,24.98,25.45,57830600,23.48 +2008-07-09,25.79,25.85,25.18,25.23,54255800,23.27 +2008-07-08,25.93,26.20,25.51,25.85,65553200,23.84 +2008-07-07,26.11,26.39,25.45,26.03,71527600,24.01 +2008-07-03,25.97,26.10,25.60,25.98,37074500,23.96 +2008-07-02,26.90,27.00,25.88,25.88,84669000,23.87 +2008-07-01,27.27,27.38,26.44,26.87,100327800,24.79 +2008-06-30,27.73,27.98,27.49,27.51,57830500,25.38 +2008-06-27,27.68,27.91,27.46,27.63,73450200,25.49 +2008-06-26,28.03,28.20,27.75,27.75,67049100,25.60 +2008-06-25,27.81,28.67,27.76,28.35,64280200,26.15 +2008-06-24,27.92,28.01,27.51,27.73,65218300,25.58 +2008-06-23,28.30,28.41,27.79,27.97,57145300,25.80 +2008-06-20,28.90,28.92,28.10,28.23,97480400,26.04 +2008-06-19,28.55,29.19,28.33,28.93,62037800,26.69 +2008-06-18,28.55,28.86,28.46,28.46,49677800,26.25 +2008-06-17,29.04,29.12,28.79,28.80,44256700,26.57 +2008-06-16,29.02,29.11,28.64,28.93,74718900,26.69 +2008-06-13,28.63,29.57,28.50,29.07,131969100,26.81 +2008-06-12,27.40,28.55,27.19,28.24,113996300,26.05 +2008-06-11,27.85,27.94,27.11,27.12,59330800,25.02 +2008-06-10,27.36,28.29,27.32,27.89,77419800,25.73 +2008-06-09,27.65,27.91,27.30,27.71,66787100,25.56 +2008-06-06,27.99,28.17,27.49,27.49,78465700,25.36 +2008-06-05,27.72,28.30,27.60,28.30,76063400,26.10 +2008-06-04,27.28,27.64,27.20,27.54,79567400,25.40 +2008-06-03,27.91,28.31,27.27,27.31,86616700,25.19 +2008-06-02,28.24,28.36,27.55,27.80,77028400,25.64 +2008-05-30,28.38,28.70,28.20,28.32,63399200,26.12 +2008-05-29,28.21,28.68,28.14,28.31,47699200,26.11 +2008-05-28,28.56,28.57,28.04,28.18,52318500,25.99 +2008-05-27,28.11,28.50,28.05,28.44,47334500,26.23 +2008-05-23,28.26,28.33,27.95,28.05,48890700,25.87 +2008-05-22,28.28,28.70,28.18,28.47,52203100,26.26 +2008-05-21,28.81,29.05,28.19,28.25,60125100,26.06 +2008-05-20,29.30,29.31,28.63,28.76,75767600,26.53 +2008-05-19,29.87,29.89,29.31,29.46,59615000,27.17 +2008-05-16,30.47,30.48,29.92,29.99,81538200,27.66 +2008-05-15,29.98,30.53,29.94,30.45,53355800,28.09 +2008-05-14,29.89,30.26,29.73,29.93,66730400,27.61 +2008-05-13,30.00,30.13,29.53,29.78,70934700,27.47 +2008-05-12,29.40,30.06,29.35,29.99,64278800,27.56 +2008-05-09,29.21,29.55,28.95,29.39,51621200,27.01 +2008-05-08,29.28,29.39,29.00,29.27,69589900,26.90 +2008-05-07,29.69,30.14,29.08,29.21,88775000,26.85 +2008-05-06,29.00,29.86,28.93,29.70,93582000,27.30 +2008-05-05,29.93,30.23,28.99,29.08,119687700,26.73 +2008-05-02,29.59,29.62,28.86,29.24,66024200,26.87 +2008-05-01,28.50,29.49,28.48,29.40,71699400,27.02 +2008-04-30,28.74,29.21,28.51,28.52,74733600,26.21 +2008-04-29,28.80,28.90,28.45,28.64,84428900,26.32 +2008-04-28,29.80,29.84,28.82,28.99,97473000,26.64 +2008-04-25,30.05,30.39,29.60,29.83,145194900,27.42 +2008-04-24,31.63,32.10,31.16,31.80,115416700,29.23 +2008-04-23,30.45,31.46,30.30,31.45,98351500,28.90 +2008-04-22,30.64,30.70,29.97,30.25,67387500,27.80 +2008-04-21,30.19,30.60,30.12,30.42,54411700,27.96 +2008-04-18,30.01,30.10,29.61,30.00,73658900,27.57 +2008-04-17,29.12,29.34,28.90,29.22,48743300,26.85 +2008-04-16,28.57,29.05,28.38,28.95,54107400,26.61 +2008-04-15,28.12,28.48,28.03,28.25,34310000,25.96 +2008-04-14,28.24,28.31,27.93,28.06,43418100,25.79 +2008-04-11,28.87,29.01,28.21,28.28,54373700,25.99 +2008-04-10,28.83,29.40,28.80,29.11,65591600,26.75 +2008-04-09,28.72,29.04,28.54,28.89,45839300,26.55 +2008-04-08,28.94,29.00,28.54,28.75,44733500,26.42 +2008-04-07,29.55,29.59,29.03,29.16,44428600,26.80 +2008-04-04,29.13,29.26,28.74,29.16,43860800,26.80 +2008-04-03,29.00,29.32,28.80,29.00,38961400,26.65 +2008-04-02,29.57,29.58,29.00,29.16,49499400,26.80 +2008-04-01,28.83,29.54,28.63,29.50,65796200,27.11 +2008-03-31,27.88,28.59,27.84,28.38,46780600,26.08 +2008-03-28,28.23,28.43,27.83,27.91,49244000,25.65 +2008-03-27,28.48,28.49,28.00,28.05,47894400,25.78 +2008-03-26,29.03,29.07,28.38,28.56,45868100,26.25 +2008-03-25,29.33,29.37,28.94,29.14,49149000,26.78 +2008-03-24,29.33,29.40,29.06,29.17,48294700,26.81 +2008-03-20,28.74,29.22,28.59,29.18,60170200,26.82 +2008-03-19,29.38,29.59,28.62,28.62,61442100,26.30 +2008-03-18,28.67,29.48,28.67,29.42,83695300,27.04 +2008-03-17,27.30,28.73,27.28,28.30,84490100,26.01 +2008-03-14,28.72,29.01,27.64,27.96,105214900,25.70 +2008-03-13,28.54,28.99,28.16,28.62,84552200,26.30 +2008-03-12,29.43,29.49,28.54,28.63,75993800,26.31 +2008-03-11,28.40,29.34,28.38,29.28,98740700,26.91 +2008-03-10,27.83,28.26,27.75,28.05,72175100,25.78 +2008-03-07,27.34,28.07,27.32,27.87,77597600,25.61 +2008-03-06,28.06,28.17,27.50,27.57,91127700,25.34 +2008-03-05,27.75,28.41,27.70,28.12,106489800,25.84 +2008-03-04,27.02,27.63,26.96,27.59,86925600,25.36 +2008-03-03,27.24,27.39,26.87,26.99,76544300,24.80 +2008-02-29,27.69,27.83,27.02,27.20,117411400,25.00 +2008-02-28,28.02,28.27,27.80,27.93,83002900,25.67 +2008-02-27,28.19,28.68,28.10,28.26,75199500,25.97 +2008-02-26,27.74,28.86,27.67,28.38,108923500,26.08 +2008-02-25,27.65,28.24,27.48,27.84,109974300,25.59 +2008-02-22,28.24,28.39,27.20,27.68,125705400,25.44 +2008-02-21,28.62,28.96,27.96,28.10,98776500,25.83 +2008-02-20,28.15,28.26,27.92,28.22,93056200,25.94 +2008-02-19,28.80,28.84,28.07,28.17,68261200,25.89 +2008-02-15,28.31,28.64,28.25,28.42,68166100,26.02 +2008-02-14,28.88,29.04,28.46,28.50,68191600,26.09 +2008-02-13,28.62,29.05,28.53,28.96,88986200,26.51 +2008-02-12,28.43,28.62,28.11,28.34,84365900,25.94 +2008-02-11,28.52,28.61,27.91,28.21,156814100,25.83 +2008-02-08,28.29,29.08,28.24,28.56,124872000,26.15 +2008-02-07,28.34,28.78,27.90,28.12,164964900,25.74 +2008-02-06,29.28,29.35,28.29,28.52,138315600,26.11 +2008-02-05,29.91,29.94,28.89,29.07,137534100,26.61 +2008-02-04,30.49,30.72,30.11,30.19,119998600,27.64 +2008-02-01,31.06,33.25,30.25,30.45,291138900,27.88 +2008-01-31,31.91,32.74,31.72,32.60,103642200,29.84 +2008-01-30,32.56,32.80,32.05,32.20,106432600,29.48 +2008-01-29,32.85,32.89,32.35,32.60,68023000,29.84 +2008-01-28,33.02,33.10,32.42,32.72,81019000,29.95 +2008-01-25,34.90,35.00,32.87,32.94,196992300,30.16 +2008-01-24,32.35,33.36,32.12,33.25,155640400,30.44 +2008-01-23,31.48,32.05,31.04,31.93,137597400,29.23 +2008-01-22,31.54,32.53,31.50,31.96,108521400,29.26 +2008-01-18,33.16,34.00,32.97,33.01,117062000,30.22 +2008-01-17,33.54,33.80,32.97,33.11,94247800,30.31 +2008-01-16,33.42,33.65,32.51,33.23,120778500,30.42 +2008-01-15,34.03,34.38,34.00,34.00,61606200,31.13 +2008-01-14,34.46,34.57,34.08,34.39,52792200,31.48 +2008-01-11,34.14,34.24,33.72,33.91,55187900,31.04 +2008-01-10,34.35,34.50,33.78,34.33,72446000,31.43 +2008-01-09,33.36,34.54,33.35,34.44,74305500,31.53 +2008-01-08,34.71,34.71,33.40,33.45,79148300,30.62 +2008-01-07,34.55,34.80,34.25,34.61,80164300,31.68 +2008-01-04,35.19,35.20,34.09,34.38,72090800,31.47 +2008-01-03,35.22,35.65,34.86,35.37,49599600,32.38 +2008-01-02,35.79,35.96,35.00,35.22,63004200,32.24 +2007-12-31,35.90,35.99,35.52,35.60,35229700,32.59 +2007-12-28,36.10,36.23,35.67,36.12,33447200,33.07 +2007-12-27,36.35,36.55,35.94,35.97,33311100,32.93 +2007-12-26,36.41,36.64,36.26,36.61,30252400,33.52 +2007-12-24,36.13,36.72,36.05,36.58,29622600,33.49 +2007-12-21,35.90,36.06,35.75,36.06,83240500,33.01 +2007-12-20,35.29,35.79,35.08,35.52,59345000,32.52 +2007-12-19,34.69,35.14,34.38,34.79,58469100,31.85 +2007-12-18,34.64,35.00,34.21,34.74,52791800,31.80 +2007-12-17,35.03,35.13,34.36,34.39,58121200,31.48 +2007-12-14,35.05,35.84,35.01,35.31,71126200,32.33 +2007-12-13,34.48,35.45,34.28,35.22,73913200,32.24 +2007-12-12,34.61,35.09,33.93,34.47,63345400,31.56 +2007-12-11,34.73,34.99,33.93,34.10,55070700,31.22 +2007-12-10,34.64,34.95,34.47,34.76,36083500,31.82 +2007-12-07,34.61,34.70,34.22,34.53,40771000,31.61 +2007-12-06,34.26,34.61,33.87,34.55,49209700,31.63 +2007-12-05,33.14,34.52,33.03,34.15,84894700,31.26 +2007-12-04,32.74,33.24,32.63,32.77,54801500,30.00 +2007-12-03,33.50,33.64,32.68,32.92,61770600,30.14 +2007-11-30,33.92,34.12,33.19,33.60,71027800,30.76 +2007-11-29,33.58,33.93,33.31,33.59,53633600,30.75 +2007-11-28,33.38,33.89,32.90,33.70,88585000,30.85 +2007-11-27,33.27,33.60,32.68,33.06,84178400,30.27 +2007-11-26,34.09,34.37,32.93,32.97,80335000,30.18 +2007-11-23,34.36,34.44,33.71,34.11,33467200,31.23 +2007-11-21,34.40,34.73,34.18,34.23,89518700,31.34 +2007-11-20,34.23,34.97,34.10,34.58,100009400,31.66 +2007-11-19,33.96,34.24,33.87,33.96,63000300,31.09 +2007-11-16,33.86,34.26,33.71,34.09,71113800,31.21 +2007-11-15,33.76,34.10,33.55,33.76,63111200,30.91 +2007-11-14,34.62,34.75,33.75,33.93,83840100,31.06 +2007-11-13,33.54,34.67,33.38,34.46,104261100,31.55 +2007-11-12,33.32,33.71,33.02,33.38,84719000,30.46 +2007-11-09,34.18,34.54,33.65,33.73,125111400,30.78 +2007-11-08,35.60,35.90,34.40,34.74,133742400,31.70 +2007-11-07,36.04,36.16,35.45,35.52,74873600,32.41 +2007-11-06,36.59,36.66,35.87,36.41,100966700,33.22 +2007-11-05,36.76,37.10,36.63,36.73,75485400,33.52 +2007-11-02,37.22,37.50,36.42,37.06,96389800,33.82 +2007-11-01,36.53,37.49,36.36,37.06,152078800,33.82 +2007-10-31,35.52,37.00,35.51,36.81,185635800,33.59 +2007-10-30,34.37,35.59,34.35,35.57,107297300,32.46 +2007-10-29,34.85,35.29,34.45,34.57,114655600,31.54 +2007-10-26,36.01,36.03,34.56,35.03,287270900,31.96 +2007-10-25,31.57,32.22,31.49,31.99,169588700,29.19 +2007-10-24,30.85,31.30,30.50,31.25,77979200,28.51 +2007-10-23,30.71,31.12,30.71,30.90,49956200,28.20 +2007-10-22,30.12,30.70,30.12,30.51,58785100,27.84 +2007-10-19,31.09,31.09,30.11,30.17,75200200,27.53 +2007-10-18,31.22,31.23,30.63,31.16,49208600,28.43 +2007-10-17,30.75,31.23,30.65,31.08,86092400,28.36 +2007-10-16,30.24,30.58,30.23,30.32,56286200,27.67 +2007-10-15,30.10,30.33,30.00,30.04,47150500,27.41 +2007-10-12,30.03,30.40,29.95,30.17,31121100,27.53 +2007-10-11,30.30,30.63,29.79,29.91,50788400,27.29 +2007-10-10,30.04,30.37,30.03,30.23,32251500,27.58 +2007-10-09,30.03,30.39,30.00,30.10,63603100,27.47 +2007-10-08,29.66,29.85,29.60,29.84,30265400,27.23 +2007-10-05,29.89,29.99,29.73,29.84,45012300,27.23 +2007-10-04,29.56,29.77,29.44,29.71,37868000,27.11 +2007-10-03,29.71,29.85,29.29,29.45,37633900,26.87 +2007-10-02,29.70,29.85,29.57,29.70,33700900,27.10 +2007-10-01,29.46,29.79,29.41,29.77,43875100,27.16 +2007-09-28,29.49,29.69,29.23,29.46,45819100,26.88 +2007-09-27,29.70,29.72,29.44,29.49,43407100,26.91 +2007-09-26,29.68,29.85,29.48,29.50,60337000,26.92 +2007-09-25,29.14,29.56,29.11,29.56,75621000,26.97 +2007-09-24,28.81,29.61,28.80,29.08,104459800,26.53 +2007-09-21,28.69,28.81,28.44,28.65,135636100,26.14 +2007-09-20,28.48,28.58,28.34,28.42,67168900,25.93 +2007-09-19,28.87,28.91,28.30,28.67,94242200,26.16 +2007-09-18,28.70,28.97,28.27,28.93,77462400,26.40 +2007-09-17,28.79,28.88,28.62,28.73,39536500,26.22 +2007-09-14,28.98,29.11,28.88,29.04,33496600,26.50 +2007-09-13,29.12,29.26,28.96,29.16,35288600,26.61 +2007-09-12,28.81,29.17,28.80,28.93,42364700,26.40 +2007-09-11,28.63,28.95,28.58,28.93,34380800,26.40 +2007-09-10,28.67,28.75,28.41,28.48,37247600,25.99 +2007-09-07,28.62,28.83,28.32,28.44,52160900,25.95 +2007-09-06,28.56,29.01,28.55,28.91,45430800,26.38 +2007-09-05,28.65,28.73,28.42,28.48,47669800,25.99 +2007-09-04,28.50,29.10,28.48,28.81,45689600,26.29 +2007-08-31,28.70,28.92,28.36,28.73,42511900,26.22 +2007-08-30,28.42,28.93,28.32,28.45,33690700,25.96 +2007-08-29,28.13,28.61,27.82,28.59,45753700,26.09 +2007-08-28,28.30,28.49,27.91,27.93,43924400,25.49 +2007-08-27,28.61,28.77,28.40,28.49,32789500,26.00 +2007-08-24,28.21,28.84,28.07,28.81,45158900,26.29 +2007-08-23,28.28,28.33,28.10,28.30,33886600,25.82 +2007-08-22,28.27,28.32,28.01,28.22,44763500,25.75 +2007-08-21,28.10,28.32,27.87,28.07,50786200,25.61 +2007-08-20,28.18,28.49,28.08,28.26,49952000,25.79 +2007-08-17,28.09,28.25,27.82,28.25,76747700,25.78 +2007-08-16,27.88,28.35,27.51,27.81,81447400,25.38 +2007-08-15,28.24,28.99,28.05,28.10,48117700,25.64 +2007-08-14,28.77,28.89,28.20,28.27,42944100,25.80 +2007-08-13,28.94,28.99,28.44,28.63,55492300,26.03 +2007-08-10,28.90,29.05,28.26,28.71,76576200,26.11 +2007-08-09,29.64,30.10,28.92,29.30,72964500,26.64 +2007-08-08,29.72,30.01,29.21,30.00,52898600,27.28 +2007-08-07,29.33,29.79,29.05,29.55,49163000,26.87 +2007-08-06,29.05,29.54,28.75,29.54,59530500,26.86 +2007-08-03,29.45,29.78,28.90,28.96,61535500,26.33 +2007-08-02,29.19,29.79,29.02,29.52,47938300,26.84 +2007-08-01,28.95,29.55,28.82,29.30,80006300,26.64 +2007-07-31,29.71,29.72,28.98,28.99,66554000,26.36 +2007-07-30,29.41,29.49,28.95,29.40,67499600,26.73 +2007-07-27,29.93,30.00,29.36,29.39,69214600,26.72 +2007-07-26,30.24,30.53,29.51,29.98,87025300,27.26 +2007-07-25,30.99,31.30,30.37,30.71,54950100,27.92 +2007-07-24,31.01,31.48,30.71,30.80,59729300,28.01 +2007-07-23,31.36,31.52,31.12,31.19,48910600,28.36 +2007-07-20,31.15,31.20,30.79,31.16,98292600,28.33 +2007-07-19,31.05,31.84,30.93,31.51,121159300,28.65 +2007-07-18,30.51,30.97,30.50,30.92,64414400,28.12 +2007-07-17,30.02,30.88,30.01,30.78,77539600,27.99 +2007-07-16,29.76,30.24,29.72,30.03,48023200,27.31 +2007-07-13,29.94,30.02,29.66,29.82,42173000,27.11 +2007-07-12,29.56,30.11,29.44,30.07,54302400,27.34 +2007-07-11,29.24,29.65,29.21,29.49,48017000,26.81 +2007-07-10,29.70,29.99,29.18,29.33,66013500,26.67 +2007-07-09,29.86,29.95,29.81,29.87,33831400,27.16 +2007-07-06,29.91,30.04,29.66,29.97,57541000,27.25 +2007-07-05,30.05,30.22,29.83,29.99,47838500,27.27 +2007-07-03,29.79,30.22,29.78,30.02,35202600,27.30 +2007-07-02,29.67,29.80,29.49,29.74,47316000,27.04 +2007-06-29,29.87,29.93,29.04,29.47,71193900,26.80 +2007-06-28,29.86,29.97,29.68,29.83,46055200,27.12 +2007-06-27,29.36,29.95,29.36,29.87,53468600,27.16 +2007-06-26,29.55,29.80,29.50,29.52,48340300,26.84 +2007-06-25,29.47,29.77,29.38,29.49,53905800,26.81 +2007-06-22,30.00,30.10,29.45,29.49,86219900,26.81 +2007-06-21,29.98,30.30,29.91,30.22,56564800,27.48 +2007-06-20,30.44,30.51,29.96,30.01,46861600,27.29 +2007-06-19,30.48,30.66,30.38,30.46,46802600,27.70 +2007-06-18,30.69,30.72,30.42,30.51,45412600,27.74 +2007-06-15,30.86,30.88,30.43,30.49,100933000,27.72 +2007-06-14,30.35,30.71,30.30,30.52,59065700,27.75 +2007-06-13,29.97,30.41,29.85,30.39,64435600,27.63 +2007-06-12,29.96,30.24,29.77,29.85,56981800,27.14 +2007-06-11,29.94,30.25,29.93,30.02,48467400,27.30 +2007-06-08,29.58,30.06,29.41,30.05,61346200,27.32 +2007-06-07,30.02,30.29,29.59,29.62,71971400,26.93 +2007-06-06,30.37,30.53,30.25,30.29,38217500,27.54 +2007-06-05,30.62,30.63,30.33,30.58,44265000,27.81 +2007-06-04,30.42,30.76,30.40,30.72,41434500,27.93 +2007-06-01,30.79,30.90,30.55,30.59,39469400,27.81 +2007-05-31,31.12,31.16,30.61,30.69,85290500,27.91 +2007-05-30,30.55,31.13,30.51,31.11,57376800,28.29 +2007-05-29,30.49,30.83,30.39,30.79,42373100,28.00 +2007-05-25,30.28,30.66,30.18,30.48,47726500,27.71 +2007-05-24,30.54,30.80,29.96,30.17,64046400,27.43 +2007-05-23,30.84,30.84,30.57,30.58,46322500,27.81 +2007-05-22,30.90,30.93,30.66,30.69,39999500,27.91 +2007-05-21,30.73,31.16,30.73,31.05,41836400,28.23 +2007-05-18,30.97,30.99,30.58,30.83,58453000,28.03 +2007-05-17,31.03,31.14,30.96,30.98,41045600,28.17 +2007-05-16,31.00,31.09,30.81,31.07,45833600,28.25 +2007-05-15,30.90,31.09,30.84,30.90,75013900,28.10 +2007-05-14,30.84,30.99,30.81,30.97,70188500,28.07 +2007-05-11,30.57,30.98,30.55,30.89,43425300,28.00 +2007-05-10,30.68,30.93,30.53,30.58,55398600,27.72 +2007-05-09,30.70,30.93,30.57,30.78,51735000,27.90 +2007-05-08,30.68,30.94,30.58,30.75,60551700,27.87 +2007-05-07,30.52,30.76,30.48,30.71,59889100,27.83 +2007-05-04,30.68,30.70,30.29,30.56,104385900,27.70 +2007-05-03,30.60,31.00,30.53,30.97,82036800,28.07 +2007-05-02,30.39,30.69,30.30,30.61,80686700,27.74 +2007-05-01,29.94,30.42,29.90,30.40,73539300,27.55 +2007-04-30,30.13,30.37,29.94,29.94,67788800,27.14 +2007-04-27,30.17,30.74,30.00,30.12,128298800,27.30 +2007-04-26,29.09,29.35,28.91,29.10,68760300,26.37 +2007-04-25,28.86,29.00,28.69,28.99,39475000,26.27 +2007-04-24,28.79,28.96,28.59,28.79,34236700,26.09 +2007-04-23,28.96,28.99,28.67,28.78,41739100,26.08 +2007-04-20,28.98,29.10,28.70,29.02,60311500,26.30 +2007-04-19,28.34,28.89,28.26,28.69,43648800,26.00 +2007-04-18,28.61,28.67,28.36,28.60,41778400,25.92 +2007-04-17,28.63,28.89,28.56,28.85,33170200,26.15 +2007-04-16,28.60,28.75,28.21,28.73,30740100,26.04 +2007-04-13,28.43,28.70,28.10,28.61,36002900,25.93 +2007-04-12,28.06,28.62,28.04,28.54,43762100,25.87 +2007-04-11,28.30,28.57,27.99,28.11,44050200,25.48 +2007-04-10,28.50,28.64,28.22,28.40,38643100,25.74 +2007-04-09,28.58,28.72,28.39,28.57,31384600,25.89 +2007-04-05,28.32,28.65,28.30,28.55,30131200,25.88 +2007-04-04,28.01,28.78,27.90,28.50,63244200,25.83 +2007-04-03,27.86,28.06,27.75,27.87,39821300,25.26 +2007-04-02,27.89,27.93,27.56,27.74,41977600,25.14 +2007-03-30,27.75,27.95,27.50,27.87,47061000,25.26 +2007-03-29,27.84,27.85,27.49,27.75,42629900,25.15 +2007-03-28,27.58,28.00,27.40,27.64,46947000,25.05 +2007-03-27,28.04,28.16,27.65,27.72,58979800,25.12 +2007-03-26,27.94,28.22,27.70,28.22,47491500,25.58 +2007-03-23,28.22,28.27,27.80,28.02,50519800,25.40 +2007-03-22,28.52,28.55,28.01,28.27,47934900,25.62 +2007-03-21,27.90,28.52,27.56,28.52,72808200,25.85 +2007-03-20,27.93,28.16,27.76,27.84,47902400,25.23 +2007-03-19,27.34,27.83,27.20,27.83,49412000,25.22 +2007-03-16,27.35,27.48,27.20,27.33,65055300,24.77 +2007-03-15,27.32,27.47,27.20,27.28,51757100,24.73 +2007-03-14,26.82,27.40,26.73,27.40,75730300,24.83 +2007-03-13,27.25,27.40,26.71,26.72,75169500,24.22 +2007-03-12,27.18,27.48,27.13,27.44,36516400,24.87 +2007-03-09,27.42,27.48,27.03,27.29,80125000,24.73 +2007-03-08,27.72,27.85,26.60,27.32,72175200,24.76 +2007-03-07,27.76,27.90,27.55,27.61,52044700,25.02 +2007-03-06,27.80,27.94,27.65,27.83,49361800,25.22 +2007-03-05,27.49,27.91,27.41,27.55,56454300,24.97 +2007-03-02,28.02,28.16,27.76,27.76,63254700,25.16 +2007-03-01,27.82,28.33,27.73,28.09,80175700,25.46 +2007-02-28,27.95,28.25,27.92,28.17,86333300,25.53 +2007-02-27,28.71,28.97,27.79,27.87,87143300,25.26 +2007-02-26,28.96,29.09,28.82,29.07,63481900,26.35 +2007-02-23,29.22,29.28,28.89,28.90,63787100,26.19 +2007-02-22,29.31,29.54,29.16,29.39,57754400,26.64 +2007-02-21,28.75,29.39,28.74,29.35,68604900,26.60 +2007-02-20,28.63,28.86,28.47,28.83,53978200,26.13 +2007-02-16,28.91,28.94,28.65,28.74,109340300,26.05 +2007-02-15,29.58,29.65,29.22,29.46,63858100,26.70 +2007-02-14,29.17,29.69,29.15,29.40,55588600,26.65 +2007-02-13,29.04,29.20,28.96,29.01,50348100,26.29 +2007-02-12,28.89,29.09,28.83,28.94,52774400,26.14 +2007-02-09,29.35,29.40,28.93,28.98,69823100,26.18 +2007-02-08,29.24,29.80,29.20,29.26,48749000,26.43 +2007-02-07,29.64,29.70,29.25,29.37,65145500,26.53 +2007-02-06,29.59,29.75,29.22,29.51,79281100,26.65 +2007-02-05,29.97,30.02,29.41,29.61,99102100,26.74 +2007-02-02,30.82,30.84,30.13,30.19,60401700,27.27 +2007-02-01,30.84,30.94,30.37,30.56,55355800,27.60 +2007-01-31,30.41,31.10,30.35,30.86,73968400,27.87 +2007-01-30,30.57,30.64,30.14,30.48,61900400,27.53 +2007-01-29,30.65,30.78,30.34,30.53,57605900,27.58 +2007-01-26,31.22,31.23,30.60,30.60,96103700,27.64 +2007-01-25,31.08,31.48,30.45,30.45,97378700,27.50 +2007-01-24,30.78,31.30,30.65,31.09,58527800,28.08 +2007-01-23,30.63,30.96,30.52,30.74,49171200,27.76 +2007-01-22,31.06,31.12,30.51,30.72,56143900,27.75 +2007-01-19,30.73,31.11,30.69,31.11,75826900,28.10 +2007-01-18,31.15,31.37,30.80,31.00,56364300,28.00 +2007-01-17,31.26,31.44,31.01,31.10,58519600,28.09 +2007-01-16,31.26,31.45,31.03,31.16,62379600,28.14 +2007-01-12,30.65,31.39,30.64,31.21,103972500,28.19 +2007-01-11,29.76,30.75,29.65,30.70,99464300,27.73 +2007-01-10,29.80,29.89,29.43,29.66,55017400,26.79 +2007-01-09,30.00,30.18,29.73,29.96,44636600,27.06 +2007-01-08,29.65,30.10,29.53,29.93,50220200,27.03 +2007-01-05,29.63,29.75,29.45,29.64,44607200,26.77 +2007-01-04,29.70,29.97,29.44,29.81,45774500,26.92 +2007-01-03,29.91,30.25,29.40,29.86,76935100,26.97 +2006-12-29,29.86,30.15,29.83,29.86,41739800,26.97 +2006-12-28,29.86,30.03,29.81,29.98,26690600,27.08 +2006-12-27,29.99,30.13,29.91,30.02,31248400,27.11 +2006-12-26,29.53,30.00,29.40,29.99,37098300,27.09 +2006-12-22,29.83,29.86,29.62,29.64,37971700,26.77 +2006-12-21,30.13,30.14,29.89,29.98,32270500,27.08 +2006-12-20,29.99,30.24,29.97,30.09,31202100,27.18 +2006-12-19,29.71,30.17,29.53,29.99,53822100,27.09 +2006-12-18,30.19,30.26,29.78,29.89,56986800,27.00 +2006-12-15,30.14,30.23,30.03,30.19,102783700,27.27 +2006-12-14,29.54,30.08,29.52,30.07,85866500,27.16 +2006-12-13,29.60,29.60,29.32,29.55,46002500,26.69 +2006-12-12,29.56,29.63,29.22,29.43,68529400,26.58 +2006-12-11,29.19,29.75,29.11,29.54,107712000,26.68 +2006-12-08,28.82,29.40,28.80,29.40,108854900,26.55 +2006-12-07,28.96,29.07,28.81,28.85,46831100,26.06 +2006-12-06,29.10,29.13,28.87,28.99,48564100,26.18 +2006-12-05,29.36,29.40,29.03,29.13,45606000,26.31 +2006-12-04,29.23,29.52,29.17,29.33,55123400,26.49 +2006-12-01,29.23,29.30,28.90,29.12,72257000,26.30 +2006-11-30,29.42,29.57,29.33,29.36,53297400,26.52 +2006-11-29,29.44,29.78,29.43,29.57,58775100,26.71 +2006-11-28,29.34,29.42,29.13,29.39,52602300,26.55 +2006-11-27,29.69,29.74,29.33,29.48,72722100,26.63 +2006-11-24,29.66,29.84,29.64,29.76,20456700,26.88 +2006-11-22,29.97,30.00,29.82,29.92,43907200,27.02 +2006-11-21,29.91,30.00,29.79,29.92,66446600,27.02 +2006-11-20,29.52,30.00,29.50,29.89,85703800,27.00 +2006-11-17,29.31,29.54,29.28,29.40,49356700,26.55 +2006-11-16,29.14,29.64,29.13,29.47,64328500,26.62 +2006-11-15,29.13,29.36,29.11,29.12,63943200,26.30 +2006-11-14,29.28,29.42,29.07,29.23,63012500,26.40 +2006-11-13,29.19,29.46,29.16,29.35,47271800,26.42 +2006-11-10,29.17,29.29,29.15,29.24,37855100,26.32 +2006-11-09,29.11,29.40,29.00,29.26,89407500,26.34 +2006-11-08,28.78,29.23,28.66,28.98,77403300,26.09 +2006-11-07,28.86,29.07,28.80,28.95,56511200,26.06 +2006-11-06,28.77,29.05,28.76,28.84,60446200,25.96 +2006-11-03,28.85,28.93,28.61,28.73,41124500,25.86 +2006-11-02,28.71,28.86,28.58,28.77,58674400,25.90 +2006-11-01,28.78,28.99,28.70,28.81,75895900,25.93 +2006-10-31,28.66,28.85,28.56,28.71,61861700,25.84 +2006-10-30,28.35,28.84,28.32,28.53,47296800,25.68 +2006-10-27,28.49,28.79,28.25,28.34,89060100,25.51 +2006-10-26,28.33,28.41,28.04,28.35,69964200,25.52 +2006-10-25,28.28,28.46,28.14,28.31,40717100,25.48 +2006-10-24,28.43,28.43,28.13,28.28,61409600,25.46 +2006-10-23,28.30,28.69,28.18,28.45,48525000,25.61 +2006-10-20,28.48,28.49,28.17,28.43,48887800,25.59 +2006-10-19,28.35,28.45,28.12,28.29,44730800,25.46 +2006-10-18,28.50,28.70,28.26,28.52,40630800,25.67 +2006-10-17,28.24,28.51,28.17,28.44,40122600,25.60 +2006-10-16,28.48,28.60,28.33,28.45,49744800,25.61 +2006-10-13,28.34,28.69,28.31,28.37,129751900,25.54 +2006-10-12,27.58,28.29,27.54,28.22,120174900,25.40 +2006-10-11,27.46,27.67,27.42,27.54,37219600,24.79 +2006-10-10,27.69,27.75,27.44,27.69,34598500,24.92 +2006-10-09,27.80,27.93,27.62,27.72,33366300,24.95 +2006-10-06,27.76,28.00,27.65,27.87,36452200,25.09 +2006-10-05,27.92,28.11,27.78,27.92,81967200,25.13 +2006-10-04,27.39,27.96,27.37,27.94,82191200,25.15 +2006-10-03,27.37,27.48,27.21,27.37,39386200,24.64 +2006-10-02,27.32,27.49,27.15,27.36,52908100,24.63 +2006-09-29,27.35,27.42,27.21,27.35,34283500,24.62 +2006-09-28,27.47,27.52,27.26,27.40,44179700,24.66 +2006-09-27,27.18,27.47,27.12,27.44,66233900,24.70 +2006-09-26,26.91,27.32,26.88,27.20,54766500,24.48 +2006-09-25,26.81,27.19,26.79,26.95,67903900,24.26 +2006-09-22,26.83,26.85,26.48,26.66,47712500,24.00 +2006-09-21,27.24,27.25,26.85,26.90,58495100,24.21 +2006-09-20,27.01,27.23,26.99,27.18,71676400,24.47 +2006-09-19,26.74,26.94,26.72,26.86,43039100,24.18 +2006-09-18,26.74,27.04,26.67,26.79,49135000,24.11 +2006-09-15,26.58,26.94,26.49,26.85,126057700,24.17 +2006-09-14,25.99,26.50,25.98,26.33,74324500,23.70 +2006-09-13,25.82,26.10,25.82,25.98,37706700,23.39 +2006-09-12,25.90,25.98,25.72,25.93,52248800,23.34 +2006-09-11,25.43,25.95,25.42,25.91,55608200,23.32 +2006-09-08,25.53,25.79,25.46,25.60,36866800,23.04 +2006-09-07,25.48,25.70,25.39,25.43,51266900,22.89 +2006-09-06,25.51,25.72,25.51,25.61,50160400,23.05 +2006-09-05,25.69,25.96,25.56,25.61,44222400,23.05 +2006-09-01,25.89,25.97,25.64,25.84,31594600,23.26 +2006-08-31,25.87,25.98,25.68,25.70,26380500,23.13 +2006-08-30,25.85,25.89,25.64,25.80,30283100,23.22 +2006-08-29,25.92,25.98,25.63,25.84,42711200,23.26 +2006-08-28,25.84,26.00,25.69,25.95,34190900,23.36 +2006-08-25,25.71,26.00,25.69,25.85,33115900,23.27 +2006-08-24,25.82,25.86,25.50,25.74,35933300,23.17 +2006-08-23,25.65,25.95,25.52,25.67,44648500,23.11 +2006-08-22,26.01,26.25,25.62,25.62,89312400,23.06 +2006-08-21,25.66,26.13,25.56,26.12,88398300,23.51 +2006-08-18,25.05,25.80,24.98,25.79,128414800,23.21 +2006-08-17,24.70,24.75,24.61,24.70,45674800,22.23 +2006-08-16,24.61,24.73,24.47,24.70,52373600,22.23 +2006-08-15,24.55,24.65,24.44,24.62,48994500,22.16 +2006-08-14,24.52,24.60,24.35,24.53,47831900,22.00 +2006-08-11,24.43,24.45,24.20,24.43,30255500,21.91 +2006-08-10,24.37,24.60,24.34,24.46,31753400,21.94 +2006-08-09,24.49,24.64,24.34,24.44,44405700,21.92 +2006-08-08,24.39,24.52,24.20,24.34,58171300,21.83 +2006-08-07,24.28,24.48,24.19,24.22,36862400,21.72 +2006-08-04,24.40,24.49,24.15,24.29,45690400,21.78 +2006-08-03,24.19,24.48,24.15,24.21,43155300,21.71 +2006-08-02,24.12,24.40,24.03,24.30,46462000,21.79 +2006-08-01,24.02,24.20,23.85,23.99,49168700,21.52 +2006-07-31,24.07,24.42,24.01,24.06,40254400,21.58 +2006-07-28,24.08,24.28,24.06,24.25,51705800,21.75 +2006-07-27,24.58,24.60,23.77,23.87,85386800,21.41 +2006-07-26,24.12,24.53,24.10,24.37,54942100,21.86 +2006-07-25,24.00,24.29,23.90,24.22,60075800,21.72 +2006-07-24,24.01,24.11,23.79,24.00,59586700,21.52 +2006-07-21,24.08,24.15,23.00,23.87,175483800,21.41 +2006-07-20,23.44,23.45,22.78,22.85,76605200,20.49 +2006-07-19,22.82,23.46,22.72,23.40,82188200,20.99 +2006-07-18,22.59,22.76,22.48,22.74,65047300,20.39 +2006-07-17,22.29,22.61,22.26,22.48,37053500,20.16 +2006-07-14,22.28,22.55,22.23,22.29,67499400,19.99 +2006-07-13,22.37,22.61,22.25,22.26,73099500,19.96 +2006-07-12,22.79,22.88,22.62,22.64,77379300,20.30 +2006-07-11,23.37,23.37,22.74,23.10,88676300,20.72 +2006-07-10,23.43,23.66,23.38,23.50,50565100,21.08 +2006-07-07,23.39,23.55,23.30,23.30,63168800,20.90 +2006-07-06,23.45,23.61,23.42,23.48,44775200,21.06 +2006-07-05,23.48,23.52,23.30,23.35,53093500,20.94 +2006-07-03,23.53,23.72,23.45,23.70,25711400,21.25 +2006-06-30,23.54,23.65,23.30,23.30,73048800,20.90 +2006-06-29,23.32,23.63,23.22,23.47,121395500,21.05 +2006-06-28,22.96,23.25,22.91,23.16,71906500,20.77 +2006-06-27,22.89,23.16,22.84,22.86,84759100,20.50 +2006-06-26,22.65,22.89,22.63,22.82,53644100,20.47 +2006-06-23,22.85,22.87,22.50,22.50,60532600,20.18 +2006-06-22,23.06,23.17,22.78,22.88,76590600,20.52 +2006-06-21,22.61,23.15,22.53,23.08,91660300,20.70 +2006-06-20,22.54,22.76,22.50,22.56,90598500,20.23 +2006-06-19,22.14,22.60,22.12,22.55,129640900,20.22 +2006-06-16,21.97,22.28,21.79,22.10,147506500,19.82 +2006-06-15,22.01,22.13,21.80,22.07,121577300,19.79 +2006-06-14,21.59,21.94,21.55,21.88,86081500,19.62 +2006-06-13,21.73,22.03,21.46,21.51,113175300,19.29 +2006-06-12,21.96,22.10,21.70,21.71,74309700,19.47 +2006-06-09,22.15,22.19,21.89,21.92,52573800,19.66 +2006-06-08,22.03,22.21,21.97,22.11,104126900,19.83 +2006-06-07,22.15,22.39,22.01,22.04,73827500,19.77 +2006-06-06,22.55,22.56,21.98,22.13,126601300,19.85 +2006-06-05,22.72,22.73,22.49,22.50,63914100,20.18 +2006-06-02,22.87,22.99,22.67,22.76,73935600,20.41 +2006-06-01,22.74,22.84,22.62,22.82,80230800,20.47 +2006-05-31,23.26,23.35,22.65,22.65,120202000,20.31 +2006-05-30,23.55,23.76,23.14,23.15,52497500,20.76 +2006-05-26,23.77,23.88,23.56,23.72,46861600,21.27 +2006-05-25,23.57,23.92,23.54,23.74,83052700,21.29 +2006-05-24,22.99,23.54,22.98,23.50,107356700,21.08 +2006-05-23,23.11,23.38,22.77,22.79,79986300,20.44 +2006-05-22,22.48,23.02,22.45,22.88,87322300,20.52 +2006-05-19,22.79,22.90,22.52,22.56,100071200,20.23 +2006-05-18,22.84,23.14,22.76,22.83,95476400,20.47 +2006-05-17,22.89,23.08,22.73,22.73,98598300,20.39 +2006-05-16,23.16,24.00,22.91,23.01,82095100,20.64 +2006-05-15,23.10,23.23,23.03,23.15,67314800,20.76 +2006-05-12,23.14,23.37,23.05,23.17,83115900,20.70 +2006-05-11,23.71,23.79,23.15,23.22,92916700,20.74 +2006-05-10,23.67,23.79,23.59,23.77,76563300,21.23 +2006-05-09,23.75,24.00,23.49,23.62,75345900,21.10 +2006-05-08,23.85,25.00,23.51,23.73,80693500,21.20 +2006-05-05,23.66,23.95,23.52,23.80,131604300,21.26 +2006-05-04,23.35,23.67,23.14,23.44,171257400,20.94 +2006-05-03,23.99,24.02,23.15,23.17,211527100,20.70 +2006-05-02,24.49,25.00,23.90,24.01,190533500,21.45 +2006-05-01,24.32,25.00,24.09,24.29,174800900,21.70 +2006-04-28,24.23,24.50,24.00,24.15,591052200,21.57 +2006-04-27,26.97,27.63,26.94,27.25,96509600,24.34 +2006-04-26,27.08,27.23,27.00,27.10,39190000,24.21 +2006-04-25,27.09,27.21,27.02,27.11,49222500,24.22 +2006-04-24,27.07,27.25,26.98,27.11,42318400,24.22 +2006-04-21,27.05,27.39,27.00,27.15,58528000,24.25 +2006-04-20,27.05,27.19,26.70,27.03,45648300,24.15 +2006-04-19,27.11,27.19,26.96,27.03,45111100,24.15 +2006-04-18,26.94,27.50,26.82,27.22,56272700,24.32 +2006-04-17,27.03,27.05,26.73,26.84,35796200,23.98 +2006-04-13,27.08,27.20,27.00,27.07,28160000,24.18 +2006-04-12,27.10,27.20,26.97,27.20,32183000,24.30 +2006-04-11,27.29,27.32,27.00,27.13,42953400,24.24 +2006-04-10,27.23,27.44,27.20,27.29,39432000,24.38 +2006-04-07,27.61,27.72,27.23,27.25,47249400,24.34 +2006-04-06,27.66,27.72,27.37,27.56,51885500,24.62 +2006-04-05,27.88,27.94,27.64,27.74,41539300,24.78 +2006-04-04,27.60,27.80,27.47,27.64,45470000,24.69 +2006-04-03,27.67,27.73,27.44,27.56,57605300,24.62 +2006-03-31,27.30,27.54,27.21,27.21,62190500,24.31 +2006-03-30,27.03,27.39,27.00,27.23,54612000,24.33 +2006-03-29,26.95,27.20,26.92,27.02,53150300,24.14 +2006-03-28,27.01,27.21,26.81,26.90,58520500,24.03 +2006-03-27,27.01,27.30,27.00,27.01,59908600,24.13 +2006-03-24,26.71,27.21,26.62,27.01,69157600,24.13 +2006-03-23,27.08,27.10,26.66,26.85,73682900,23.99 +2006-03-22,27.08,27.50,26.80,27.15,145696100,24.25 +2006-03-21,27.74,28.22,27.68,27.74,73199600,24.78 +2006-03-20,27.70,27.99,27.67,27.89,67094100,24.92 +2006-03-17,27.35,27.66,27.27,27.50,120615000,24.57 +2006-03-16,27.34,27.48,27.22,27.27,73793700,24.36 +2006-03-15,27.20,27.45,27.01,27.36,57152000,24.44 +2006-03-14,27.04,27.38,26.99,27.23,39821800,24.33 +2006-03-13,27.18,27.29,26.94,27.11,40342600,24.22 +2006-03-10,27.06,27.22,26.88,27.17,41297200,24.27 +2006-03-09,27.27,27.42,27.00,27.00,45360700,24.12 +2006-03-08,26.99,27.50,26.97,27.25,57547400,24.34 +2006-03-07,26.90,27.10,26.81,27.06,51613900,24.17 +2006-03-06,26.92,27.15,26.83,26.91,53054100,24.04 +2006-03-03,26.81,27.16,26.74,26.93,45218800,24.06 +2006-03-02,27.02,27.10,26.90,26.97,41850300,24.09 +2006-03-01,26.98,27.20,26.95,27.14,53061200,24.25 +2006-02-28,26.95,27.30,26.87,26.87,65036100,24.00 +2006-02-27,26.75,27.26,26.67,27.05,51301500,24.17 +2006-02-24,26.59,26.74,26.52,26.63,44753800,23.79 +2006-02-23,26.73,26.89,26.54,26.66,47359100,23.82 +2006-02-22,26.53,26.86,26.47,26.72,43043100,23.87 +2006-02-21,26.72,26.72,26.34,26.54,50216100,23.71 +2006-02-17,26.67,26.81,26.56,26.70,41513200,23.85 +2006-02-16,26.85,26.90,26.57,26.81,48868500,23.95 +2006-02-15,26.60,26.93,26.50,26.88,62808900,24.01 +2006-02-14,26.41,26.68,26.35,26.65,58432900,23.73 +2006-02-13,26.63,26.70,26.34,26.39,46707000,23.50 +2006-02-10,26.62,26.89,26.51,26.69,52127000,23.76 +2006-02-09,26.96,27.03,26.65,26.66,52861700,23.74 +2006-02-08,27.01,27.08,26.71,26.91,51795200,23.96 +2006-02-07,26.95,27.15,26.81,26.94,72159500,23.99 +2006-02-06,27.51,27.54,27.09,27.17,60170500,24.19 +2006-02-03,27.48,27.70,27.34,27.54,75022700,24.52 +2006-02-02,27.97,27.99,27.55,27.68,55073400,24.64 +2006-02-01,27.96,28.07,27.76,28.04,68448800,24.96 +2006-01-31,27.91,28.38,27.87,28.15,94841300,25.06 +2006-01-30,27.82,28.18,27.78,28.00,103999200,24.93 +2006-01-27,27.23,27.95,27.19,27.79,134520700,24.74 +2006-01-26,26.56,26.72,26.31,26.50,69509300,23.59 +2006-01-25,26.41,26.57,26.23,26.40,59072100,23.50 +2006-01-24,26.34,26.45,26.22,26.28,63040700,23.40 +2006-01-23,26.41,26.53,26.30,26.35,47925600,23.46 +2006-01-20,27.01,27.01,26.26,26.41,79165900,23.51 +2006-01-19,26.87,27.24,26.85,27.02,60367600,24.06 +2006-01-18,26.74,26.98,26.70,26.83,52376200,23.89 +2006-01-17,26.90,27.19,26.90,26.99,58566600,24.03 +2006-01-13,27.03,27.25,27.01,27.19,41418000,24.21 +2006-01-12,27.25,27.26,26.97,27.14,45994800,24.16 +2006-01-11,27.01,27.39,26.90,27.29,70120700,24.30 +2006-01-10,26.65,27.02,26.59,27.00,64921900,24.04 +2006-01-09,26.93,27.07,26.76,26.86,55625000,23.91 +2006-01-06,26.89,27.00,26.49,26.91,100963000,23.96 +2006-01-05,26.96,27.13,26.91,26.99,48245500,24.03 +2006-01-04,26.77,27.08,26.77,26.97,57975600,24.01 +2006-01-03,26.25,27.00,26.10,26.84,79973000,23.90 +2005-12-30,26.15,26.31,26.10,26.15,49044600,23.28 +2005-12-29,26.41,26.50,26.26,26.27,34495500,23.39 +2005-12-28,26.51,26.66,26.35,26.39,35444400,23.50 +2005-12-27,26.68,26.85,26.45,26.46,37819000,23.56 +2005-12-23,26.52,26.67,26.44,26.64,30689200,23.72 +2005-12-22,26.71,26.78,26.42,26.59,91276900,23.67 +2005-12-21,26.87,26.91,26.71,26.73,75800900,23.80 +2005-12-20,26.76,26.88,26.67,26.86,62960600,23.91 +2005-12-19,26.82,26.87,26.65,26.83,68680100,23.89 +2005-12-16,26.88,27.08,26.81,26.90,88542500,23.95 +2005-12-15,27.08,27.11,26.81,26.92,79018100,23.97 +2005-12-14,27.00,27.24,26.85,27.09,65076200,24.12 +2005-12-13,27.29,27.43,27.00,27.13,104285500,24.15 +2005-12-12,27.70,27.75,27.33,27.45,63757200,24.44 +2005-12-09,27.71,27.83,27.64,27.71,48467000,24.67 +2005-12-08,27.71,27.81,27.60,27.69,63931600,24.65 +2005-12-07,27.67,27.75,27.55,27.75,55583200,24.71 +2005-12-06,27.90,27.92,27.68,27.69,65980000,24.65 +2005-12-05,27.93,28.02,27.71,27.85,47517300,24.80 +2005-12-02,27.82,28.10,27.79,28.01,42319600,24.94 +2005-12-01,27.73,28.10,27.73,27.89,61006100,24.83 +2005-11-30,27.68,27.77,27.63,27.68,55904700,24.64 +2005-11-29,27.79,27.79,27.60,27.68,62220400,24.64 +2005-11-28,27.79,27.85,27.53,27.75,57517200,24.71 +2005-11-25,27.80,27.94,27.47,27.76,44082500,24.72 +2005-11-23,27.92,28.09,27.74,27.92,70541300,24.86 +2005-11-22,28.06,28.08,27.86,27.91,104253300,24.85 +2005-11-21,28.07,28.24,27.84,28.16,65794400,25.07 +2005-11-18,28.12,28.25,27.90,28.07,75431200,24.99 +2005-11-17,27.85,28.00,27.76,27.97,91351000,24.90 +2005-11-16,27.48,27.88,27.44,27.74,86277000,24.70 +2005-11-15,27.33,27.54,27.25,27.50,65081000,24.48 +2005-11-14,27.36,27.44,27.20,27.37,67152200,24.30 +2005-11-11,27.15,27.39,27.13,27.28,51945600,24.22 +2005-11-10,26.94,27.15,26.64,27.09,73314800,24.05 +2005-11-09,26.98,27.15,26.94,26.96,59562100,23.93 +2005-11-08,26.94,27.18,26.77,27.05,60091700,24.01 +2005-11-07,26.72,27.08,26.70,27.01,77104800,23.98 +2005-11-04,26.53,26.71,26.45,26.66,57464000,23.67 +2005-11-03,26.60,26.64,26.25,26.44,73421600,23.47 +2005-11-02,25.93,26.50,25.93,26.46,75067100,23.49 +2005-11-01,25.61,26.10,25.61,25.96,71370400,23.05 +2005-10-31,25.61,25.80,25.50,25.70,75122100,22.81 +2005-10-28,25.10,25.60,25.10,25.53,106559300,22.66 +2005-10-27,25.22,25.27,24.85,24.85,61566100,22.06 +2005-10-26,24.97,25.33,24.93,25.11,58178100,22.29 +2005-10-25,24.95,25.13,24.83,25.03,41310500,22.22 +2005-10-24,24.89,25.10,24.68,25.10,51868000,22.28 +2005-10-21,24.91,25.00,24.57,24.78,69431200,22.00 +2005-10-20,25.05,25.13,24.74,24.79,58830600,22.01 +2005-10-19,24.56,25.09,24.50,25.09,66574500,22.27 +2005-10-18,24.49,24.83,24.45,24.57,69328200,21.81 +2005-10-17,24.68,24.69,24.44,24.53,46924400,21.78 +2005-10-14,24.71,24.73,24.50,24.67,53846700,21.90 +2005-10-13,24.31,24.73,24.27,24.59,70192000,21.83 +2005-10-12,24.49,24.70,24.27,24.30,71294400,21.57 +2005-10-11,24.51,24.55,24.25,24.41,76567300,21.67 +2005-10-10,24.67,24.68,24.35,24.46,48880900,21.71 +2005-10-07,24.77,24.84,24.52,24.59,50768700,21.83 +2005-10-06,24.66,24.95,24.53,24.73,81724600,21.95 +2005-10-05,25.04,25.05,24.67,24.67,73684700,21.90 +2005-10-04,25.36,25.39,24.75,24.98,151666300,22.18 +2005-10-03,25.71,25.73,25.44,25.50,55341300,22.64 +2005-09-30,25.91,25.95,25.61,25.73,57644500,22.84 +2005-09-29,25.61,26.00,25.50,25.94,66807100,23.03 +2005-09-28,25.39,25.87,25.38,25.67,71019400,22.79 +2005-09-27,25.37,25.45,25.30,25.34,48797900,22.50 +2005-09-26,25.40,25.49,25.21,25.27,56203700,22.43 +2005-09-23,25.31,25.54,25.12,25.27,66396800,22.43 +2005-09-22,25.49,25.60,25.15,25.34,71314900,22.50 +2005-09-21,25.80,25.90,25.43,25.49,68281800,22.63 +2005-09-20,26.07,26.22,25.69,25.84,61043400,22.94 +2005-09-19,26.09,26.27,25.86,26.00,61832300,23.08 +2005-09-16,26.34,26.40,25.97,26.07,187384300,23.14 +2005-09-15,26.37,26.43,26.22,26.27,60357200,23.32 +2005-09-14,26.52,26.64,26.30,26.31,54969600,23.36 +2005-09-13,26.54,26.76,26.37,26.48,63422900,23.51 +2005-09-12,26.62,26.75,26.52,26.61,40550500,23.62 +2005-09-09,26.62,26.82,26.53,26.58,41515800,23.60 +2005-09-08,26.80,26.88,26.52,26.61,52552300,23.62 +2005-09-07,26.94,27.11,26.82,26.85,44656100,23.84 +2005-09-06,27.06,27.29,26.98,27.00,46089000,23.97 +2005-09-02,27.21,27.27,26.97,27.02,52047500,23.99 +2005-09-01,27.38,27.39,27.15,27.20,75974500,24.15 +2005-08-31,27.17,27.44,27.04,27.38,65210200,24.31 +2005-08-30,27.06,27.23,26.96,27.18,55163200,24.13 +2005-08-29,26.81,27.23,26.81,27.15,52307700,24.10 +2005-08-26,27.06,27.08,26.87,26.97,36774600,23.94 +2005-08-25,26.90,27.09,26.85,27.03,39306300,24.00 +2005-08-24,26.84,27.16,26.78,26.81,63645000,23.80 +2005-08-23,26.84,27.07,26.74,26.87,48296700,23.85 +2005-08-22,26.79,27.17,26.77,26.91,41691700,23.89 +2005-08-19,26.85,26.91,26.70,26.72,36043500,23.72 +2005-08-18,26.89,27.08,26.80,26.82,40861900,23.81 +2005-08-17,26.82,27.15,26.66,26.95,52413100,23.92 +2005-08-16,27.03,27.14,26.70,26.74,46894600,23.74 +2005-08-15,26.98,27.30,26.69,27.13,45976600,24.08 +2005-08-12,27.08,27.14,26.90,27.05,52006500,23.94 +2005-08-11,26.98,27.30,26.89,27.27,48646800,24.14 +2005-08-10,27.41,27.50,26.85,26.95,62818800,23.85 +2005-08-09,27.22,27.51,27.01,27.35,64761800,24.21 +2005-08-08,27.80,27.84,27.08,27.13,77207200,24.01 +2005-08-05,27.29,27.94,27.25,27.76,82212400,24.57 +2005-08-04,27.16,27.50,27.05,27.32,91461400,24.18 +2005-08-03,26.76,27.43,26.73,27.25,139422400,24.12 +2005-08-02,25.90,26.90,25.87,26.81,137510100,23.73 +2005-08-01,25.81,26.05,25.76,25.92,61346800,22.94 +2005-07-29,25.78,26.00,25.59,25.61,59524400,22.67 +2005-07-28,25.75,25.85,25.66,25.75,44738700,22.79 +2005-07-27,25.61,25.80,25.53,25.72,57977300,22.76 +2005-07-26,25.72,25.74,25.53,25.54,51476400,22.61 +2005-07-25,25.69,25.90,25.65,25.69,45174600,22.74 +2005-07-22,25.99,26.34,25.63,25.68,97558900,22.73 +2005-07-21,26.30,26.48,26.00,26.44,112932100,23.40 +2005-07-20,26.00,26.23,25.88,26.19,71424800,23.18 +2005-07-19,25.79,26.25,25.75,26.16,113290100,23.15 +2005-07-18,25.71,25.79,25.55,25.55,39668000,22.61 +2005-07-15,26.04,26.10,25.75,25.79,56472800,22.83 +2005-07-14,25.79,26.10,25.79,25.97,69506800,22.99 +2005-07-13,25.53,25.75,25.48,25.66,44749200,22.71 +2005-07-12,25.24,25.62,25.20,25.61,63384800,22.67 +2005-07-11,25.15,25.38,25.11,25.29,61525400,22.38 +2005-07-08,24.64,25.12,24.63,25.09,56104000,22.21 +2005-07-07,24.58,24.71,24.50,24.65,80082900,21.82 +2005-07-06,24.97,25.08,24.69,24.70,64214600,21.86 +2005-07-05,24.66,25.19,24.62,24.98,61883500,22.11 +2005-07-01,24.85,24.99,24.67,24.71,69718400,21.87 +2005-06-30,25.06,25.14,24.82,24.84,82018200,21.99 +2005-06-29,25.22,25.32,25.00,25.09,55859900,22.21 +2005-06-28,25.09,25.20,25.03,25.07,53058100,22.19 +2005-06-27,25.07,25.25,25.03,25.05,61636200,22.17 +2005-06-24,25.22,25.40,25.04,25.04,57970700,22.16 +2005-06-23,25.17,25.62,25.15,25.31,105159800,22.40 +2005-06-22,25.11,25.26,25.03,25.07,60492700,22.19 +2005-06-21,25.08,25.19,25.04,25.15,81084000,22.26 +2005-06-20,24.98,25.28,24.93,25.11,50538900,22.23 +2005-06-17,25.27,25.29,24.92,25.04,90821300,22.16 +2005-06-16,25.22,25.23,24.95,25.04,65918800,22.16 +2005-06-15,25.40,25.41,25.11,25.26,50764800,22.36 +2005-06-14,25.31,25.44,25.24,25.36,44243300,22.45 +2005-06-13,25.36,25.49,25.26,25.31,49104100,22.40 +2005-06-10,25.49,25.52,25.34,25.43,39459800,22.51 +2005-06-09,25.40,25.61,25.35,25.51,52767900,22.58 +2005-06-08,25.55,25.62,25.34,25.40,45369700,22.48 +2005-06-07,25.33,25.83,25.31,25.51,54511400,22.58 +2005-06-06,25.38,25.50,25.31,25.37,40756900,22.46 +2005-06-03,25.70,25.81,25.34,25.43,79659500,22.51 +2005-06-02,25.71,25.86,25.64,25.79,27212500,22.83 +2005-06-01,25.73,26.00,25.61,25.81,54621000,22.84 +2005-05-31,25.99,26.03,25.75,25.80,46131100,22.84 +2005-05-27,25.83,26.09,25.81,26.07,54978000,23.07 +2005-05-26,25.75,26.00,25.73,25.90,50579200,22.92 +2005-05-25,25.68,25.77,25.50,25.71,35749000,22.76 +2005-05-24,25.80,25.88,25.72,25.75,61287700,22.79 +2005-05-23,25.74,26.07,25.74,25.85,75421100,22.88 +2005-05-20,25.88,25.92,25.73,25.74,64444500,22.78 +2005-05-19,25.75,26.05,25.70,25.92,52120800,22.94 +2005-05-18,25.50,25.84,25.42,25.70,71182400,22.75 +2005-05-17,25.31,25.50,25.25,25.46,39983200,22.53 +2005-05-16,25.23,25.50,25.19,25.49,50577300,22.56 +2005-05-13,25.03,25.38,24.99,25.30,77204300,22.32 +2005-05-12,24.84,25.11,24.83,25.00,74540700,22.06 +2005-05-11,24.89,24.97,24.64,24.91,59463300,21.98 +2005-05-10,25.04,25.08,24.82,24.90,62235100,21.97 +2005-05-09,25.23,25.33,25.05,25.11,61872400,22.15 +2005-05-06,25.33,25.48,25.19,25.22,64322600,22.25 +2005-05-05,25.20,25.33,25.08,25.23,59362300,22.26 +2005-05-04,25.34,25.40,25.11,25.21,86864200,22.24 +2005-05-03,25.13,25.40,25.09,25.36,67867800,22.38 +2005-05-02,25.23,25.36,24.95,25.23,54376700,22.26 +2005-04-29,24.88,25.30,24.79,25.30,98641200,22.32 +2005-04-28,24.82,24.92,24.44,24.45,83623100,21.57 +2005-04-27,24.66,25.15,24.63,24.99,47732800,22.05 +2005-04-26,24.95,25.25,24.74,24.76,60464300,21.85 +2005-04-25,25.07,25.28,24.86,24.99,75457900,22.05 +2005-04-22,25.05,25.25,24.78,24.98,80087500,22.04 +2005-04-21,24.48,25.39,24.47,25.28,93562300,22.30 +2005-04-20,24.66,24.70,24.30,24.32,91923500,21.46 +2005-04-19,24.71,24.80,24.45,24.63,65956200,21.73 +2005-04-18,24.45,24.84,24.40,24.65,75766400,21.75 +2005-04-15,24.58,24.90,24.41,24.46,100251600,21.58 +2005-04-14,25.01,25.14,24.83,24.84,66754400,21.92 +2005-04-13,25.23,25.45,24.99,25.04,60929300,22.09 +2005-04-12,24.92,25.35,24.80,25.32,67517800,22.34 +2005-04-11,25.03,25.11,24.86,24.97,47791800,22.03 +2005-04-08,25.07,25.25,24.91,24.94,47956300,22.00 +2005-04-07,24.66,25.13,24.63,25.10,77451500,22.15 +2005-04-06,24.47,24.94,24.45,24.67,78020200,21.77 +2005-04-05,24.22,24.50,24.12,24.47,73549600,21.59 +2005-04-04,24.11,24.26,23.94,24.23,62196400,21.38 +2005-04-01,24.24,24.35,24.10,24.12,64619600,21.28 +2005-03-31,24.25,24.31,24.12,24.17,62382300,21.33 +2005-03-30,24.04,24.19,24.00,24.16,59585700,21.32 +2005-03-29,24.14,24.24,23.82,23.92,74231700,21.10 +2005-03-28,24.40,24.47,24.18,24.20,49802000,21.35 +2005-03-24,24.24,24.47,24.20,24.28,78820900,21.42 +2005-03-23,23.99,24.39,23.96,24.18,79293300,21.33 +2005-03-22,24.19,24.27,23.96,23.99,102113300,21.17 +2005-03-21,24.35,24.36,24.15,24.20,71446200,21.35 +2005-03-18,24.53,24.91,24.28,24.31,135904000,21.45 +2005-03-17,24.64,24.68,24.53,24.54,60573200,21.65 +2005-03-16,24.82,24.97,24.56,24.63,74841400,21.73 +2005-03-15,25.10,25.24,24.89,24.91,71469400,21.98 +2005-03-14,25.08,25.15,24.96,25.11,65550500,22.15 +2005-03-11,25.45,25.48,25.06,25.09,60617900,22.14 +2005-03-10,25.43,25.48,25.25,25.43,59132900,22.44 +2005-03-09,25.39,25.57,25.28,25.31,62991800,22.33 +2005-03-08,25.40,25.62,25.34,25.40,52871800,22.41 +2005-03-07,25.17,25.79,25.16,25.47,80407400,22.47 +2005-03-04,25.21,25.30,25.13,25.17,63058200,22.21 +2005-03-03,25.30,25.31,25.14,25.17,52183600,22.21 +2005-03-02,25.19,25.48,25.16,25.26,67739000,22.29 +2005-03-01,25.19,25.41,25.13,25.28,56394800,22.30 +2005-02-28,25.22,25.37,25.13,25.16,82728000,22.20 +2005-02-25,25.33,25.38,25.15,25.25,62467700,22.28 +2005-02-24,25.18,25.44,25.15,25.37,85236300,22.38 +2005-02-23,25.24,25.35,25.17,25.20,83689400,22.23 +2005-02-22,25.25,25.49,25.20,25.23,96419200,22.26 +2005-02-18,25.64,25.65,25.40,25.48,77091100,22.48 +2005-02-17,25.71,25.86,25.60,25.65,67024800,22.63 +2005-02-16,25.87,25.93,25.67,25.79,57506600,22.75 +2005-02-15,26.00,26.08,25.86,25.93,76551600,22.88 +2005-02-14,25.93,26.12,25.91,26.01,58694000,22.88 +2005-02-11,26.03,26.12,25.81,25.97,83835900,22.84 +2005-02-10,26.10,26.13,26.00,26.06,71796400,22.92 +2005-02-09,26.25,26.31,26.04,26.07,77874800,22.93 +2005-02-08,26.19,26.34,26.16,26.24,61343700,23.08 +2005-02-07,26.27,26.30,26.06,26.16,57763400,23.01 +2005-02-04,26.17,26.37,26.14,26.32,61246500,23.15 +2005-02-03,26.37,26.40,26.10,26.18,62545400,23.03 +2005-02-02,26.42,26.50,26.28,26.46,79329500,23.27 +2005-02-01,26.25,26.43,26.22,26.39,57981700,23.21 +2005-01-31,26.35,26.52,26.16,26.28,71442100,23.12 +2005-01-28,26.54,26.65,25.96,26.18,110466500,23.03 +2005-01-27,25.95,26.16,25.85,26.11,93204100,22.97 +2005-01-26,26.07,26.17,25.90,26.01,64974500,22.88 +2005-01-25,25.76,26.19,25.75,26.02,67580700,22.89 +2005-01-24,25.76,26.00,25.64,25.67,69010900,22.58 +2005-01-21,25.95,26.13,25.64,25.65,76501000,22.56 +2005-01-20,25.84,26.10,25.74,25.86,58380100,22.75 +2005-01-19,26.21,26.26,25.92,25.98,58114100,22.85 +2005-01-18,26.03,26.35,25.84,26.32,69146400,23.15 +2005-01-14,26.40,26.45,26.04,26.12,92180800,22.97 +2005-01-13,26.68,26.80,26.16,26.27,89861600,23.11 +2005-01-12,26.77,26.85,26.62,26.78,72940600,23.56 +2005-01-11,26.69,26.82,26.61,26.73,64712000,23.51 +2005-01-10,26.60,26.86,26.54,26.80,70376600,23.57 +2005-01-07,26.82,26.89,26.62,26.67,68723300,23.46 +2005-01-06,26.85,27.06,26.64,26.75,76890500,23.53 +2005-01-05,26.84,27.10,26.76,26.78,72463500,23.56 +2005-01-04,26.87,27.10,26.66,26.84,109442100,23.61 +2005-01-03,26.80,26.95,26.65,26.74,65002900,23.52 +2004-12-31,26.75,26.90,26.68,26.72,54959500,23.50 +2004-12-30,26.89,26.94,26.75,26.76,48355400,23.54 +2004-12-29,26.85,27.00,26.82,26.90,47594900,23.66 +2004-12-28,26.85,27.03,26.80,26.95,55075900,23.71 +2004-12-27,27.01,27.10,26.82,26.85,55958500,23.62 +2004-12-23,26.87,27.15,26.83,27.01,65801900,23.76 +2004-12-22,26.84,27.15,26.78,26.97,63651900,23.72 +2004-12-21,27.00,27.17,26.94,27.07,94646100,23.81 +2004-12-20,27.01,27.15,26.89,26.95,85552800,23.71 +2004-12-17,27.00,27.32,26.80,26.96,126184400,23.71 +2004-12-16,27.15,27.28,27.01,27.16,88997500,23.89 +2004-12-15,27.22,27.40,27.07,27.11,106303900,23.85 +2004-12-14,27.05,27.33,27.04,27.23,127843200,23.95 +2004-12-13,27.10,27.28,26.91,27.25,93812500,23.97 +2004-12-10,27.08,27.18,27.04,27.08,70949200,23.82 +2004-12-09,27.13,27.36,26.94,27.23,83006000,23.95 +2004-12-08,27.01,27.36,26.91,27.36,95655000,24.07 +2004-12-07,27.26,27.38,27.00,27.07,111656000,23.81 +2004-12-06,27.10,27.44,27.07,27.33,55297400,24.04 +2004-12-03,27.16,27.44,27.14,27.23,76498400,23.95 +2004-12-02,27.27,27.40,26.92,27.09,96088300,23.83 +2004-12-01,26.95,27.28,26.81,27.25,99889000,23.97 +2004-11-30,26.75,27.01,26.70,26.81,75960400,23.58 +2004-11-29,26.64,26.95,26.61,26.77,67079900,23.55 +2004-11-26,26.56,26.82,26.55,26.60,24398700,23.40 +2004-11-24,26.62,26.73,26.40,26.64,60069200,23.43 +2004-11-23,26.52,26.70,26.40,26.53,70459700,23.34 +2004-11-22,26.75,26.82,26.10,26.65,92410800,23.44 +2004-11-19,27.03,27.07,26.84,26.86,85808600,23.63 +2004-11-18,27.13,27.17,27.00,27.07,63249900,23.81 +2004-11-17,27.25,27.35,27.06,27.17,58830700,23.90 +2004-11-16,27.33,27.34,27.05,27.12,64522600,23.85 +2004-11-15,27.34,27.50,27.20,27.39,104468000,24.09 +2004-11-12,30.16,30.20,29.80,29.97,162269000,23.65 +2004-11-11,29.89,30.08,29.82,29.98,87358900,23.66 +2004-11-10,29.92,30.00,29.69,29.73,84097700,23.46 +2004-11-09,29.43,29.89,29.35,29.77,100401000,23.49 +2004-11-08,29.18,29.48,29.13,29.28,112802100,23.11 +2004-11-05,29.21,29.36,29.03,29.31,95337700,23.13 +2004-11-04,28.38,29.00,28.38,29.00,87867700,22.89 +2004-11-03,28.65,28.65,28.31,28.47,79666700,22.47 +2004-11-02,28.26,28.47,28.03,28.24,89417100,22.29 +2004-11-01,28.16,28.28,27.96,28.08,72930900,22.16 +2004-10-29,28.12,28.15,27.80,27.97,80010100,22.07 +2004-10-28,28.11,28.54,27.90,28.01,63059600,22.11 +2004-10-27,27.86,28.35,27.58,28.15,72392600,22.22 +2004-10-26,27.71,27.90,27.63,27.90,76966600,22.02 +2004-10-25,27.67,27.77,27.55,27.63,61529500,21.81 +2004-10-22,28.30,28.34,27.58,27.74,101912800,21.89 +2004-10-21,28.81,28.89,28.47,28.56,94988500,22.54 +2004-10-20,28.22,28.75,28.12,28.70,69078100,22.65 +2004-10-19,28.53,28.59,28.17,28.18,57026500,22.24 +2004-10-18,28.07,28.45,27.98,28.41,50350700,22.42 +2004-10-15,27.97,28.24,27.82,27.99,49828500,22.09 +2004-10-14,28.04,28.16,27.80,27.80,41548700,21.94 +2004-10-13,28.19,28.27,27.94,28.03,49500700,22.12 +2004-10-12,27.83,28.16,27.81,28.03,56412900,22.12 +2004-10-11,28.20,28.22,27.93,28.06,44691000,22.14 +2004-10-08,28.10,28.33,27.97,27.99,49556600,22.09 +2004-10-07,28.54,28.59,28.16,28.17,38401500,22.23 +2004-10-06,28.39,28.55,28.23,28.53,56999600,22.52 +2004-10-05,28.15,28.45,28.10,28.38,58017700,22.40 +2004-10-04,28.44,28.46,28.07,28.12,62016200,22.19 +2004-10-01,27.82,28.32,27.78,28.25,66302800,22.29 +2004-09-30,27.59,27.79,27.52,27.65,71218000,21.82 +2004-09-29,27.26,27.69,27.23,27.58,61529300,21.77 +2004-09-28,27.21,27.36,27.04,27.27,62055100,21.52 +2004-09-27,27.17,27.32,27.13,27.19,47813600,21.46 +2004-09-24,27.39,27.46,27.19,27.29,49859800,21.54 +2004-09-23,27.19,27.39,27.17,27.35,52155800,21.58 +2004-09-22,27.28,27.74,27.07,27.12,68409000,21.40 +2004-09-21,27.45,27.53,27.25,27.26,73874400,21.51 +2004-09-20,27.44,27.65,27.33,27.51,51513600,21.71 +2004-09-17,27.39,27.53,27.26,27.51,65283000,21.71 +2004-09-16,27.22,27.35,27.17,27.26,35951500,21.51 +2004-09-15,27.36,27.40,27.14,27.19,52605700,21.46 +2004-09-14,27.37,27.51,27.27,27.44,55920000,21.66 +2004-09-13,27.53,27.57,26.74,27.25,48239200,21.51 +2004-09-10,27.34,27.51,27.18,27.49,52664500,21.70 +2004-09-09,27.30,27.47,27.18,27.28,56904700,21.53 +2004-09-08,27.30,27.47,27.14,27.26,53278100,21.51 +2004-09-07,27.29,27.38,27.16,27.36,44893400,21.59 +2004-09-03,27.46,27.62,27.10,27.11,46174400,21.40 +2004-09-02,27.40,27.68,27.35,27.62,42161700,21.80 +2004-09-01,27.23,27.52,27.14,27.39,48507500,21.62 +2004-08-31,27.29,27.32,27.05,27.30,52106700,21.55 +2004-08-30,27.30,27.39,26.85,27.30,36679600,21.55 +2004-08-27,27.50,27.65,27.45,27.46,33248700,21.67 +2004-08-26,27.46,27.60,27.39,27.44,35465500,21.66 +2004-08-25,27.21,27.67,27.18,27.55,53512700,21.74 +2004-08-24,27.40,27.46,27.09,27.24,40835300,21.50 +2004-08-23,27.27,27.33,27.12,27.24,39572200,21.50 +2004-08-20,27.13,27.37,27.04,27.20,46494800,21.40 +2004-08-19,27.35,27.45,27.01,27.12,46293000,21.34 +2004-08-18,26.93,27.50,26.89,27.46,58844000,21.61 +2004-08-17,27.22,27.38,26.98,27.05,56879700,21.29 +2004-08-16,27.03,27.20,26.96,27.09,54347200,21.32 +2004-08-13,27.01,27.25,26.98,27.02,43333200,21.26 +2004-08-12,27.23,27.31,26.86,26.88,50279700,21.15 +2004-08-11,27.39,27.51,27.20,27.41,53097300,21.57 +2004-08-10,27.30,27.75,27.25,27.72,57632700,21.81 +2004-08-09,27.26,27.28,27.10,27.18,51877500,21.39 +2004-08-06,27.38,27.86,27.06,27.14,75628000,21.36 +2004-08-05,28.16,28.21,27.52,27.53,55591700,21.66 +2004-08-04,28.01,28.20,27.99,28.06,46217900,22.08 +2004-08-03,28.38,28.42,28.00,28.07,53990900,22.09 +2004-08-02,28.27,28.55,28.16,28.52,52267000,22.44 +2004-07-30,28.45,28.81,28.33,28.49,59552900,22.42 +2004-07-29,28.78,28.80,28.25,28.48,60148400,22.41 +2004-07-28,28.34,28.79,28.28,28.58,62718800,22.49 +2004-07-27,28.70,28.76,28.13,28.44,72968400,22.38 +2004-07-26,28.36,28.71,28.20,28.66,72387600,22.55 +2004-07-23,28.38,28.40,28.02,28.03,97372700,22.06 +2004-07-22,29.07,29.30,28.83,29.00,124640700,22.82 +2004-07-21,29.89,29.89,28.81,28.86,201518000,22.71 +2004-07-20,28.00,28.48,27.85,28.32,89010700,22.28 +2004-07-19,27.62,28.26,27.60,27.95,60354500,21.99 +2004-07-16,28.18,28.20,27.25,27.48,66406300,21.62 +2004-07-15,28.05,28.20,27.80,27.87,46759700,21.93 +2004-07-14,27.40,28.36,27.34,28.13,87656300,22.13 +2004-07-13,27.91,27.95,27.60,27.60,43274100,21.72 +2004-07-12,27.67,28.00,27.59,27.89,45757300,21.95 +2004-07-09,27.78,28.00,27.64,27.86,50249300,21.92 +2004-07-08,27.88,28.15,27.55,27.64,59125100,21.75 +2004-07-07,27.67,28.32,27.55,28.10,66255700,22.11 +2004-07-06,28.32,28.33,27.94,28.02,69158900,22.05 +2004-07-02,28.62,28.68,28.40,28.57,36690100,22.48 +2004-07-01,28.70,28.84,28.26,28.63,78441400,22.53 +2004-06-30,28.57,28.80,28.39,28.56,83544400,22.47 +2004-06-29,28.18,28.58,28.18,28.50,55371700,22.43 +2004-06-28,28.60,28.75,28.17,28.28,77024100,22.25 +2004-06-25,28.48,28.63,28.25,28.57,71136500,22.48 +2004-06-24,28.48,28.65,28.36,28.39,65503800,22.34 +2004-06-23,28.20,28.38,28.00,28.30,58558400,22.27 +2004-06-22,28.15,28.35,27.81,28.29,98932000,22.26 +2004-06-21,28.22,28.66,28.12,28.35,116881700,22.31 +2004-06-18,27.77,28.50,27.70,28.35,134218700,22.31 +2004-06-17,27.31,27.92,27.29,27.77,105427500,21.85 +2004-06-16,27.34,27.50,27.15,27.32,67431100,21.50 +2004-06-15,26.99,27.60,26.97,27.41,114183400,21.57 +2004-06-14,26.55,26.90,26.53,26.90,67377500,21.17 +2004-06-10,26.38,26.79,26.38,26.77,48109200,21.06 +2004-06-09,26.40,26.65,26.40,26.47,50385500,20.83 +2004-06-08,26.28,26.65,26.24,26.60,58447700,20.93 +2004-06-07,26.02,26.43,25.97,26.43,65218600,20.80 +2004-06-04,26.03,26.24,25.94,25.95,48815300,20.42 +2004-06-03,26.05,26.13,25.86,25.89,45933100,20.37 +2004-06-02,26.12,26.28,26.01,26.13,54020000,20.56 +2004-06-01,26.13,26.27,25.87,26.11,48369500,20.55 +2004-05-28,26.14,26.35,26.02,26.23,37393000,20.64 +2004-05-27,26.16,26.19,25.92,26.19,49071900,20.61 +2004-05-26,25.99,26.15,25.85,26.14,50306900,20.57 +2004-05-25,25.71,26.19,25.60,26.10,66615000,20.54 +2004-05-24,26.05,26.17,25.74,25.76,56250500,20.27 +2004-05-21,25.97,26.20,25.78,25.89,57809300,20.37 +2004-05-20,25.75,25.87,25.59,25.73,52089900,20.25 +2004-05-19,26.03,26.27,25.62,25.62,60052800,20.16 +2004-05-18,25.70,25.97,25.64,25.83,58158600,20.33 +2004-05-17,25.47,25.79,25.42,25.54,55149600,20.10 +2004-05-14,26.00,26.17,25.64,25.86,43775300,20.35 +2004-05-13,25.82,26.19,25.79,26.10,63861500,20.54 +2004-05-12,25.87,26.00,25.43,25.94,64145600,20.41 +2004-05-11,26.09,26.11,25.79,25.94,57917200,20.41 +2004-05-10,25.63,26.05,25.62,25.93,64621400,20.40 +2004-05-07,26.03,26.38,25.75,25.78,68290200,20.29 +2004-05-06,26.16,26.34,26.03,26.12,62693900,20.55 +2004-05-05,26.32,26.60,26.25,26.30,51841700,20.69 +2004-05-04,26.35,26.54,26.02,26.33,55496400,20.72 +2004-05-03,26.19,26.52,26.19,26.35,65916200,20.73 +2004-04-30,26.59,26.75,25.96,26.13,66172200,20.56 +2004-04-29,26.51,26.94,26.31,26.48,77787300,20.84 +2004-04-28,27.01,27.05,26.47,26.56,72842200,20.90 +2004-04-27,27.16,27.37,27.13,27.22,80716800,21.42 +2004-04-26,27.45,27.55,27.10,27.24,89391000,21.43 +2004-04-23,27.40,27.72,27.34,27.54,258269000,21.67 +2004-04-22,25.51,25.99,25.47,25.95,99207700,20.42 +2004-04-21,25.36,25.49,25.20,25.45,49252000,20.03 +2004-04-20,25.65,25.88,25.28,25.33,59902600,19.93 +2004-04-19,25.08,25.60,25.06,25.53,44592100,20.09 +2004-04-16,25.33,25.40,25.11,25.16,51768600,19.80 +2004-04-15,25.53,25.73,25.10,25.22,73756900,19.85 +2004-04-14,25.39,25.68,25.38,25.51,61079600,20.07 +2004-04-13,25.68,25.77,25.41,25.45,56971500,20.03 +2004-04-12,25.48,25.74,25.43,25.61,38786800,20.15 +2004-04-08,25.82,25.85,25.36,25.48,45294600,20.05 +2004-04-07,25.74,25.78,25.35,25.59,63268900,20.14 +2004-04-06,25.77,25.90,25.66,25.80,48992000,20.30 +2004-04-05,25.81,25.98,25.73,25.95,53800300,20.42 +2004-04-02,25.48,25.90,25.44,25.85,98043800,20.34 +2004-04-01,24.95,25.11,24.85,25.08,69051900,19.73 +2004-03-31,25.20,25.20,24.87,24.93,70533200,19.62 +2004-03-30,25.21,25.33,25.03,25.20,59010400,19.83 +2004-03-29,25.25,25.40,25.00,25.31,51881600,19.92 +2004-03-26,25.11,25.51,25.00,25.03,61584900,19.70 +2004-03-25,24.60,25.24,24.58,25.19,85677900,19.82 +2004-03-24,24.38,24.58,24.18,24.41,97584700,19.21 +2004-03-23,24.65,24.66,24.11,24.15,91696300,19.00 +2004-03-22,24.48,24.84,24.01,24.50,127605200,19.28 +2004-03-19,24.77,24.94,24.56,24.63,86281600,19.38 +2004-03-18,24.96,25.03,24.58,24.89,123231000,19.59 +2004-03-17,25.25,25.46,25.11,25.13,56241400,19.77 +2004-03-16,25.26,25.37,25.10,25.18,65453800,19.81 +2004-03-15,25.30,25.43,25.06,25.16,68835300,19.80 +2004-03-12,25.38,25.51,25.23,25.38,64137100,19.97 +2004-03-11,25.18,25.78,25.07,25.09,90536300,19.74 +2004-03-10,25.65,25.80,25.35,25.37,75155800,19.96 +2004-03-09,25.80,25.97,25.54,25.72,81111700,20.24 +2004-03-08,26.31,26.35,25.81,25.83,69367800,20.33 +2004-03-05,26.23,26.60,26.20,26.35,59849800,20.73 +2004-03-04,26.33,26.42,26.21,26.37,44023200,20.75 +2004-03-03,26.35,26.55,26.22,26.37,54998700,20.75 +2004-03-02,26.61,26.69,26.35,26.39,66331000,20.77 +2004-03-01,26.63,26.72,26.50,26.70,51912300,21.01 +2004-02-27,26.47,26.62,26.35,26.53,58266500,20.88 +2004-02-26,26.59,26.65,26.41,26.50,66602700,20.85 +2004-02-25,26.90,26.99,26.61,26.70,64275700,21.01 +2004-02-24,26.61,26.95,26.55,26.88,55426500,21.15 +2004-02-23,26.73,26.76,26.48,26.61,50256800,20.94 +2004-02-20,26.66,26.80,26.50,26.57,57821900,20.91 +2004-02-19,26.92,26.98,26.43,26.46,61840600,20.82 +2004-02-18,26.90,27.11,26.74,26.77,50334700,21.06 +2004-02-17,26.72,27.10,26.59,26.99,43477000,21.24 +2004-02-13,26.98,27.06,26.50,26.59,67541100,20.92 +2004-02-12,27.09,27.15,26.93,26.95,44537000,21.21 +2004-02-11,26.97,27.23,26.85,27.15,51515300,21.36 +2004-02-10,26.87,27.15,26.82,27.02,37790600,21.26 +2004-02-09,27.19,27.23,26.85,26.90,48108500,21.17 +2004-02-06,27.03,27.19,26.93,27.08,47209600,21.31 +2004-02-05,27.06,27.17,26.83,26.96,55527500,21.21 +2004-02-04,27.22,27.43,27.01,27.01,60648000,21.25 +2004-02-03,27.40,27.55,27.18,27.29,47993800,21.47 +2004-02-02,27.61,27.80,27.24,27.40,62891800,21.56 +2004-01-30,27.84,27.90,27.55,27.65,40528700,21.76 +2004-01-29,27.81,27.95,27.57,27.91,63748400,21.96 +2004-01-28,28.30,28.44,27.47,27.71,71336000,21.80 +2004-01-27,28.64,28.72,28.22,28.25,63196200,22.23 +2004-01-26,28.49,28.83,28.32,28.80,58299600,22.66 +2004-01-23,28.28,28.76,28.22,28.48,127259100,22.41 +2004-01-22,28.36,28.44,27.94,28.01,78425200,22.04 +2004-01-21,28.13,28.30,27.85,28.30,53570600,22.27 +2004-01-20,27.98,28.20,27.93,28.10,63068500,22.11 +2004-01-16,27.71,27.88,27.53,27.81,63983400,21.88 +2004-01-15,27.55,27.72,27.42,27.54,58504100,21.67 +2004-01-14,27.52,27.73,27.47,27.70,43907000,21.80 +2004-01-13,27.55,27.64,27.26,27.43,51555900,21.58 +2004-01-12,27.67,27.73,27.35,27.57,55845200,21.69 +2004-01-09,28.03,28.06,27.59,27.66,67079900,21.77 +2004-01-08,28.39,28.48,28.00,28.16,58810800,22.16 +2004-01-07,28.17,28.31,28.01,28.21,54298200,22.20 +2004-01-06,28.19,28.28,28.07,28.24,46950800,22.22 +2004-01-05,27.73,28.18,27.72,28.14,67333700,22.14 +2004-01-02,27.58,27.77,27.33,27.45,44487700,21.60 +2003-12-31,27.42,27.55,27.23,27.37,42198900,21.54 +2003-12-30,27.41,27.55,27.40,27.52,34406600,21.65 +2003-12-29,27.21,27.53,27.16,27.46,40426700,21.61 +2003-12-26,27.05,27.25,27.00,27.21,12076900,21.41 +2003-12-24,27.14,27.16,27.00,27.04,19924200,21.28 +2003-12-23,27.17,27.34,27.01,27.15,39609000,21.36 +2003-12-22,27.16,27.43,26.97,27.18,43894800,21.39 +2003-12-19,27.49,27.55,27.19,27.36,76856400,21.53 +2003-12-18,27.10,27.45,27.05,27.40,61177800,21.56 +2003-12-17,27.04,27.08,26.85,27.04,53712300,21.28 +2003-12-16,26.83,27.16,26.77,27.06,73978000,21.29 +2003-12-15,27.05,27.10,26.68,26.74,88860600,21.04 +2003-12-12,26.69,26.81,26.50,26.65,69154100,20.97 +2003-12-11,26.59,26.77,26.28,26.61,79309000,20.94 +2003-12-10,26.45,26.63,26.38,26.59,82853700,20.92 +2003-12-09,26.44,26.61,26.25,26.38,103547100,20.76 +2003-12-08,26.12,26.34,25.81,26.24,90504000,20.65 +2003-12-05,25.96,26.48,25.92,25.98,96610900,20.44 +2003-12-04,25.72,26.23,25.66,26.20,87202400,20.62 +2003-12-03,25.82,26.07,25.62,25.67,93121600,20.20 +2003-12-02,25.95,26.09,25.61,25.66,85121700,20.19 +2003-12-01,25.90,26.21,25.50,25.84,101914600,20.33 +2003-11-28,25.50,25.75,25.40,25.71,33402600,20.23 +2003-11-26,25.61,25.63,25.32,25.45,69758400,20.03 +2003-11-25,25.87,25.95,25.38,25.40,85663800,19.99 +2003-11-24,25.33,25.81,25.28,25.73,99463800,20.25 +2003-11-21,25.33,25.38,25.08,25.11,70712900,19.76 +2003-11-20,25.17,25.63,25.08,25.10,106845700,19.75 +2003-11-19,25.29,25.54,25.17,25.35,78853300,19.95 +2003-11-18,25.33,25.84,25.12,25.15,106868300,19.79 +2003-11-17,25.39,25.44,24.84,25.15,103900200,19.79 +2003-11-14,25.70,26.02,25.44,25.50,83146400,20.07 +2003-11-13,25.86,25.93,25.45,25.69,78949500,20.21 +2003-11-12,25.85,26.14,25.60,25.98,75877300,20.44 +2003-11-11,26.01,26.08,25.67,25.80,64990700,20.30 +2003-11-10,26.12,26.23,26.00,26.00,54579100,20.46 +2003-11-07,26.38,26.49,26.03,26.10,57822100,20.54 +2003-11-06,26.26,26.30,26.00,26.23,68189800,20.64 +2003-11-05,26.15,26.32,26.00,26.10,61514400,20.54 +2003-11-04,26.59,26.62,26.01,26.07,84026100,20.51 +2003-11-03,26.35,26.75,26.29,26.68,57772300,20.99 +2003-10-31,26.37,26.44,26.11,26.14,69623700,20.57 +2003-10-30,27.01,27.04,25.91,26.12,98729400,20.55 +2003-10-29,27.16,27.25,26.66,26.74,73551500,21.04 +2003-10-28,27.09,27.22,26.88,27.20,71752600,21.40 +2003-10-27,26.91,27.10,26.82,26.91,65619100,21.17 +2003-10-24,27.27,27.40,26.42,26.61,210558300,20.94 +2003-10-23,28.72,29.08,28.10,28.91,67357900,22.75 +2003-10-22,29.03,29.21,28.80,28.89,48798500,22.73 +2003-10-21,29.35,29.43,29.17,29.35,44166800,23.09 +2003-10-20,28.95,29.37,28.80,29.35,38794500,23.09 +2003-10-17,29.28,29.29,28.80,28.93,49960000,22.76 +2003-10-16,28.91,29.31,28.80,29.23,42232500,23.00 +2003-10-15,29.20,29.26,28.70,29.07,57242100,22.87 +2003-10-14,28.66,28.77,28.48,28.68,34851300,22.44 +2003-10-13,28.98,29.10,28.50,28.78,39320300,22.52 +2003-10-10,28.91,29.20,28.67,28.91,37604700,22.62 +2003-10-09,29.22,29.35,28.80,28.94,62653300,22.65 +2003-10-08,29.36,29.36,28.68,28.82,46989100,22.55 +2003-10-07,29.01,29.37,28.92,29.14,52356800,22.80 +2003-10-06,29.15,29.30,28.91,29.19,34047600,22.84 +2003-10-03,29.16,29.46,28.93,29.08,57303000,22.75 +2003-10-02,28.45,28.75,28.19,28.50,38143600,22.30 +2003-10-01,28.03,28.63,27.81,28.52,58375900,22.32 +2003-09-30,28.59,28.61,27.75,27.80,63333700,21.75 +2003-09-29,28.41,28.91,28.10,28.83,47380300,22.56 +2003-09-26,28.27,28.78,28.14,28.19,49864700,22.06 +2003-09-25,28.47,28.96,28.22,28.24,56224500,22.10 +2003-09-24,29.61,29.70,28.42,28.46,66336500,22.27 +2003-09-23,29.12,29.71,28.88,29.60,57827800,23.16 +2003-09-22,29.39,30.00,28.81,29.07,65678700,22.75 +2003-09-19,29.76,29.97,29.52,29.96,92433800,23.44 +2003-09-18,28.49,29.51,28.42,29.50,67268100,23.08 +2003-09-17,28.76,28.95,28.47,28.50,47221600,22.30 +2003-09-16,28.41,28.95,28.32,28.90,52060600,22.61 +2003-09-15,28.37,28.61,28.33,28.36,41432300,22.19 +2003-09-12,27.48,28.40,27.45,28.34,55777200,22.18 +2003-09-11,27.66,28.11,27.59,27.84,37813300,21.78 +2003-09-10,28.03,28.18,27.48,27.55,54763500,21.56 +2003-09-09,28.65,28.71,28.31,28.37,44315200,22.20 +2003-09-08,28.39,28.92,28.34,28.84,46105300,22.57 +2003-09-05,28.23,28.75,28.17,28.38,64024500,22.21 +2003-09-04,28.10,28.47,27.99,28.43,59840800,22.25 +2003-09-03,27.42,28.40,27.38,28.30,109437800,22.14 +2003-09-02,26.70,27.30,26.47,27.26,74168900,21.33 +2003-08-29,26.46,26.55,26.35,26.52,34503000,20.75 +2003-08-28,26.50,26.58,26.24,26.51,46211200,20.74 +2003-08-27,26.51,26.58,26.30,26.42,30633900,20.67 +2003-08-26,26.31,26.67,25.96,26.57,47546000,20.79 +2003-08-25,26.31,26.54,26.23,26.50,36132900,20.74 +2003-08-22,26.78,26.95,26.21,26.22,65846300,20.52 +2003-08-21,26.65,26.73,26.13,26.24,63802700,20.53 +2003-08-20,26.30,26.53,26.00,26.45,56739300,20.70 +2003-08-19,25.85,26.65,25.77,26.62,72952900,20.83 +2003-08-18,25.56,25.83,25.46,25.70,45817400,20.11 +2003-08-15,25.61,25.66,25.43,25.54,27607900,19.98 +2003-08-14,25.66,25.71,25.52,25.63,37338300,20.06 +2003-08-13,25.79,25.89,25.50,25.60,39636900,20.03 +2003-08-12,25.71,25.77,25.45,25.73,38208400,20.13 +2003-08-11,25.61,25.99,25.54,25.61,36433900,20.04 +2003-08-08,25.88,25.98,25.50,25.58,33241400,20.02 +2003-08-07,25.72,25.81,25.45,25.71,44258500,20.12 +2003-08-06,25.54,26.19,25.43,25.65,56294900,20.07 +2003-08-05,26.31,26.54,25.60,25.66,58825800,20.08 +2003-08-04,26.15,26.41,25.75,26.18,51825600,20.49 +2003-08-01,26.33,26.51,26.12,26.17,42649700,20.48 +2003-07-31,26.60,26.99,26.31,26.41,64504800,20.67 +2003-07-30,26.46,26.57,26.17,26.23,41240300,20.52 +2003-07-29,26.88,26.90,26.24,26.47,62391100,20.71 +2003-07-28,26.94,27.00,26.49,26.61,52658300,20.82 +2003-07-25,26.28,26.95,26.07,26.89,54173000,21.04 +2003-07-24,26.78,26.92,25.98,26.00,53556600,20.34 +2003-07-23,26.42,26.65,26.14,26.45,49828200,20.70 +2003-07-22,26.28,26.56,26.13,26.38,51791000,20.64 +2003-07-21,26.87,26.91,26.00,26.04,48480800,20.38 +2003-07-18,27.11,27.23,26.75,26.89,63388400,21.04 +2003-07-17,27.14,27.27,26.54,26.69,72805000,20.88 +2003-07-16,27.56,27.62,27.20,27.52,49838900,21.53 +2003-07-15,27.47,27.53,27.10,27.27,53567600,21.34 +2003-07-14,27.63,27.81,27.05,27.40,60464400,21.44 +2003-07-11,26.95,27.45,26.89,27.31,50377300,21.37 +2003-07-10,27.25,27.42,26.59,26.91,55350800,21.06 +2003-07-09,27.56,27.70,27.25,27.47,62300700,21.49 +2003-07-08,27.26,27.80,27.25,27.70,61896800,21.67 +2003-07-07,27.02,27.55,26.95,27.42,88960800,21.46 +2003-07-03,26.69,26.95,26.41,26.50,39440900,20.74 +2003-07-02,26.50,26.93,26.45,26.88,94069300,21.03 +2003-07-01,25.59,26.20,25.39,26.15,60926000,20.46 +2003-06-30,25.94,26.12,25.50,25.64,48073100,20.06 +2003-06-27,25.95,26.34,25.53,25.63,76040300,20.06 +2003-06-26,25.39,26.51,25.21,25.75,51758100,20.15 +2003-06-25,25.64,25.99,25.14,25.26,60483500,19.77 +2003-06-24,25.65,26.04,25.52,25.70,51820300,20.11 +2003-06-23,26.14,26.24,25.49,25.78,52584500,20.17 +2003-06-20,26.34,26.38,26.01,26.33,86048900,20.60 +2003-06-19,26.09,26.39,26.01,26.07,63626900,20.40 +2003-06-18,25.98,26.43,25.71,26.07,89957700,20.40 +2003-06-17,25.64,26.14,25.53,25.96,122213900,20.31 +2003-06-16,24.80,25.42,24.67,25.39,69658600,19.87 +2003-06-13,25.20,25.25,24.49,24.65,55157500,19.29 +2003-06-12,24.97,25.14,24.74,24.99,66177700,19.55 +2003-06-11,24.67,24.96,24.42,24.88,75768600,19.47 +2003-06-10,23.94,24.75,23.85,24.68,80655300,19.31 +2003-06-09,23.72,23.98,23.60,23.75,73610000,18.58 +2003-06-06,24.44,24.56,23.65,23.67,119629400,18.52 +2003-06-05,24.47,24.52,24.01,24.09,115877900,18.85 +2003-06-04,24.99,25.22,24.74,24.87,83484600,19.46 +2003-06-03,24.75,24.92,24.57,24.88,61058200,19.47 +2003-06-02,24.98,25.03,24.57,24.64,66310800,19.28 +2003-05-30,24.73,24.91,24.51,24.61,85096700,19.26 +2003-05-29,24.47,24.67,24.23,24.40,75451300,19.09 +2003-05-28,24.78,24.87,24.30,24.41,91467000,19.10 +2003-05-27,24.25,24.89,24.22,24.79,68486800,19.40 +2003-05-23,24.20,24.54,24.03,24.22,76968000,18.95 +2003-05-22,24.20,24.27,24.04,24.16,93157100,18.90 +2003-05-21,24.63,24.71,23.89,24.03,108960900,18.80 +2003-05-20,24.86,25.00,24.50,24.63,52677600,19.27 +2003-05-19,25.40,25.54,24.74,24.76,55336300,19.37 +2003-05-16,25.88,26.05,25.41,25.57,60620900,20.01 +2003-05-15,25.85,26.01,25.57,25.79,45450200,20.18 +2003-05-14,26.08,26.18,25.54,25.62,45021000,20.05 +2003-05-13,26.04,26.20,25.89,25.99,44501900,20.34 +2003-05-12,26.15,26.47,26.06,26.20,53900800,20.50 +2003-05-09,25.90,26.50,25.89,26.36,58913600,20.63 +2003-05-08,25.75,26.14,25.71,25.74,46401400,20.14 +2003-05-07,26.11,26.35,25.84,25.99,49120000,20.34 +2003-05-06,25.86,26.50,25.82,26.37,54299500,20.63 +2003-05-05,26.25,26.39,25.84,25.86,50391500,20.24 +2003-05-02,25.65,26.29,25.56,26.10,52695400,20.42 +2003-05-01,25.54,25.95,25.34,25.72,42085800,20.13 +2003-04-30,25.73,25.88,25.25,25.57,55566800,20.01 +2003-04-29,25.95,26.25,25.68,25.80,65877300,20.19 +2003-04-28,25.39,25.94,25.32,25.74,56287600,20.14 +2003-04-25,25.33,25.64,25.17,25.22,53657400,19.73 +2003-04-24,25.48,25.72,25.32,25.49,51703600,19.95 +2003-04-23,25.75,25.99,25.47,25.72,55559300,20.13 +2003-04-22,25.06,25.80,25.03,25.76,58844000,20.16 +2003-04-21,25.61,25.61,25.08,25.21,41557800,19.73 +2003-04-17,24.77,25.54,24.74,25.50,58356600,19.95 +2003-04-16,25.60,25.74,24.60,24.92,86178700,19.50 +2003-04-15,24.68,24.79,24.10,24.60,63399000,19.25 +2003-04-14,24.27,24.88,24.00,24.76,51599600,19.37 +2003-04-11,24.89,25.18,23.95,24.20,71565500,18.94 +2003-04-10,24.71,24.79,24.28,24.59,51608900,19.24 +2003-04-09,25.61,25.67,24.54,24.57,76875800,19.23 +2003-04-08,25.31,25.83,25.20,25.58,54132100,20.02 +2003-04-07,26.23,26.43,25.17,25.17,65627100,19.70 +2003-04-04,25.76,25.80,24.93,25.09,55740600,19.63 +2003-04-03,25.99,26.09,25.60,25.73,57394300,20.13 +2003-04-02,25.10,26.00,25.10,25.72,68282500,20.13 +2003-04-01,24.46,24.70,24.25,24.35,49803200,19.05 +2003-03-31,24.25,24.71,24.01,24.21,71384000,18.94 +2003-03-28,24.67,25.10,24.60,24.67,39584600,19.30 +2003-03-27,24.94,25.26,24.59,25.04,60043300,19.59 +2003-03-26,25.46,25.62,25.24,25.25,51673600,19.76 +2003-03-25,25.60,25.75,25.03,25.49,63595100,19.95 +2003-03-24,25.55,25.93,25.18,25.29,61105200,19.79 +2003-03-21,26.75,26.80,26.03,26.57,85586800,20.79 +2003-03-20,26.02,26.52,25.67,26.25,71798500,20.54 +2003-03-19,25.98,26.43,25.74,26.32,73652100,20.60 +2003-03-18,25.89,26.04,25.50,26.04,78108800,20.38 +2003-03-17,24.52,25.95,24.33,25.93,100983800,20.29 +2003-03-14,24.68,24.96,24.26,24.86,75451400,19.45 +2003-03-13,23.72,24.74,23.44,24.67,80701300,19.30 +2003-03-12,22.81,23.44,22.55,23.39,72379500,18.30 +2003-03-11,23.06,23.26,22.76,22.80,53990700,17.84 +2003-03-10,23.31,23.46,22.89,22.95,48413600,17.96 +2003-03-07,22.95,23.79,22.90,23.56,66167600,18.44 +2003-03-06,23.17,23.50,23.13,23.27,54607600,18.21 +2003-03-05,23.07,23.55,23.05,23.44,55415900,18.34 +2003-03-04,23.58,23.66,23.06,23.07,56605700,18.05 +2003-03-03,24.02,24.12,23.40,23.54,50653500,18.42 +2003-02-28,23.74,24.07,23.55,23.70,56585400,18.54 +2003-02-27,23.90,24.21,23.30,23.58,75434300,18.45 +2003-02-26,24.07,24.47,23.58,23.61,57096000,18.47 +2003-02-25,23.54,24.27,23.38,24.19,68113000,18.93 +2003-02-24,24.44,24.50,23.84,24.07,62403700,18.83 +2003-02-21,24.29,24.80,23.70,24.63,56853200,19.27 +2003-02-20,24.77,24.87,24.10,24.14,50897200,18.89 +2003-02-19,24.82,24.88,24.17,24.53,46902700,19.19 +2003-02-18,24.62,24.99,24.40,24.96,57415500,19.47 +2003-02-14,47.25,48.50,46.77,48.30,90446400,18.84 +2003-02-13,46.41,47.12,46.13,46.99,73558200,18.33 +2003-02-12,46.55,47.10,46.26,46.44,71315200,18.11 +2003-02-11,47.30,47.67,46.00,46.44,84292000,18.11 +2003-02-10,46.80,47.52,46.54,47.38,74081400,18.48 +2003-02-07,47.88,47.95,46.41,46.58,75208000,18.17 +2003-02-06,46.86,47.62,46.56,47.42,83312000,18.49 +2003-02-05,47.83,48.53,46.73,46.96,101072000,18.31 +2003-02-04,47.80,47.94,46.88,47.32,81854800,18.45 +2003-02-03,47.93,49.10,47.46,48.56,80129800,18.94 +2003-01-31,47.45,48.35,47.03,47.46,106858400,18.51 +2003-01-30,50.16,50.17,48.19,48.24,87877400,18.81 +2003-01-29,48.73,50.04,47.93,49.91,106884000,19.46 +2003-01-28,49.69,49.70,48.56,48.82,86151200,19.04 +2003-01-27,49.32,50.60,48.41,49.17,114838600,19.18 +2003-01-24,52.03,52.05,49.70,49.85,103027000,19.44 +2003-01-23,51.95,52.54,51.46,52.28,71374800,20.39 +2003-01-22,51.59,52.40,50.91,51.00,86948000,19.89 +2003-01-21,51.87,52.15,51.29,51.33,86159200,20.02 +2003-01-17,52.94,53.00,51.31,51.46,155876000,20.07 +2003-01-16,56.32,56.65,55.11,55.35,81371000,21.59 +2003-01-15,57.00,57.32,56.19,56.27,59622600,21.94 +2003-01-14,56.33,57.00,56.19,56.97,54206400,22.22 +2003-01-13,56.52,56.75,55.77,56.39,60817800,21.99 +2003-01-10,55.10,56.30,54.90,55.92,67730200,21.81 +2003-01-09,54.72,55.92,54.53,55.81,61808000,21.77 +2003-01-08,55.37,55.55,54.11,54.24,64566000,21.15 +2003-01-07,54.92,56.01,54.68,55.80,80517400,21.76 +2003-01-06,54.02,55.23,53.80,54.77,59456200,21.36 +2003-01-03,53.59,53.80,52.88,53.79,55546800,20.98 +2003-01-02,52.30,53.75,51.71,53.72,67025200,20.95 +2002-12-31,52.74,52.99,51.26,51.70,58208800,20.16 +2002-12-30,53.01,53.24,52.27,52.75,48019600,20.57 +2002-12-27,53.28,54.00,52.90,52.97,40891600,20.66 +2002-12-26,54.03,54.69,53.17,53.39,37228000,20.82 +2002-12-24,53.54,54.23,53.52,53.82,18386000,20.99 +2002-12-23,53.05,54.28,52.90,54.00,48798400,21.06 +2002-12-20,53.49,53.72,52.95,53.04,98294600,20.69 +2002-12-19,53.25,54.75,52.88,53.11,82686600,20.71 +2002-12-18,53.84,54.40,52.79,53.53,62709400,20.88 +2002-12-17,54.42,54.99,53.78,54.36,49549800,21.20 +2002-12-16,53.00,54.55,52.67,54.48,60140400,21.25 +2002-12-13,53.68,53.75,52.49,52.50,65245400,20.47 +2002-12-12,55.00,55.06,53.69,54.17,55242000,21.13 +2002-12-11,53.85,55.01,53.58,54.66,69186200,21.32 +2002-12-10,53.56,54.48,53.48,54.01,63730200,21.06 +2002-12-09,55.00,55.22,53.51,53.53,63862800,20.88 +2002-12-06,54.87,55.74,54.22,55.47,71670200,21.63 +2002-12-05,56.95,57.09,55.30,55.34,68435800,21.58 +2002-12-04,56.13,57.44,55.82,56.54,83892000,22.05 +2002-12-03,57.28,57.35,56.41,56.71,58457400,22.12 +2002-12-02,58.65,58.96,57.01,57.69,63735000,22.50 +2002-11-29,58.43,58.63,57.68,57.68,28393000,22.49 +2002-11-27,57.60,58.61,57.40,58.08,55191800,22.65 +2002-11-26,57.64,58.25,56.78,56.90,68650400,22.19 +2002-11-25,58.06,58.64,57.57,58.23,61583000,22.71 +2002-11-22,57.45,58.30,57.05,58.22,70002000,22.71 +2002-11-21,56.98,58.00,56.78,57.84,82922200,22.56 +2002-11-20,55.01,56.90,54.93,56.62,76435400,22.08 +2002-11-19,55.55,55.80,54.31,54.86,76403400,21.39 +2002-11-18,56.95,57.03,55.74,55.85,58086400,21.78 +2002-11-15,56.60,56.92,55.67,56.69,77533600,22.11 +2002-11-14,55.99,57.00,55.87,56.99,78337000,22.23 +2002-11-13,54.24,55.93,54.11,55.36,107370200,21.59 +2002-11-12,54.10,55.43,53.90,54.51,81398600,21.26 +2002-11-11,55.07,55.10,53.82,53.86,58341200,21.00 +2002-11-08,56.00,56.55,55.01,55.10,64522200,21.49 +2002-11-07,56.20,56.62,55.50,56.01,73699600,21.84 +2002-11-06,56.99,57.10,55.53,57.03,115407000,22.24 +2002-11-05,55.78,56.80,55.58,56.68,76658200,22.10 +2002-11-04,56.75,57.25,55.52,56.10,139964200,21.88 +2002-11-01,52.43,53.24,51.90,53.00,105097800,20.67 +2002-10-31,53.19,54.07,52.85,53.47,105973800,20.85 +2002-10-30,52.20,53.39,51.63,53.11,94451200,20.71 +2002-10-29,52.15,52.49,50.85,52.07,90517200,20.31 +2002-10-28,53.40,53.50,51.51,51.95,79906600,20.26 +2002-10-25,51.25,52.80,51.16,52.68,75425800,20.54 +2002-10-24,53.36,53.37,50.90,51.23,95833400,19.98 +2002-10-23,51.43,53.26,51.43,53.20,110866600,20.75 +2002-10-22,51.43,51.93,51.03,51.67,87159000,20.15 +2002-10-21,51.97,52.99,51.36,52.51,112378600,20.48 +2002-10-18,52.60,53.20,51.14,53.15,152817200,20.73 +2002-10-17,52.28,52.50,50.05,50.77,182602400,19.80 +2002-10-16,50.39,51.26,50.28,50.41,95437400,19.66 +2002-10-15,51.26,52.37,50.65,52.29,133374200,20.39 +2002-10-14,48.25,49.33,47.84,49.29,76216200,19.22 +2002-10-11,47.36,48.90,47.01,48.87,108828800,19.06 +2002-10-10,44.00,46.62,43.25,46.38,118515000,18.09 +2002-10-09,44.23,45.45,43.81,43.99,123142600,17.16 +2002-10-08,44.75,45.98,44.13,44.99,115667600,17.55 +2002-10-07,43.81,45.06,43.69,44.05,89790000,17.18 +2002-10-04,45.39,45.57,43.69,43.77,107120400,17.07 +2002-10-03,45.30,46.59,44.60,44.80,105221400,17.47 +2002-10-02,46.10,46.81,45.16,45.61,103488600,17.79 +2002-10-01,44.32,46.25,43.19,46.23,110636600,18.03 +2002-09-30,44.87,45.04,43.11,43.74,115577000,17.06 +2002-09-27,46.04,47.10,45.19,45.25,81011600,17.65 +2002-09-26,47.11,47.50,45.95,46.20,100852200,18.02 +2002-09-25,46.40,46.96,45.05,46.51,107116600,18.14 +2002-09-24,44.83,46.48,44.63,45.64,104142200,17.80 +2002-09-23,46.60,46.71,44.81,45.23,89783800,17.64 +2002-09-20,47.71,48.00,47.30,47.46,130619200,18.51 +2002-09-19,46.68,47.82,46.59,47.20,77777600,18.41 +2002-09-18,46.72,48.24,46.66,47.75,83951800,18.62 +2002-09-17,48.67,48.90,47.21,47.29,73343400,18.44 +2002-09-16,47.60,48.13,47.05,47.78,50166200,18.63 +2002-09-13,46.90,48.26,46.85,47.91,59549200,18.68 +2002-09-12,48.15,48.30,47.02,47.15,63726800,18.39 +2002-09-11,50.23,51.10,48.53,48.58,77443200,18.95 +2002-09-10,48.54,49.82,48.35,49.79,83950000,19.42 +2002-09-09,47.25,48.95,46.63,48.70,81653200,18.99 +2002-09-06,47.75,48.27,47.47,47.82,69918400,18.65 +2002-09-05,47.50,47.52,45.88,45.91,90438800,17.90 +2002-09-04,47.45,48.60,47.15,48.21,80232000,18.80 +2002-09-03,48.52,48.52,47.00,47.02,74452600,18.34 +2002-08-30,50.14,50.48,49.00,49.08,58138400,19.14 +2002-08-29,48.89,51.00,48.52,50.58,94275600,19.73 +2002-08-28,50.48,50.66,49.30,49.38,68875000,19.26 +2002-08-27,52.33,52.45,50.65,50.84,65470200,19.83 +2002-08-26,52.50,52.65,51.18,52.10,55652400,20.32 +2002-08-23,52.66,52.85,51.84,52.22,57929200,20.37 +2002-08-22,52.85,53.45,52.60,53.23,72517600,20.76 +2002-08-21,51.56,52.38,51.15,52.28,81203400,20.39 +2002-08-20,51.38,51.70,50.75,51.04,70317600,19.91 +2002-08-19,50.04,52.05,49.85,52.00,79848200,20.28 +2002-08-16,49.43,50.23,48.92,50.00,69334000,19.50 +2002-08-15,49.96,50.74,48.75,49.77,98745600,19.41 +2002-08-14,47.25,49.73,47.21,49.71,96706000,19.39 +2002-08-13,47.99,49.70,46.92,47.06,100122800,18.35 +2002-08-12,47.61,48.75,47.60,48.47,56866600,18.90 +2002-08-09,48.15,49.15,47.66,48.12,69049400,18.77 +2002-08-08,47.11,49.00,46.41,48.91,88748000,19.07 +2002-08-07,47.00,47.30,45.16,47.09,86349400,18.36 +2002-08-06,44.90,47.25,44.84,45.67,88715800,17.81 +2002-08-05,44.29,45.17,43.81,43.99,78941600,17.16 +2002-08-02,45.51,45.85,43.80,44.41,85947600,17.32 +2002-08-01,47.58,48.09,45.50,45.75,92002800,17.84 +2002-07-31,47.61,48.00,46.36,47.98,93875600,18.71 +2002-07-30,47.55,48.83,47.33,48.10,122690600,18.76 +2002-07-29,46.85,48.30,46.55,48.25,112148600,18.82 +2002-07-26,43.74,45.41,43.68,45.35,123538000,17.69 +2002-07-25,45.45,45.71,42.44,42.83,163411400,16.70 +2002-07-24,41.75,46.36,41.41,46.23,202307800,18.03 +2002-07-23,46.49,46.80,42.97,43.01,168061600,16.77 +2002-07-22,48.95,49.99,45.90,47.51,180069800,18.53 +2002-07-19,49.87,50.89,48.81,49.56,112543400,19.33 +2002-07-18,52.06,52.74,50.66,51.11,91053600,19.93 +2002-07-17,52.52,53.30,51.17,52.00,98034800,20.28 +2002-07-16,51.31,52.80,50.64,51.25,97154600,19.99 +2002-07-15,51.39,51.86,48.00,51.80,136965600,20.20 +2002-07-12,53.37,53.73,51.48,51.86,95733800,20.22 +2002-07-11,52.04,53.07,51.25,52.91,129550600,20.63 +2002-07-10,53.69,54.20,52.13,52.24,90673400,20.37 +2002-07-09,53.31,54.73,52.97,53.21,85277200,20.75 +2002-07-08,54.41,54.93,52.58,52.92,63199400,20.64 +2002-07-05,53.09,54.90,53.05,54.85,35673600,21.39 +2002-07-03,51.24,52.52,50.45,51.84,80936600,20.22 +2002-07-02,52.38,52.92,51.33,51.44,82814200,20.06 +2002-07-01,54.12,54.39,52.58,52.66,66473800,20.54 +2002-06-28,54.55,55.79,54.00,54.70,89555600,21.33 +2002-06-27,54.60,54.94,52.86,54.92,95812400,21.42 +2002-06-26,51.05,54.39,51.05,54.13,112131400,21.11 +2002-06-25,54.70,55.00,52.80,52.95,84025200,20.65 +2002-06-24,52.09,54.64,51.85,54.16,104523200,21.12 +2002-06-21,53.40,54.55,52.28,52.28,116820000,20.39 +2002-06-20,54.37,55.10,53.90,54.10,86401200,21.10 +2002-06-19,55.47,55.94,54.32,54.36,81247000,21.20 +2002-06-18,55.53,56.29,55.35,55.99,77518400,21.84 +2002-06-17,55.66,56.44,55.37,55.68,94486600,21.71 +2002-06-14,53.15,55.55,53.00,55.25,109433600,21.55 +2002-06-13,54.84,55.48,54.20,54.22,79771600,21.15 +2002-06-12,52.58,55.78,52.50,55.54,136198600,21.66 +2002-06-11,53.24,54.18,52.42,52.57,74368200,20.50 +2002-06-10,51.65,53.30,51.46,52.82,71825400,20.60 +2002-06-07,49.89,52.60,49.86,51.98,97834400,20.27 +2002-06-06,51.50,52.14,50.00,51.90,78703400,20.24 +2002-06-05,50.43,51.75,50.33,51.66,66969400,20.15 +2002-06-04,49.50,51.23,49.24,49.98,88008400,19.49 +2002-06-03,50.99,51.64,49.17,49.42,88439000,19.27 +2002-05-31,52.90,53.42,50.88,50.91,66468000,19.85 +2002-05-30,51.64,53.36,51.43,52.64,63213000,20.53 +2002-05-29,51.65,52.72,51.55,52.05,45393200,20.30 +2002-05-28,53.59,53.69,51.75,52.32,49602000,20.40 +2002-05-24,54.14,54.52,53.04,53.26,35982000,20.77 +2002-05-23,53.70,54.84,53.01,54.82,51412800,21.38 +2002-05-22,51.87,53.72,51.85,53.69,54169400,20.94 +2002-05-21,53.95,54.60,52.13,52.19,63120000,20.35 +2002-05-20,55.50,55.55,53.50,54.01,52115800,21.06 +2002-05-17,56.21,56.40,55.27,56.03,54646200,21.85 +2002-05-16,54.71,56.03,54.65,55.74,53406400,21.74 +2002-05-15,54.49,56.44,53.86,54.75,70412000,21.35 +2002-05-14,54.40,55.10,53.98,54.88,64832400,21.40 +2002-05-13,50.45,52.91,49.75,52.69,64819000,20.55 +2002-05-10,52.53,52.67,49.99,50.05,64408800,19.52 +2002-05-09,54.40,55.00,51.90,52.12,83288200,20.33 +2002-05-08,51.27,54.97,51.22,54.97,101242000,21.44 +2002-05-07,49.18,50.29,48.35,49.47,88385400,19.29 +2002-05-06,49.44,50.54,48.37,48.62,66299400,18.96 +2002-05-03,51.26,51.68,49.51,49.56,71628000,19.33 +2002-05-02,52.64,54.07,51.15,51.21,79009200,19.97 +2002-05-01,52.16,53.19,50.66,52.75,76413000,20.57 +2002-04-30,52.10,53.30,51.92,52.26,77384000,20.38 +2002-04-29,51.47,52.91,51.44,52.24,70246000,20.37 +2002-04-26,54.07,54.45,51.46,51.50,62776600,20.08 +2002-04-25,52.90,54.45,52.88,53.73,57290400,20.95 +2002-04-24,53.85,54.43,53.00,53.02,61220400,20.68 +2002-04-23,55.70,55.82,53.30,53.99,68281400,21.06 +2002-04-22,56.52,56.70,55.00,55.59,51465200,21.68 +2002-04-19,57.44,57.98,56.86,57.20,104268600,22.31 +2002-04-18,56.79,57.31,52.68,56.37,74794800,21.98 +2002-04-17,57.95,58.28,56.42,56.63,55158600,22.09 +2002-04-16,56.40,58.10,56.36,57.81,51921600,22.55 +2002-04-15,56.00,56.75,55.40,55.69,47388800,21.72 +2002-04-12,55.15,56.26,54.86,55.93,52297600,21.81 +2002-04-11,55.89,56.45,54.50,54.79,58165800,21.37 +2002-04-10,55.12,57.11,55.06,56.30,75636400,21.96 +2002-04-09,57.33,57.43,54.80,54.87,63413000,21.40 +2002-04-08,54.30,57.31,54.26,57.22,73389600,22.32 +2002-04-05,56.89,57.30,55.84,55.87,50166000,21.79 +2002-04-04,55.98,56.97,55.42,56.45,61763800,22.01 +2002-04-03,57.44,57.61,55.50,56.33,76931400,21.97 +2002-04-02,58.90,59.09,57.11,57.28,76509400,22.34 +2002-04-01,59.83,60.40,59.20,60.38,47010000,23.55 +2002-03-28,59.95,60.65,59.66,60.31,43901200,23.52 +2002-03-27,58.80,59.88,58.59,59.44,47318400,23.18 +2002-03-26,59.10,60.92,58.31,59.08,69357200,23.04 +2002-03-25,60.48,60.78,59.15,59.23,47752400,23.10 +2002-03-22,61.05,61.14,60.22,60.45,41341400,23.57 +2002-03-21,60.21,61.59,59.83,61.36,46123400,23.93 +2002-03-20,61.40,62.02,60.10,60.10,55235200,23.44 +2002-03-19,62.18,63.00,61.50,62.23,36376400,24.27 +2002-03-18,62.74,62.99,61.20,62.14,52296800,24.23 +2002-03-15,61.00,62.51,60.97,62.49,69086800,24.37 +2002-03-14,62.14,62.24,61.05,61.22,51819600,23.88 +2002-03-13,62.08,63.02,61.95,62.10,44387400,24.22 +2002-03-12,62.52,62.80,61.67,62.54,66407200,24.39 +2002-03-11,63.51,65.00,63.00,64.34,43718200,25.09 +2002-03-08,63.63,64.70,63.17,63.95,57701800,24.94 +2002-03-07,63.67,63.88,61.86,62.72,58079200,24.46 +2002-03-06,62.91,63.70,62.19,63.63,49835400,24.82 +2002-03-05,63.00,63.88,62.34,63.08,55926400,24.60 +2002-03-04,61.24,63.50,60.87,63.30,74464200,24.69 +2002-03-01,59.05,61.42,58.85,61.37,62115600,23.93 +2002-02-28,58.78,59.70,58.14,58.34,68068000,22.75 +2002-02-27,59.07,60.15,57.99,58.39,65750000,22.77 +2002-02-26,59.10,60.00,57.90,58.55,63276200,22.83 +2002-02-25,57.94,59.89,57.89,59.08,51832200,23.04 +2002-02-22,58.05,58.75,57.15,57.99,71347800,22.62 +2002-02-21,59.72,60.27,58.01,58.05,59398400,22.64 +2002-02-20,59.40,60.36,58.80,59.90,50492000,23.36 +2002-02-19,59.91,60.14,58.60,58.93,52262600,22.98 +2002-02-15,61.70,62.06,60.20,60.23,50179800,23.49 +2002-02-14,62.00,62.99,61.32,61.68,57267000,24.05 +2002-02-13,60.26,61.88,59.95,61.82,54168600,24.11 +2002-02-12,60.49,60.85,60.02,60.14,44973800,23.45 +2002-02-11,60.01,61.24,59.59,61.13,50899600,23.84 +2002-02-08,60.12,60.66,58.83,60.65,61283000,23.65 +2002-02-07,60.30,61.61,59.75,59.80,63314000,23.32 +2002-02-06,61.61,61.89,60.25,60.40,66103000,23.56 +2002-02-05,60.80,62.23,60.50,61.15,66772600,23.85 +2002-02-04,62.40,62.69,60.75,61.12,70308400,23.84 +2002-02-01,64.15,64.50,62.47,62.66,63462200,24.44 +2002-01-31,63.06,63.81,62.12,63.71,69566200,24.85 +2002-01-30,62.45,62.90,61.33,62.85,66100000,24.51 +2002-01-29,63.90,64.50,61.99,62.32,58666000,24.30 +2002-01-28,64.23,64.40,62.91,63.82,41622000,24.89 +2002-01-25,64.19,64.85,63.51,63.80,48981200,24.88 +2002-01-24,64.10,65.18,63.80,64.60,83886000,25.19 +2002-01-23,64.05,64.71,63.24,63.74,80403000,24.86 +2002-01-22,66.61,66.63,64.25,64.46,76837200,25.14 +2002-01-18,67.10,67.85,65.42,66.10,107140400,25.78 +2002-01-17,68.53,70.00,68.40,69.86,78958000,27.24 +2002-01-16,68.85,69.84,67.85,67.87,61955400,26.47 +2002-01-15,68.66,69.62,68.50,69.55,60717400,27.12 +2002-01-14,68.30,69.04,67.74,68.47,50997800,26.70 +2002-01-11,69.52,70.32,68.10,68.61,72993200,26.76 +2002-01-10,68.48,69.80,68.13,69.28,50296600,27.02 +2002-01-09,69.72,70.62,68.55,68.71,76304000,26.80 +2002-01-08,68.69,69.86,68.00,69.38,47736400,27.06 +2002-01-07,69.75,70.02,68.35,68.56,58508800,26.74 +2002-01-04,69.25,69.91,68.67,68.90,52731400,26.87 +2002-01-03,67.11,69.25,67.09,69.23,67590800,27.00 +2002-01-02,66.65,67.11,65.51,67.04,48124000,26.14 +2001-12-31,67.84,68.48,66.25,66.25,43006200,25.84 +2001-12-28,68.23,68.85,67.70,67.87,28787200,26.47 +2001-12-27,67.98,68.71,67.26,67.85,32406600,26.46 +2001-12-26,67.42,69.07,67.39,67.68,29328000,26.39 +2001-12-24,67.72,68.03,67.20,67.27,11701600,26.23 +2001-12-21,68.01,68.02,67.00,67.54,84307600,26.34 +2001-12-20,69.15,69.25,66.62,66.76,78585000,26.04 +2001-12-19,68.62,69.89,68.45,69.49,56996200,27.10 +2001-12-18,68.92,69.40,68.60,69.27,47255200,27.01 +2001-12-17,67.17,69.11,67.16,68.98,57079800,26.90 +2001-12-14,66.02,67.95,65.93,67.44,43000600,26.30 +2001-12-13,67.13,68.24,66.07,66.27,53227800,25.84 +2001-12-12,67.16,67.98,66.25,67.95,47884200,26.50 +2001-12-11,67.66,68.13,67.07,67.32,54334000,26.25 +2001-12-10,67.52,68.45,66.86,67.06,38367400,26.15 +2001-12-07,68.25,68.84,66.55,67.83,42334800,26.45 +2001-12-06,67.98,69.00,67.55,68.65,56026200,26.77 +2001-12-05,66.49,68.17,65.20,68.10,74243000,26.56 +2001-12-04,65.00,66.08,64.10,66.00,51005800,25.74 +2001-12-03,63.83,65.23,63.80,64.77,47211800,25.26 +2001-11-30,64.66,65.08,63.93,64.21,48234200,25.04 +2001-11-29,63.12,64.90,62.95,64.84,54034400,25.29 +2001-11-28,63.17,64.12,62.73,62.80,54536600,24.49 +2001-11-27,64.79,65.07,62.75,63.74,90819000,24.86 +2001-11-26,64.99,65.71,64.40,65.14,41983600,25.40 +2001-11-23,64.38,64.81,63.62,64.71,15754600,25.24 +2001-11-21,64.36,64.60,63.48,64.05,50785200,24.98 +2001-11-20,66.45,67.80,65.03,65.40,65921800,25.51 +2001-11-19,66.25,66.97,65.70,66.54,56005000,25.95 +2001-11-16,66.36,66.61,64.95,65.75,59249000,25.64 +2001-11-15,66.10,67.05,65.45,66.12,77922000,25.79 +2001-11-14,68.23,68.34,65.79,65.95,88625600,25.72 +2001-11-13,66.80,67.95,66.60,67.90,60159600,26.48 +2001-11-12,64.70,66.44,63.65,65.79,57752800,25.66 +2001-11-09,64.34,65.65,63.91,65.21,48013600,25.43 +2001-11-08,64.46,66.06,63.66,64.42,74227800,25.12 +2001-11-07,64.22,65.05,64.03,64.25,58899000,25.06 +2001-11-06,62.70,64.94,62.16,64.78,68612000,25.26 +2001-11-05,61.86,64.03,61.75,63.27,66401600,24.67 +2001-11-02,61.93,63.02,60.51,61.40,83360000,23.95 +2001-11-01,60.08,62.25,59.60,61.84,109671200,24.12 +2001-10-31,59.30,60.73,58.10,58.15,64700000,22.68 +2001-10-30,58.92,59.54,58.19,58.88,57395600,22.96 +2001-10-29,62.10,62.20,59.54,59.64,55129400,23.26 +2001-10-26,62.32,63.63,62.08,62.20,64509400,24.26 +2001-10-25,60.61,62.60,59.57,62.56,75318200,24.40 +2001-10-24,60.50,61.62,59.62,61.32,79141400,23.91 +2001-10-23,60.47,61.44,59.40,60.43,80325000,23.57 +2001-10-22,57.90,60.18,57.47,60.16,72323600,23.46 +2001-10-19,57.40,58.01,55.63,57.90,91219600,22.58 +2001-10-18,56.34,57.58,55.50,56.75,78348000,22.13 +2001-10-17,59.12,59.30,55.98,56.03,73710600,21.85 +2001-10-16,57.87,58.91,57.21,58.45,66169000,22.79 +2001-10-15,55.90,58.50,55.85,58.06,68437000,22.64 +2001-10-12,55.70,56.64,54.55,56.38,63307000,21.99 +2001-10-11,55.76,56.84,54.59,56.32,83742600,21.96 +2001-10-10,53.60,55.75,53.00,55.51,86349200,21.65 +2001-10-09,57.50,57.57,54.19,54.56,99477600,21.28 +2001-10-08,56.80,58.65,56.74,58.04,60605800,22.64 +2001-10-05,56.16,58.00,54.94,57.72,80844400,22.51 +2001-10-04,56.92,58.40,56.21,56.44,101778000,22.01 +2001-10-03,52.48,56.93,52.40,56.23,97199200,21.93 +2001-10-02,51.63,53.55,51.56,53.05,80860800,20.69 +2001-10-01,50.94,52.50,50.41,51.79,69999600,20.20 +2001-09-28,49.62,51.59,48.98,51.17,116641200,19.96 +2001-09-27,50.10,50.68,48.00,49.96,81191200,19.48 +2001-09-26,51.51,51.80,49.55,50.27,58524400,19.60 +2001-09-25,52.27,53.00,50.16,51.30,84940600,20.01 +2001-09-24,50.65,52.45,49.87,52.01,85580200,20.28 +2001-09-21,47.92,50.60,47.50,49.71,184976600,19.39 +2001-09-20,52.35,52.61,50.67,50.76,117983200,19.80 +2001-09-19,54.46,54.70,50.60,53.87,126950200,21.01 +2001-09-18,53.41,55.00,53.17,54.32,83182600,21.18 +2001-09-17,54.02,55.10,52.80,52.91,127502000,20.63 +2001-09-10,54.92,57.95,54.70,57.58,84471800,22.46 +2001-09-07,56.11,57.36,55.31,55.40,89863800,21.61 +2001-09-06,56.56,58.39,55.90,56.02,112356800,21.85 +2001-09-05,56.18,58.39,55.39,57.74,89470600,22.52 +2001-09-04,57.19,59.08,56.07,56.10,67189200,21.88 +2001-08-31,56.85,58.06,56.30,57.05,57900800,22.25 +2001-08-30,59.04,59.66,56.52,56.94,97632000,22.21 +2001-08-29,61.05,61.30,59.54,60.25,48170000,23.50 +2001-08-28,62.34,62.95,60.58,60.74,47422800,23.69 +2001-08-27,61.90,63.36,61.57,62.31,44562800,24.30 +2001-08-24,59.60,62.28,59.23,62.05,63399000,24.20 +2001-08-23,60.67,61.53,59.00,59.12,51813200,23.06 +2001-08-22,61.13,61.15,59.08,60.66,78107200,23.66 +2001-08-21,62.70,63.20,60.71,60.78,47111800,23.70 +2001-08-20,61.66,62.75,61.10,62.70,48371200,24.45 +2001-08-17,63.78,64.13,61.50,61.88,52234200,24.13 +2001-08-16,62.84,64.71,62.70,64.62,43905600,25.20 +2001-08-15,64.71,65.05,63.20,63.20,39503000,24.65 +2001-08-14,65.75,66.09,64.45,64.69,36481200,25.23 +2001-08-13,65.24,65.99,64.75,65.83,32675400,25.67 +2001-08-10,64.77,65.86,62.90,65.52,51756400,25.55 +2001-08-09,64.98,65.55,64.30,65.01,45536200,25.35 +2001-08-08,66.51,67.24,64.49,64.86,54996400,25.29 +2001-08-07,66.04,67.05,65.99,66.35,31347800,25.88 +2001-08-06,66.53,67.12,65.68,66.13,27831600,25.79 +2001-08-03,67.30,67.36,66.00,66.89,43260400,26.09 +2001-08-02,67.21,67.54,66.26,67.45,54198400,26.30 +2001-08-01,66.80,66.81,65.76,66.47,55679000,25.92 +2001-07-31,66.01,67.39,65.85,66.19,59031600,25.81 +2001-07-30,65.65,66.88,65.54,65.80,42196400,25.66 +2001-07-27,66.05,66.25,65.05,65.47,65396000,25.53 +2001-07-26,67.12,67.32,65.50,66.59,77974000,25.97 +2001-07-25,66.26,67.52,65.61,67.48,74065400,26.32 +2001-07-24,67.00,67.99,65.70,66.32,67530200,25.86 +2001-07-23,69.24,69.24,66.35,67.09,79999400,26.16 +2001-07-20,68.03,69.40,67.94,69.18,124203600,26.98 +2001-07-19,71.22,73.00,71.22,72.57,76549400,28.30 +2001-07-18,70.60,71.50,69.87,70.57,57590800,27.52 +2001-07-17,70.66,72.01,70.14,71.82,63241000,28.01 +2001-07-16,71.45,72.16,70.15,71.18,55990800,27.76 +2001-07-13,71.40,72.00,70.94,71.34,58934600,27.82 +2001-07-12,70.70,72.05,70.33,71.60,128078000,27.92 +2001-07-11,64.21,66.75,64.20,66.50,73822600,25.93 +2001-07-10,65.90,66.25,64.35,64.48,66562600,25.15 +2001-07-09,66.20,66.91,65.04,65.69,66476600,25.62 +2001-07-06,68.30,68.40,65.67,66.06,67467800,25.76 +2001-07-05,70.22,70.72,68.44,68.51,49242600,26.72 +2001-07-03,70.30,70.80,69.93,70.47,28037400,27.48 +2001-07-02,72.05,73.15,70.15,70.60,72810200,27.53 +2001-06-29,72.60,73.41,71.40,73.00,94283800,28.47 +2001-06-28,71.55,76.15,70.53,72.74,128975600,28.37 +2001-06-27,69.86,71.53,69.36,71.14,69199800,27.74 +2001-06-26,67.82,70.21,67.70,70.14,63077000,27.35 +2001-06-25,69.10,69.81,67.77,68.85,49215600,26.85 +2001-06-22,70.00,70.61,68.58,68.83,51092000,26.84 +2001-06-21,69.15,70.55,68.92,69.84,69603800,27.24 +2001-06-20,67.14,69.59,67.10,69.41,64108400,27.07 +2001-06-19,68.21,68.85,66.85,67.32,63457400,26.25 +2001-06-18,67.95,67.96,66.01,66.88,56846800,26.08 +2001-06-15,67.51,68.30,66.40,68.02,108354400,26.53 +2001-06-14,70.22,70.55,68.40,68.90,71972400,26.87 +2001-06-13,72.05,72.30,70.64,70.69,55302400,27.57 +2001-06-12,71.02,72.41,70.81,72.08,66714600,28.11 +2001-06-11,72.85,72.85,71.51,72.12,47345600,28.13 +2001-06-08,73.70,73.75,72.05,73.19,51867000,28.54 +2001-06-07,72.12,73.73,72.08,73.68,66960000,28.73 +2001-06-06,72.89,73.48,71.55,72.36,80022800,28.22 +2001-06-05,70.76,73.08,70.50,72.60,89454200,28.31 +2001-06-04,70.55,71.02,69.80,70.78,43736600,27.60 +2001-06-01,69.60,70.70,68.70,70.34,57587600,27.43 +2001-05-31,69.49,70.38,68.40,69.18,70682600,26.98 +2001-05-30,69.56,70.58,68.65,69.19,86501800,26.98 +2001-05-29,70.80,71.75,70.05,70.34,71210800,27.43 +2001-05-25,71.66,71.90,70.36,70.91,52747600,27.65 +2001-05-24,69.94,71.78,69.27,71.72,80781600,27.97 +2001-05-23,70.39,71.60,69.51,69.70,93637400,27.18 +2001-05-22,69.45,70.35,69.18,70.31,83455600,27.42 +2001-05-21,68.05,69.99,67.75,68.79,103491600,26.83 +2001-05-18,67.69,69.20,67.25,68.09,90605400,26.55 +2001-05-17,69.10,70.14,67.55,68.17,106984800,26.59 +2001-05-16,67.70,69.88,67.33,69.16,91893800,26.97 +2001-05-15,68.74,69.30,68.00,68.27,61385600,26.62 +2001-05-14,69.13,69.20,68.30,68.72,44968000,26.80 +2001-05-11,69.96,70.00,68.65,69.40,51128800,27.07 +2001-05-10,71.13,71.24,69.96,70.00,64334600,27.30 +2001-05-09,71.24,71.30,69.86,70.40,76676600,27.46 +2001-05-08,71.75,72.10,70.75,72.06,75084000,28.10 +2001-05-07,70.83,72.15,70.70,71.38,109356200,27.84 +2001-05-04,68.00,71.05,67.96,70.75,119538400,27.59 +2001-05-03,69.25,70.18,68.14,68.53,66273400,26.73 +2001-05-02,71.00,71.15,69.35,69.76,92864400,27.21 +2001-05-01,67.66,70.30,67.60,70.17,83702800,27.37 +2001-04-30,68.53,69.06,67.68,67.75,74368200,26.42 +2001-04-27,69.53,69.68,66.21,67.12,121572400,26.18 +2001-04-26,70.07,71.00,68.25,69.13,118737600,26.96 +2001-04-25,67.57,69.79,67.25,69.69,76744000,27.18 +2001-04-24,68.20,69.93,67.14,67.55,89176600,26.34 +2001-04-23,68.11,68.47,66.90,68.25,92171200,26.62 +2001-04-20,70.30,71.10,68.50,69.00,192919600,26.91 +2001-04-19,65.81,69.00,65.75,68.04,159375600,26.53 +2001-04-18,63.39,66.31,63.00,65.43,156696400,25.52 +2001-04-17,60.52,62.11,60.04,61.48,85149200,23.98 +2001-04-16,61.40,61.58,60.12,60.79,65857400,23.71 +2001-04-12,59.56,62.31,59.35,62.18,87520000,24.25 +2001-04-11,60.65,61.50,59.70,60.04,109879600,23.41 +2001-04-10,57.95,60.09,57.78,59.68,109199400,23.27 +2001-04-09,56.57,57.42,55.66,57.15,56295600,22.29 +2001-04-06,56.38,57.19,55.06,56.19,92622000,21.91 +2001-04-05,53.75,57.38,53.50,56.75,113364000,22.13 +2001-04-04,53.38,55.00,51.06,51.94,104046600,20.26 +2001-04-03,55.31,55.31,52.75,53.38,94187600,20.82 +2001-04-02,54.81,56.94,54.63,55.81,75924000,21.77 +2001-03-30,55.75,56.19,53.88,54.69,91201600,21.33 +2001-03-29,55.38,57.19,54.56,55.38,86985000,21.60 +2001-03-28,57.38,57.94,55.38,55.56,78681600,21.67 +2001-03-27,56.06,58.56,55.88,58.25,95135600,22.72 +2001-03-26,57.13,57.50,55.56,56.06,63118600,21.86 +2001-03-23,54.94,57.00,54.38,56.56,99519600,22.06 +2001-03-22,50.56,54.06,50.50,54.00,126363200,21.06 +2001-03-21,52.25,53.25,49.75,50.06,124988600,19.52 +2001-03-20,54.56,56.13,52.63,52.69,91822800,20.55 +2001-03-19,54.50,55.50,53.13,54.31,61036400,21.18 +2001-03-16,52.50,55.13,52.48,54.56,112848800,21.28 +2001-03-15,55.31,56.08,53.50,53.69,71638400,20.94 +2001-03-14,52.50,55.25,52.19,54.00,90686200,21.06 +2001-03-13,52.19,54.75,52.00,54.19,91035600,21.13 +2001-03-12,54.69,55.00,51.63,51.94,114376000,20.26 +2001-03-09,57.94,58.19,54.88,56.69,103794400,22.11 +2001-03-08,60.31,60.59,58.44,59.25,54626000,23.11 +2001-03-07,59.88,61.13,59.31,60.69,59743600,23.67 +2001-03-06,58.63,60.00,58.38,59.44,66781800,23.18 +2001-03-05,57.25,58.63,56.56,57.44,49383600,22.40 +2001-03-02,57.50,58.13,56.44,56.69,79800800,22.11 +2001-03-01,58.56,59.50,56.25,59.36,81781600,23.15 +2001-02-28,59.56,60.08,58.19,59.00,84608400,23.01 +2001-02-27,59.38,61.19,58.67,59.38,99148600,23.16 +2001-02-26,57.63,59.94,57.38,59.56,87936800,23.23 +2001-02-23,54.44,57.50,54.31,56.75,92620600,22.13 +2001-02-22,56.31,56.81,53.88,55.19,100816400,21.52 +2001-02-21,55.25,58.06,55.19,56.25,63947200,21.94 +2001-02-20,57.38,58.25,55.38,55.88,60730800,21.79 +2001-02-16,57.00,58.25,56.13,57.31,66958400,22.35 +2001-02-15,59.00,60.19,57.88,58.81,65627800,22.94 +2001-02-14,57.63,59.00,56.38,58.38,61728400,22.77 +2001-02-13,59.63,61.06,58.13,58.19,76070600,22.69 +2001-02-12,58.81,59.44,57.19,58.75,71289400,22.91 +2001-02-09,61.31,61.56,58.50,59.13,100575200,23.06 +2001-02-08,63.75,64.50,62.00,62.25,88041200,24.28 +2001-02-07,62.00,65.06,61.81,64.69,126061800,25.23 +2001-02-06,62.06,63.81,61.69,62.56,96442000,24.40 +2001-02-05,60.75,62.06,60.25,61.94,51399200,24.16 +2001-02-02,62.50,63.38,60.75,60.81,71100000,23.72 +2001-02-01,60.81,62.63,60.38,62.38,71792800,24.33 +2001-01-31,63.00,63.75,61.00,61.06,81898800,23.81 +2001-01-30,64.50,64.75,62.88,63.38,57276800,24.72 +2001-01-29,63.56,64.62,63.50,64.50,84983800,25.15 +2001-01-26,61.00,64.31,61.00,64.00,93080000,24.96 +2001-01-25,62.75,64.00,61.56,61.81,85657400,24.11 +2001-01-24,61.00,63.44,60.75,62.94,110455000,24.55 +2001-01-23,59.75,60.94,58.94,60.56,70295200,23.62 +2001-01-22,60.75,61.00,59.00,60.13,76673000,23.45 +2001-01-19,60.00,61.44,58.88,61.00,209348800,23.79 +2001-01-18,53.69,56.19,52.63,55.50,109788800,21.64 +2001-01-17,53.63,54.88,52.56,52.94,72844200,20.65 +2001-01-16,53.38,53.50,51.13,52.56,68462400,20.50 +2001-01-12,54.88,55.00,52.50,53.50,73712000,20.86 +2001-01-11,53.00,55.75,52.31,55.00,101854800,21.45 +2001-01-10,51.00,53.81,50.75,52.88,90230200,20.62 +2001-01-09,50.00,52.63,49.75,51.81,114965400,20.21 +2001-01-08,48.94,49.75,46.69,48.94,79817600,19.09 +2001-01-05,48.50,49.88,47.56,49.13,93414600,19.16 +2001-01-04,47.81,50.50,46.88,48.44,112397000,18.89 +2001-01-03,43.19,48.88,43.13,47.94,135962200,18.70 +2001-01-02,44.13,45.00,42.88,43.38,82413200,16.92 +2000-12-29,43.94,45.81,43.00,43.38,99977600,16.92 +2000-12-28,45.13,46.25,43.88,44.56,77619200,17.38 +2000-12-27,46.13,46.81,45.00,46.44,69003800,18.11 +2000-12-26,46.88,48.56,45.88,46.88,66941600,18.28 +2000-12-22,44.75,47.13,44.75,46.44,109551800,18.11 +2000-12-21,40.75,45.13,40.31,43.44,163173000,16.94 +2000-12-20,42.81,44.00,41.38,41.50,149037800,16.18 +2000-12-19,47.44,48.00,44.50,44.81,120271800,17.48 +2000-12-18,49.00,50.00,47.00,47.81,107187400,18.65 +2000-12-15,51.05,52.00,47.75,49.19,116899800,19.18 +2000-12-14,57.94,58.73,55.38,55.50,71201400,21.64 +2000-12-13,60.50,60.50,56.81,57.25,98360400,22.33 +2000-12-12,57.81,60.00,56.75,58.38,63106000,22.77 +2000-12-11,55.50,58.75,55.00,58.06,95576200,22.64 +2000-12-08,54.63,55.88,53.44,54.44,120939800,21.23 +2000-12-07,53.44,54.00,52.25,53.13,145308400,20.72 +2000-12-06,60.00,60.06,56.06,56.69,90560800,22.11 +2000-12-05,59.19,60.50,58.25,59.88,101734400,23.35 +2000-12-04,57.25,59.00,55.19,56.44,80407200,22.01 +2000-12-01,58.06,60.63,56.06,56.63,109809800,22.09 +2000-11-30,62.00,62.06,57.00,57.38,197200800,22.38 +2000-11-29,66.81,67.12,63.25,65.06,98280400,25.37 +2000-11-28,69.37,69.75,66.81,67.00,127446200,26.13 +2000-11-27,71.44,72.25,70.62,70.69,85307600,27.57 +2000-11-24,69.00,70.44,68.50,69.94,34439200,27.28 +2000-11-22,66.06,69.50,66.00,68.25,76343200,26.62 +2000-11-21,67.37,69.25,67.37,67.75,59487600,26.42 +2000-11-20,68.12,68.50,65.56,67.19,80157200,26.20 +2000-11-17,69.44,70.00,67.80,69.06,106525600,26.93 +2000-11-16,69.44,71.50,68.94,68.94,92128600,26.89 +2000-11-15,69.06,70.87,68.69,70.06,60422200,27.32 +2000-11-14,68.00,69.81,67.31,68.81,84218600,26.84 +2000-11-13,66.69,68.12,64.41,66.44,83364800,25.91 +2000-11-10,69.94,70.31,66.81,67.37,93744400,26.27 +2000-11-09,68.50,71.31,68.44,70.87,91058600,27.64 +2000-11-08,71.12,72.37,68.00,69.44,206149400,27.08 +2000-11-07,69.75,71.87,69.50,70.50,104331200,27.49 +2000-11-06,68.69,70.12,68.25,69.50,74851400,27.10 +2000-11-03,69.25,69.62,68.06,68.25,68711000,26.62 +2000-11-02,70.37,70.84,69.62,70.31,77985200,27.42 +2000-11-01,68.50,70.06,68.44,69.62,81309400,27.15 +2000-10-31,69.00,69.50,68.00,68.87,104474000,26.86 +2000-10-30,67.50,70.12,67.37,69.06,110057600,26.93 +2000-10-27,64.69,69.19,64.62,67.69,124292400,26.40 +2000-10-26,61.00,65.06,60.81,64.44,114826600,25.13 +2000-10-25,61.94,63.44,60.44,61.25,167603800,23.89 +2000-10-24,62.63,62.94,60.19,61.50,94427400,23.98 +2000-10-23,64.62,66.25,60.69,62.13,185170400,24.23 +2000-10-20,61.31,66.12,61.13,65.19,160378600,25.42 +2000-10-19,58.44,62.19,58.00,61.88,256993200,24.13 +2000-10-18,49.63,53.25,48.44,51.75,110536400,20.18 +2000-10-17,51.88,52.44,50.25,50.44,81276600,19.67 +2000-10-16,53.50,53.81,49.56,50.38,119759000,19.65 +2000-10-13,53.88,54.88,52.13,53.75,104521200,20.96 +2000-10-12,56.31,56.88,53.81,54.38,90219600,21.21 +2000-10-11,54.00,56.94,54.00,55.75,101205800,21.74 +2000-10-10,53.94,55.56,53.81,54.56,62066200,21.28 +2000-10-09,55.63,55.75,53.00,54.19,58323600,21.13 +2000-10-06,55.81,56.75,54.75,55.56,61794000,21.67 +2000-10-05,55.50,57.25,55.25,55.38,81099400,21.60 +2000-10-04,56.38,56.56,54.50,55.44,136453400,21.62 +2000-10-03,59.56,59.81,56.50,56.56,85374000,22.06 +2000-10-02,60.50,60.81,58.25,59.13,58562400,23.06 +2000-09-29,61.00,61.31,58.63,60.31,74053600,23.52 +2000-09-28,60.81,61.88,60.63,61.31,52360400,23.91 +2000-09-27,63.44,63.56,59.81,60.63,106155600,23.65 +2000-09-26,60.94,65.87,60.44,62.69,155704800,24.45 +2000-09-25,63.25,63.50,60.44,61.25,53484200,23.89 +2000-09-22,61.13,63.50,61.00,63.25,84476600,24.67 +2000-09-21,64.00,65.12,63.56,64.19,48952200,25.03 +2000-09-20,64.87,65.00,63.19,64.25,67791400,25.06 +2000-09-19,63.63,65.75,63.38,65.00,79311200,25.35 +2000-09-18,64.25,64.62,62.19,63.00,69037800,24.57 +2000-09-15,65.44,65.62,63.31,64.19,99915200,25.03 +2000-09-14,68.69,68.75,65.69,65.81,78503000,25.67 +2000-09-13,67.56,68.75,67.19,68.25,40744800,26.62 +2000-09-12,68.75,69.31,67.62,68.12,46781200,26.57 +2000-09-11,69.12,69.69,68.06,68.81,48495200,26.84 +2000-09-08,70.37,70.87,69.19,69.31,56709600,27.03 +2000-09-07,70.00,72.06,69.44,70.06,111711200,27.32 +2000-09-06,70.06,70.69,69.31,69.44,62960800,27.08 +2000-09-05,70.00,70.69,69.81,70.12,50755200,27.35 +2000-09-01,70.00,70.62,69.69,70.19,37629800,27.37 +2000-08-31,70.87,72.00,69.69,69.81,72575400,27.23 +2000-08-30,70.69,70.94,69.69,70.00,53498800,27.30 +2000-08-29,71.19,72.75,70.87,70.94,59400200,27.67 +2000-08-28,70.19,72.12,70.12,71.31,56421600,27.81 +2000-08-25,70.69,71.69,70.56,70.62,52729400,27.54 +2000-08-24,70.62,71.19,69.94,71.12,42405400,27.74 +2000-08-23,70.81,71.12,70.37,70.75,36726800,27.59 +2000-08-22,70.81,72.44,70.22,71.25,54428200,27.79 +2000-08-21,70.69,70.81,70.06,70.62,34119600,27.54 +2000-08-18,71.12,71.44,70.00,71.00,54438800,27.69 +2000-08-17,71.12,72.00,70.56,71.56,36112800,27.91 +2000-08-16,71.87,72.25,70.56,71.00,44976200,27.69 +2000-08-15,72.00,73.00,71.50,71.62,40714200,27.93 +2000-08-14,72.31,73.37,71.37,72.19,53427000,28.15 +2000-08-11,72.44,72.69,71.62,72.44,35629600,28.25 +2000-08-10,73.81,74.06,71.75,72.62,48986000,28.32 +2000-08-09,73.75,74.87,73.12,74.25,63945600,28.96 +2000-08-08,70.06,74.69,70.00,74.12,138038800,28.91 +2000-08-07,70.19,71.12,69.75,70.00,52741800,27.30 +2000-08-04,69.44,69.87,68.19,69.12,38107400,26.96 +2000-08-03,68.19,70.37,68.12,70.25,54543400,27.40 +2000-08-02,68.56,70.44,68.50,69.37,48269200,27.05 +2000-08-01,69.94,70.06,68.19,68.69,47163600,26.79 +2000-07-31,70.19,71.12,69.25,69.81,70283800,27.23 +2000-07-28,70.94,71.81,69.62,69.69,75645600,27.18 +2000-07-27,67.87,70.12,67.50,69.37,74337600,27.05 +2000-07-26,69.06,69.50,67.25,67.81,85404600,26.45 +2000-07-25,70.81,71.00,68.37,69.00,64188600,26.91 +2000-07-24,72.06,72.12,70.00,70.56,56165600,27.52 +2000-07-21,74.75,75.00,71.87,72.31,56100600,28.20 +2000-07-20,73.44,75.25,73.12,74.81,54690600,29.18 +2000-07-19,76.06,77.50,72.81,73.12,139924600,28.52 +2000-07-18,77.62,79.50,77.44,78.50,70617200,30.61 +2000-07-17,78.25,79.56,77.50,78.19,53992800,30.49 +2000-07-14,79.50,79.75,78.44,78.94,51180600,30.79 +2000-07-13,78.81,80.00,77.37,79.94,80843200,31.18 +2000-07-12,78.25,81.00,77.19,80.31,58370200,31.32 +2000-07-11,78.81,80.50,78.50,79.12,37164800,30.86 +2000-07-10,80.69,81.31,79.37,79.44,52689800,30.98 +2000-07-07,81.27,82.87,80.56,82.00,54153200,31.98 +2000-07-06,78.87,81.69,78.50,80.94,47873200,31.57 +2000-07-05,79.87,79.87,78.25,78.50,34824400,30.61 +2000-07-03,79.69,80.06,79.37,80.00,15734800,31.20 +2000-06-30,77.06,80.00,76.69,80.00,52356400,31.20 +2000-06-29,78.25,78.94,77.06,77.19,38449000,30.10 +2000-06-28,79.00,80.06,78.62,78.94,37459200,30.79 +2000-06-27,79.25,80.12,78.37,78.81,31071200,30.74 +2000-06-26,77.50,80.12,77.50,79.50,48287000,31.00 +2000-06-23,79.94,80.06,77.00,77.69,49811600,30.30 +2000-06-22,81.37,82.00,79.31,79.87,87315200,31.15 +2000-06-21,77.00,82.19,76.94,80.69,160399600,31.47 +2000-06-20,73.87,75.25,73.75,74.94,62275000,29.23 +2000-06-19,72.56,73.81,72.00,73.69,46604800,28.74 +2000-06-16,72.62,73.12,71.50,72.56,68710600,28.30 +2000-06-15,70.81,72.69,70.62,72.37,65592600,28.22 +2000-06-14,69.81,71.00,69.50,70.50,79992400,27.49 +2000-06-13,66.75,68.00,66.12,67.87,44289200,26.47 +2000-06-12,69.00,69.00,66.37,66.87,49260600,26.08 +2000-06-09,69.62,69.69,68.31,68.81,35710200,26.84 +2000-06-08,71.56,72.12,68.25,68.81,94765600,26.84 +2000-06-07,69.25,70.75,67.12,70.50,76310600,27.49 +2000-06-06,68.19,69.87,67.81,69.62,99019000,27.15 +2000-06-05,66.02,68.37,66.00,66.87,64400000,26.08 +2000-06-02,66.00,66.75,65.00,66.31,80463200,25.86 +2000-06-01,64.37,66.00,63.81,64.56,94507200,25.18 +2000-05-31,63.64,63.70,62.06,62.56,54968200,24.40 +2000-05-30,62.44,64.12,62.00,63.38,68536400,24.72 +2000-05-26,62.06,62.63,60.38,61.44,55822000,23.96 +2000-05-25,64.56,64.75,61.13,61.50,94348800,23.98 +2000-05-24,63.13,66.56,63.00,65.56,85482400,25.57 +2000-05-23,63.88,65.56,63.06,63.19,57963200,24.64 +2000-05-22,65.12,65.25,62.44,64.19,69955000,25.03 +2000-05-19,65.37,65.94,64.50,65.06,66578000,25.37 +2000-05-18,68.06,68.06,65.87,66.19,53640400,25.81 +2000-05-17,68.87,69.12,67.25,67.69,53242000,26.40 +2000-05-16,69.56,70.62,69.06,69.50,48410600,27.10 +2000-05-15,69.00,69.44,68.00,69.37,33899600,27.05 +2000-05-12,68.44,69.75,68.25,68.81,37886000,26.84 +2000-05-11,66.62,68.12,65.75,67.87,58390800,26.47 +2000-05-10,67.75,67.87,65.75,66.19,67740000,25.81 +2000-05-09,70.19,70.44,67.50,67.81,60778400,26.45 +2000-05-08,70.94,71.37,69.69,69.81,36187600,27.23 +2000-05-05,70.25,71.81,69.87,71.12,36402200,27.74 +2000-05-04,70.31,71.25,69.31,70.44,43317200,27.47 +2000-05-03,70.37,70.81,68.81,70.56,55354800,27.52 +2000-05-02,72.81,73.50,69.50,69.87,97716200,27.25 +2000-05-01,72.87,74.00,71.69,73.44,107811000,28.64 +2000-04-28,70.75,71.00,68.25,69.75,78082600,27.20 +2000-04-27,67.44,69.94,67.37,69.81,77669800,27.23 +2000-04-26,70.00,71.12,67.37,68.00,107091200,26.52 +2000-04-25,68.75,69.50,67.62,69.37,159517400,27.05 +2000-04-24,67.25,68.00,65.00,66.62,313645800,25.98 +2000-04-20,78.62,79.87,77.50,78.94,52387400,30.79 +2000-04-19,81.44,81.50,78.12,78.69,53715400,30.69 +2000-04-18,76.50,81.94,75.87,80.56,91794600,31.42 +2000-04-17,74.25,76.00,73.00,75.87,119772200,29.59 +2000-04-14,79.12,79.50,73.25,74.12,151217800,28.91 +2000-04-13,80.87,82.25,79.00,79.25,94316200,30.91 +2000-04-12,82.12,82.25,78.75,79.37,153003800,30.95 +2000-04-11,85.12,86.06,83.50,83.87,71961800,32.71 +2000-04-10,88.62,88.62,86.00,86.06,60685400,33.56 +2000-04-07,87.00,89.37,85.00,89.06,82613600,34.73 +2000-04-06,87.87,88.00,85.27,86.00,66421400,33.54 +2000-04-05,88.25,88.50,85.87,86.37,82887600,33.68 +2000-04-04,91.56,92.00,84.94,88.56,181244400,34.54 +2000-04-03,94.44,96.50,90.00,90.87,260118200,35.44 +2000-03-31,106.00,108.25,104.12,106.25,64281400,41.44 +2000-03-30,106.19,108.62,102.50,103.37,64178400,40.31 +2000-03-29,105.19,108.94,105.12,107.19,64363800,41.80 +2000-03-28,103.62,107.44,102.37,104.31,81114400,40.68 +2000-03-27,107.77,108.25,103.94,104.06,111434000,40.58 +2000-03-24,112.62,115.00,109.56,111.69,112196800,43.56 +2000-03-23,106.81,112.87,106.62,111.87,148224000,43.63 +2000-03-22,102.81,105.62,101.12,103.25,93975800,40.27 +2000-03-21,96.75,103.12,96.50,102.75,81648800,40.07 +2000-03-20,98.75,99.75,96.50,97.37,47773000,37.97 +2000-03-17,95.25,99.50,94.50,99.37,81161600,38.75 +2000-03-16,95.94,96.69,93.25,95.37,77300800,37.19 +2000-03-15,94.56,96.62,93.69,95.37,53208000,37.19 +2000-03-14,98.62,99.25,95.12,95.12,73489200,37.10 +2000-03-13,97.62,100.25,97.50,98.00,61831800,38.22 +2000-03-10,99.56,102.50,99.50,101.00,85589000,39.39 +2000-03-09,95.31,100.00,95.00,100.00,88198800,39.00 +2000-03-08,93.81,96.19,91.00,95.56,94290000,37.27 +2000-03-07,96.12,97.50,91.94,92.87,135061000,36.22 +2000-03-06,96.00,97.37,90.12,90.62,93609400,35.34 +2000-03-03,94.75,98.87,93.87,96.12,101435200,37.49 +2000-03-02,91.81,95.37,91.12,93.37,106932600,36.41 +2000-03-01,89.62,94.09,88.94,90.81,106889800,35.41 +2000-02-29,91.75,91.75,88.87,89.37,58437400,34.85 +2000-02-28,90.25,92.12,88.12,91.56,76131800,35.71 +2000-02-25,94.69,94.70,90.50,91.31,65301400,35.61 +2000-02-24,94.25,95.87,92.00,94.75,69733200,36.95 +2000-02-23,93.50,95.75,92.06,94.25,75847200,36.76 +2000-02-22,95.12,97.12,92.81,93.81,66296200,36.58 +2000-02-18,100.00,100.06,94.87,95.06,79063000,37.07 +2000-02-17,98.50,99.69,97.14,99.62,80343400,38.85 +2000-02-16,99.25,100.19,97.12,97.62,65202600,38.07 +2000-02-15,99.75,100.00,98.12,98.56,71027600,38.44 +2000-02-14,101.23,101.75,99.06,99.62,81028600,38.85 +2000-02-11,104.87,104.87,99.12,99.94,115559000,38.98 +2000-02-10,103.89,106.56,102.50,106.00,54527800,41.34 +2000-02-09,109.44,109.44,103.87,104.00,55090000,40.56 +2000-02-08,106.44,110.00,106.44,109.94,56229000,42.88 +2000-02-07,106.81,106.87,104.25,106.62,40005800,41.58 +2000-02-04,104.37,108.00,104.14,106.56,55365400,41.56 +2000-02-03,102.06,104.19,100.12,103.62,49186000,40.41 +2000-02-02,102.44,103.94,100.50,100.81,49915600,39.31 +2000-02-01,98.50,103.25,97.69,102.94,70196600,40.15 +2000-01-31,97.62,98.19,94.87,97.87,73194200,38.17 +2000-01-28,98.12,100.25,97.25,98.25,58225400,38.32 +2000-01-27,99.89,101.19,97.25,98.75,63654800,38.51 +2000-01-26,102.44,103.50,99.12,99.37,49365000,38.75 +2000-01-25,101.00,103.87,99.56,102.81,59823200,40.09 +2000-01-24,103.80,105.69,100.81,101.25,63597600,39.49 +2000-01-21,107.00,107.25,103.25,103.75,68416200,40.46 +2000-01-20,107.06,109.69,105.87,106.00,56349800,41.34 +2000-01-19,110.50,111.50,106.00,107.00,97568200,41.73 +2000-01-18,111.81,116.50,111.75,115.31,81483600,44.97 +2000-01-14,107.19,113.94,105.75,112.25,73416400,43.78 +2000-01-13,104.37,108.62,101.50,107.81,83144000,42.04 +2000-01-12,108.50,108.87,104.44,105.81,66532400,41.26 +2000-01-11,111.50,114.25,108.69,109.37,46743600,42.65 +2000-01-10,113.44,113.69,111.37,112.25,44963600,43.78 +2000-01-07,108.62,112.25,107.31,111.44,62013600,43.46 +2000-01-06,112.19,113.87,108.37,110.00,54976600,42.90 +2000-01-05,111.12,116.37,109.37,113.81,64059600,44.38 +2000-01-04,113.56,117.12,112.25,112.62,54119000,43.92 +2000-01-03,117.37,118.62,112.00,116.56,53228400,45.46 +1999-12-31,117.50,117.75,116.25,116.75,12517600,45.53 +1999-12-30,117.87,119.94,117.12,117.62,22360000,45.87 +1999-12-29,116.94,118.37,116.81,117.94,17449200,46.00 +1999-12-28,118.75,118.81,117.06,117.50,24591000,45.82 +1999-12-27,118.44,119.25,116.12,119.12,32202200,46.46 +1999-12-23,117.25,119.25,116.75,117.44,31028400,45.80 +1999-12-22,116.30,118.00,115.12,117.56,38565200,45.85 +1999-12-21,112.37,116.62,110.62,115.87,57446000,45.19 +1999-12-20,114.81,115.00,111.19,112.75,39433800,43.97 +1999-12-17,116.62,117.12,113.62,115.25,105898800,44.95 +1999-12-16,109.25,115.00,108.94,113.69,128660200,44.34 +1999-12-15,98.56,108.75,98.50,108.44,155571600,42.29 +1999-12-14,96.19,101.12,95.31,98.69,144116200,38.49 +1999-12-13,93.61,96.94,92.75,96.62,52691600,37.68 +1999-12-10,93.37,94.12,92.25,93.87,36836000,36.61 +1999-12-09,92.00,93.31,91.44,92.75,46258200,36.17 +1999-12-08,93.12,94.31,91.69,91.75,40955800,35.78 +1999-12-07,94.75,94.87,92.87,93.00,56859200,36.27 +1999-12-06,95.25,97.19,94.75,95.44,49098200,37.22 +1999-12-03,95.81,97.12,95.73,96.12,64100600,37.49 +1999-12-02,93.06,95.25,92.87,94.81,55473800,36.97 +1999-12-01,91.06,93.94,90.87,93.19,48864200,36.34 +1999-11-30,89.75,92.87,89.56,91.05,64145600,35.51 +1999-11-29,90.12,92.06,89.50,90.19,51460200,35.17 +1999-11-26,91.62,93.37,91.00,91.12,28514200,35.54 +1999-11-24,89.56,92.25,89.50,91.69,53771000,35.76 +1999-11-23,89.25,91.37,88.37,89.62,70787400,34.95 +1999-11-22,89.62,90.37,88.44,89.81,90596600,35.02 +1999-11-19,84.44,86.56,84.37,86.00,58226000,33.54 +1999-11-18,84.94,85.81,84.50,84.94,64493200,33.13 +1999-11-17,86.44,87.06,85.00,85.00,66819000,33.15 +1999-11-16,86.94,87.75,85.87,87.31,59165200,34.05 +1999-11-15,88.25,88.50,86.94,87.00,47080400,33.93 +1999-11-12,89.75,90.00,87.06,89.19,49414200,34.78 +1999-11-11,88.25,90.44,88.25,89.62,69274600,34.95 +1999-11-10,88.12,89.12,86.44,87.12,69385400,33.98 +1999-11-09,89.75,89.87,86.44,88.87,109769800,34.66 +1999-11-08,84.81,90.75,84.37,89.94,243819200,35.08 +1999-11-05,91.81,92.87,90.50,91.56,70167400,35.71 +1999-11-04,92.31,92.75,90.31,91.75,54239400,35.78 +1999-11-03,92.94,93.50,91.50,92.00,44517000,35.88 +1999-11-02,92.75,94.50,91.94,92.56,46349000,36.10 +1999-11-01,93.25,94.19,92.12,92.37,53261200,36.02 +1999-10-29,91.44,94.00,91.25,92.56,79452600,36.10 +1999-10-28,90.00,90.87,89.31,89.87,70570400,35.05 +1999-10-27,91.50,91.62,89.69,90.87,54416600,35.44 +1999-10-26,94.37,95.25,92.27,92.37,52467600,36.02 +1999-10-25,92.00,93.56,91.12,92.44,30492200,36.05 +1999-10-22,93.56,93.87,91.75,92.69,43650600,36.15 +1999-10-21,90.56,93.12,90.50,93.06,60801200,36.29 +1999-10-20,91.56,92.37,90.25,92.25,88090600,35.98 +1999-10-19,88.25,89.25,85.25,86.31,69945600,33.66 +1999-10-18,87.19,88.00,85.06,87.87,75312800,34.27 +1999-10-15,89.50,89.81,87.31,88.06,73788000,34.34 +1999-10-14,90.87,92.23,89.69,90.69,42737800,35.37 +1999-10-13,92.00,93.12,90.31,91.06,38098400,35.51 +1999-10-12,94.00,94.31,92.37,92.56,27668600,36.10 +1999-10-11,94.62,95.00,94.12,94.31,19943800,36.78 +1999-10-08,93.50,95.19,92.12,94.94,35697000,37.03 +1999-10-07,93.69,95.06,92.69,93.75,46036400,36.56 +1999-10-06,92.31,94.00,92.06,93.69,35500200,36.54 +1999-10-05,92.75,93.87,89.50,91.81,43397000,35.80 +1999-10-04,90.50,92.62,90.25,92.56,29998000,36.10 +1999-10-01,90.19,90.62,88.31,89.98,44239000,35.09 +1999-09-30,90.00,91.69,88.81,90.56,47455400,35.32 +1999-09-29,91.56,92.12,89.12,89.50,37484400,34.90 +1999-09-28,91.25,92.69,89.06,92.12,46000600,35.93 +1999-09-27,92.00,92.94,90.87,91.44,34132200,35.66 +1999-09-24,90.19,91.37,88.87,90.94,70277000,35.47 +1999-09-23,96.87,96.87,90.02,91.19,71073600,35.56 +1999-09-22,94.75,96.62,93.69,96.06,48531600,37.46 +1999-09-21,96.56,96.56,94.12,94.62,47082800,36.90 +1999-09-20,96.00,97.87,95.00,97.56,48601800,38.05 +1999-09-17,94.37,96.50,93.81,96.44,79773400,37.61 +1999-09-16,92.87,94.06,90.62,94.00,45796000,36.66 +1999-09-15,95.50,95.75,92.37,92.62,48413800,36.12 +1999-09-14,93.69,95.56,93.62,95.06,40207800,37.07 +1999-09-13,94.50,94.81,93.37,93.87,27870800,36.61 +1999-09-10,95.06,95.31,94.00,95.00,34455000,37.05 +1999-09-09,92.44,94.14,91.80,94.06,38475200,36.68 +1999-09-08,93.69,94.69,92.06,92.25,42568200,35.98 +1999-09-07,94.87,96.69,93.75,94.25,47028000,36.76 +1999-09-03,93.75,96.44,93.50,95.87,52098000,37.39 +1999-09-02,91.50,92.56,90.69,91.81,33340800,35.80 +1999-09-01,92.31,93.44,91.62,92.37,36607200,36.02 +1999-08-31,91.81,93.12,90.12,92.56,46882800,36.10 +1999-08-30,92.87,93.44,91.56,92.25,33300800,35.98 +1999-08-27,95.06,95.12,92.37,93.25,41948400,36.37 +1999-08-26,95.37,96.37,93.69,94.62,61246000,36.90 +1999-08-25,93.62,96.00,93.19,95.31,81877600,37.17 +1999-08-24,87.06,93.50,87.06,92.19,120450000,35.95 +1999-08-23,84.31,86.62,83.87,86.44,60447000,33.71 +1999-08-20,84.00,84.78,83.06,83.37,46072800,32.51 +1999-08-19,84.56,85.12,83.12,83.81,71478200,32.69 +1999-08-18,84.44,86.19,84.06,85.00,58361200,33.15 +1999-08-17,85.44,85.50,82.94,84.56,51749000,32.98 +1999-08-16,85.06,85.89,82.31,84.31,57321800,32.88 +1999-08-13,82.94,85.62,82.75,84.69,65099800,33.03 +1999-08-12,83.94,84.19,81.62,81.75,61062000,31.88 +1999-08-11,84.00,84.69,82.31,84.19,66105200,32.83 +1999-08-10,83.56,84.06,81.62,82.94,62743000,32.35 +1999-08-09,85.62,85.81,83.69,83.81,39333600,32.69 +1999-08-06,86.06,86.44,84.94,85.12,67205800,33.20 +1999-08-05,85.37,86.37,84.75,85.75,76634000,33.44 +1999-08-04,85.12,87.19,84.75,84.94,75573400,33.13 +1999-08-03,85.87,86.06,84.37,84.75,55051200,33.05 +1999-08-02,85.69,86.94,84.37,84.81,48050600,33.08 +1999-07-30,87.62,88.62,85.50,85.81,51127400,33.47 +1999-07-29,88.69,88.81,86.31,86.94,57968200,33.91 +1999-07-28,89.19,90.50,88.37,90.00,62215200,35.10 +1999-07-27,88.81,89.75,88.00,88.81,65513000,34.63 +1999-07-26,88.87,89.81,87.62,87.62,50885000,34.17 +1999-07-23,91.56,91.75,89.69,90.25,68833200,35.20 +1999-07-22,94.37,94.50,90.00,91.06,60904200,35.51 +1999-07-21,93.62,95.31,93.00,94.69,54050800,36.93 +1999-07-20,96.44,96.75,92.31,93.31,92287400,36.39 +1999-07-19,100.00,100.75,97.81,98.37,81181600,38.36 +1999-07-16,95.50,99.87,95.00,99.44,115369800,38.78 +1999-07-15,95.00,95.25,93.75,94.37,40926200,36.80 +1999-07-14,93.75,95.00,92.50,94.94,37985200,37.03 +1999-07-13,93.12,94.06,92.81,93.62,30845000,36.51 +1999-07-12,93.19,94.75,92.37,94.19,43847800,36.73 +1999-07-09,92.37,93.31,92.25,93.25,33884200,36.37 +1999-07-08,91.81,93.00,90.69,92.56,37790400,36.10 +1999-07-07,90.06,92.31,89.87,92.31,33834600,36.00 +1999-07-06,92.25,92.94,89.25,89.56,45419400,34.93 +1999-07-02,90.87,92.12,90.31,92.00,32094800,35.88 +1999-07-01,89.87,91.50,88.37,91.19,47737800,35.56 +1999-06-30,87.75,90.25,86.75,90.19,57610200,35.17 +1999-06-29,86.69,88.06,86.00,88.00,38973200,34.32 +1999-06-28,85.50,86.81,84.94,86.75,31701000,33.83 +1999-06-25,85.37,86.44,84.37,84.94,24933000,33.13 +1999-06-24,85.75,86.25,84.00,84.62,33559000,33.00 +1999-06-23,85.94,87.37,85.06,86.00,33942000,33.54 +1999-06-22,88.44,88.44,86.25,86.50,38751000,33.73 +1999-06-21,84.87,89.00,84.87,88.94,56194400,34.69 +1999-06-18,82.31,85.00,82.12,85.00,69116200,33.15 +1999-06-17,80.69,83.00,80.50,82.87,44475200,32.32 +1999-06-16,79.06,81.62,78.94,81.00,48325200,31.59 +1999-06-15,78.06,78.87,76.69,77.69,36981000,30.30 +1999-06-14,78.75,79.69,77.44,77.56,28369800,30.25 +1999-06-11,80.00,80.50,77.56,78.12,34543000,30.47 +1999-06-10,81.87,82.31,79.06,79.87,35277400,31.15 +1999-06-09,80.12,82.62,80.00,82.31,53310800,32.10 +1999-06-08,79.87,82.12,79.00,79.37,41516400,30.95 +1999-06-07,79.94,81.06,79.19,80.25,32392200,31.30 +1999-06-04,76.94,79.69,76.75,79.56,35668200,31.03 +1999-06-03,78.37,78.94,76.12,76.37,32934400,29.78 +1999-06-02,78.06,78.62,76.25,78.44,42812600,30.59 +1999-06-01,80.62,80.75,78.44,78.50,36046400,30.61 +1999-05-28,78.75,80.87,78.12,80.69,41548000,31.47 +1999-05-27,78.25,79.44,77.50,78.37,56702200,30.56 +1999-05-26,77.19,78.50,75.50,78.50,52022800,30.61 +1999-05-25,76.75,79.25,76.12,76.25,50791600,29.74 +1999-05-24,77.87,77.87,76.06,77.25,38990000,30.13 +1999-05-21,78.50,79.00,77.00,77.56,56568800,30.25 +1999-05-20,79.56,80.00,78.37,78.44,42386200,30.59 +1999-05-19,79.87,79.87,77.25,79.31,46510800,30.93 +1999-05-18,79.81,80.25,77.94,78.69,63858400,30.69 +1999-05-17,77.37,79.56,77.00,79.12,66850200,30.86 +1999-05-14,78.87,79.94,76.62,76.87,84401000,29.98 +1999-05-13,81.12,81.75,79.12,79.12,51737200,30.86 +1999-05-12,80.75,81.00,79.25,80.50,60142600,31.39 +1999-05-11,80.75,81.02,79.44,79.87,42786200,31.15 +1999-05-10,79.87,80.50,78.25,79.69,46218000,31.08 +1999-05-07,79.62,80.37,78.00,79.06,48011600,30.83 +1999-05-06,80.69,81.12,77.50,77.94,74021000,30.40 +1999-05-05,79.12,79.87,76.44,79.12,67028200,30.86 +1999-05-04,80.50,81.81,77.75,78.06,66502200,30.44 +1999-05-03,81.44,81.50,78.56,79.87,67180000,31.15 +1999-04-30,82.75,83.75,79.87,81.31,58558600,31.71 +1999-04-29,82.37,83.69,80.41,82.06,60880600,32.00 +1999-04-28,85.31,86.50,81.72,82.12,55963400,32.03 +1999-04-27,88.75,88.75,83.94,84.00,58665800,32.76 +1999-04-26,87.19,88.94,86.75,88.00,48349800,34.32 +1999-04-23,85.00,87.00,83.00,86.00,56592000,33.54 +1999-04-22,85.00,85.25,83.37,84.94,55096400,33.13 +1999-04-21,82.12,82.50,80.00,82.00,92732800,31.98 +1999-04-20,82.25,84.00,80.00,83.12,108459400,32.42 +1999-04-19,86.87,88.12,80.37,81.00,75389000,31.59 +1999-04-16,89.06,89.12,85.87,86.62,44774000,33.78 +1999-04-15,87.31,89.87,83.87,88.87,72594600,34.66 +1999-04-14,90.81,91.12,85.87,85.87,52944000,33.49 +1999-04-13,93.12,93.12,89.19,90.12,46746800,35.15 +1999-04-12,91.62,93.62,91.37,93.00,37858800,36.27 +1999-04-09,94.25,95.00,93.00,94.25,31816800,36.76 +1999-04-08,93.25,94.62,91.00,94.56,38637000,36.88 +1999-04-07,94.87,95.00,91.25,93.31,46910200,36.39 +1999-04-06,95.19,95.62,93.25,94.06,39674800,36.68 +1999-04-05,94.31,95.02,93.50,94.94,39848600,37.03 +1999-04-01,91.25,92.87,90.27,92.69,41106000,36.15 +1999-03-31,94.50,94.62,89.12,89.62,58752600,34.95 +1999-03-30,93.37,93.50,92.25,93.00,67502400,36.27 +1999-03-29,90.12,92.62,87.87,92.37,79777000,36.02 +1999-03-26,178.94,180.38,175.75,178.13,94687600,34.73 +1999-03-25,173.06,180.06,172.50,179.94,109447600,35.09 +1999-03-24,167.00,171.81,163.13,171.25,82634400,33.39 +1999-03-23,172.69,174.13,166.25,166.56,69581200,32.48 +1999-03-22,172.94,174.94,172.00,172.81,55719200,33.70 +1999-03-19,173.88,174.13,169.88,171.19,91980400,33.38 +1999-03-18,166.44,172.56,166.19,172.44,56231200,33.62 +1999-03-17,169.06,169.44,166.75,167.13,44919600,32.59 +1999-03-16,165.50,170.00,164.25,169.06,68554000,32.97 +1999-03-15,160.56,166.00,157.88,165.88,60609600,32.35 +1999-03-12,162.63,162.75,156.81,160.19,73395200,31.24 +1999-03-11,161.00,164.56,159.31,161.44,62948400,31.48 +1999-03-10,162.31,162.50,159.19,161.38,53114800,31.47 +1999-03-09,159.88,164.75,159.75,161.81,90129600,31.55 +1999-03-08,155.50,159.23,155.00,159.00,46726000,31.00 +1999-03-05,154.75,155.38,153.13,154.94,47302800,30.21 +1999-03-04,151.13,153.50,148.13,152.25,61696400,29.69 +1999-03-03,149.00,150.69,147.06,149.63,76798400,29.18 +1999-03-02,151.88,154.13,147.63,148.56,58569600,28.97 +1999-03-01,149.56,152.56,149.50,151.75,58332000,29.59 +1999-02-26,152.38,152.50,149.50,150.13,59273200,29.27 +1999-02-25,152.38,153.75,149.63,153.50,70817200,29.93 +1999-02-24,156.44,159.38,152.75,152.88,67696800,29.81 +1999-02-23,152.94,155.63,150.50,155.44,95106800,30.31 +1999-02-22,148.25,149.00,144.75,148.81,92514400,29.02 +1999-02-19,147.44,149.25,145.75,147.75,73085600,28.81 +1999-02-18,150.94,151.38,143.98,145.75,117035200,28.42 +1999-02-17,152.94,154.13,148.50,150.00,101215600,29.25 +1999-02-16,159.75,159.88,154.56,156.25,73666800,30.47 +1999-02-12,161.69,163.69,157.13,157.75,62930400,30.76 +1999-02-11,162.75,163.88,160.38,162.75,60366000,31.74 +1999-02-10,159.88,164.38,158.63,160.63,73694000,31.32 +1999-02-09,164.94,166.75,159.75,160.06,77293600,31.21 +1999-02-08,162.56,165.56,161.63,165.25,109866800,32.22 +1999-02-05,160.25,161.63,154.88,160.00,127945200,31.20 +1999-02-04,168.13,168.38,158.88,159.06,89151600,31.02 +1999-02-03,166.38,169.88,166.00,166.81,73749200,32.53 +1999-02-02,172.50,172.56,166.25,167.63,91965600,32.69 +1999-02-01,175.44,175.94,170.81,172.94,81729200,33.72 +1999-01-29,174.75,175.13,170.88,175.00,79571600,34.12 +1999-01-28,171.75,174.06,169.81,174.00,78838400,33.93 +1999-01-27,172.50,174.44,168.50,168.63,98048000,32.88 +1999-01-26,165.50,171.75,164.50,171.56,120203200,33.45 +1999-01-25,161.69,163.31,159.13,161.88,103076400,31.57 +1999-01-22,155.63,160.23,155.25,156.25,82160000,30.47 +1999-01-21,161.75,163.31,157.75,158.31,80077200,30.87 +1999-01-20,166.94,167.75,162.48,162.63,125481200,31.71 +1999-01-19,151.38,158.38,150.88,155.63,102741600,30.35 +1999-01-15,142.94,150.00,141.38,149.75,59344000,29.20 +1999-01-14,145.25,145.56,141.50,141.75,59214000,27.64 +1999-01-13,136.00,147.75,136.00,143.81,75346000,28.04 +1999-01-12,148.13,148.13,141.00,142.19,57907200,27.73 +1999-01-11,150.88,150.94,144.25,147.50,46463200,28.76 +1999-01-08,152.19,152.50,147.00,149.88,50244800,29.23 +1999-01-07,149.75,150.63,148.25,150.50,51150400,29.35 +1999-01-06,149.50,151.50,146.75,151.25,69064800,29.49 +1999-01-05,141.88,148.00,141.44,146.50,64281600,28.57 +1999-01-04,139.61,145.25,139.38,141.00,69305200,27.49 +1998-12-31,139.19,140.00,138.00,138.69,23834400,27.04 +1998-12-30,140.88,143.36,138.88,139.00,34942800,27.10 +1998-12-29,142.56,142.56,139.63,140.50,29651600,27.40 +1998-12-28,143.00,143.63,141.50,142.38,23636400,27.76 +1998-12-24,143.63,144.00,141.50,141.75,13832400,27.64 +1998-12-23,140.38,143.81,139.38,143.56,34940000,27.99 +1998-12-22,140.50,140.50,137.38,138.44,41350000,27.00 +1998-12-21,138.63,142.19,137.75,140.44,48112000,27.39 +1998-12-18,135.00,138.25,134.13,137.81,59648000,26.87 +1998-12-17,134.19,134.88,132.25,134.38,46963600,26.20 +1998-12-16,132.50,135.13,129.13,133.75,60024000,26.08 +1998-12-15,129.31,132.00,129.25,131.88,51719600,25.72 +1998-12-14,132.75,133.75,127.69,127.94,64077600,24.95 +1998-12-11,131.00,134.69,130.75,134.00,51728800,26.13 +1998-12-10,133.13,134.63,131.38,131.56,57015600,25.65 +1998-12-09,132.13,133.81,130.00,133.63,44781600,26.06 +1998-12-08,132.88,134.25,129.75,131.19,77585200,25.58 +1998-12-07,127.69,133.75,126.75,133.56,89809200,26.04 +1998-12-04,124.94,127.37,124.00,127.37,44352000,24.84 +1998-12-03,126.87,128.94,122.00,122.12,51426800,23.81 +1998-12-02,129.19,129.75,125.50,126.75,65759600,24.72 +1998-12-01,120.25,129.75,120.12,129.50,86330800,25.25 +1998-11-30,129.38,130.27,121.94,122.00,70900000,23.79 +1998-11-27,125.12,128.13,124.31,128.06,26335600,24.97 +1998-11-25,122.69,124.37,120.75,124.25,41394000,24.23 +1998-11-24,118.69,125.06,118.62,121.69,101114800,23.73 +1998-11-23,112.50,120.19,112.50,119.19,110870400,23.24 +1998-11-20,112.75,113.75,111.25,113.62,48405200,22.16 +1998-11-19,109.06,112.50,109.06,111.75,45220800,21.79 +1998-11-18,109.56,111.06,109.12,109.75,41691200,21.40 +1998-11-17,109.00,112.37,108.94,111.87,58744000,21.81 +1998-11-16,111.31,111.75,107.50,108.81,42620400,21.22 +1998-11-13,108.44,110.50,108.37,110.00,28368800,21.45 +1998-11-12,110.25,111.12,108.50,108.75,38526800,21.21 +1998-11-11,113.44,114.75,110.87,111.06,63899200,21.66 +1998-11-10,110.12,113.44,110.06,112.06,72075600,21.85 +1998-11-09,109.19,111.37,108.81,110.69,68956800,21.58 +1998-11-06,106.06,109.75,105.94,109.31,74461200,21.31 +1998-11-05,105.31,107.62,105.25,106.37,76727200,20.74 +1998-11-04,105.81,107.31,104.87,105.50,67459600,20.57 +1998-11-03,105.50,106.56,104.75,105.19,36546800,20.51 +1998-11-02,106.37,106.87,105.00,105.81,48388400,20.63 +1998-10-30,107.25,108.19,105.12,105.87,59322800,20.64 +1998-10-29,105.44,107.50,105.44,106.62,52402800,20.79 +1998-10-28,104.87,106.62,104.87,105.69,56808400,20.61 +1998-10-27,107.75,107.87,105.00,105.44,65434800,20.56 +1998-10-26,106.81,108.00,105.69,107.06,59678400,20.88 +1998-10-23,109.00,110.00,106.19,106.37,59882000,20.74 +1998-10-22,106.00,110.12,105.25,110.00,81910800,21.45 +1998-10-21,104.87,106.87,103.06,106.44,125377200,20.76 +1998-10-20,103.25,103.37,99.62,100.25,94368400,19.55 +1998-10-19,104.12,104.19,101.12,102.94,60177600,20.07 +1998-10-16,106.00,106.50,104.00,105.06,68620000,20.49 +1998-10-15,100.12,105.62,99.62,105.44,66253600,20.56 +1998-10-14,95.87,101.37,95.87,100.19,62403200,19.54 +1998-10-13,99.50,99.75,95.75,96.44,47995600,18.81 +1998-10-12,99.25,101.00,98.50,99.75,51502800,19.45 +1998-10-09,93.19,97.00,92.25,96.87,72661600,18.89 +1998-10-08,90.56,91.87,87.75,91.19,144719200,17.78 +1998-10-07,97.37,99.75,93.37,94.12,90710400,18.35 +1998-10-06,102.50,103.62,97.37,97.62,76550000,19.04 +1998-10-05,102.50,102.87,96.50,101.19,114937600,19.73 +1998-10-02,103.37,105.19,101.00,104.12,65889600,20.30 +1998-10-01,108.06,109.50,104.00,104.06,65442400,20.29 +1998-09-30,112.31,113.56,110.03,110.06,38875600,21.46 +1998-09-29,111.81,114.00,111.37,112.87,48743200,22.01 +1998-09-28,113.00,114.37,109.75,111.31,41405200,21.70 +1998-09-25,109.12,113.12,108.62,113.06,47878400,22.05 +1998-09-24,113.12,114.62,109.00,110.12,63521600,21.47 +1998-09-23,109.62,113.87,108.50,113.62,65263600,22.16 +1998-09-22,108.44,109.87,106.75,109.19,43082000,21.29 +1998-09-21,102.50,108.06,102.37,107.87,45872000,21.03 +1998-09-18,105.75,106.25,104.31,105.37,47361600,20.55 +1998-09-17,105.31,106.50,104.81,104.94,45178400,20.46 +1998-09-16,107.87,108.50,106.12,108.19,42886800,21.10 +1998-09-15,105.87,108.44,105.12,108.31,49367600,21.12 +1998-09-14,104.94,107.06,104.87,106.00,45086800,20.67 +1998-09-11,101.12,104.62,100.12,104.25,58989200,20.33 +1998-09-10,100.00,101.12,98.69,100.75,60758000,19.65 +1998-09-09,102.25,104.44,101.62,102.25,65480800,19.94 +1998-09-08,100.00,102.06,99.06,101.97,60625600,19.88 +1998-09-04,99.69,100.25,96.12,96.62,50890400,18.84 +1998-09-03,98.75,100.75,98.37,99.25,67506800,19.35 +1998-09-02,101.81,104.25,100.25,100.56,63438400,19.61 +1998-09-01,95.25,101.75,94.50,101.25,140112400,19.74 +1998-08-31,104.87,106.50,95.75,95.94,132690400,18.71 +1998-08-28,108.25,109.62,104.75,105.25,72730000,20.52 +1998-08-27,110.56,112.75,108.50,109.25,74874000,21.30 +1998-08-26,111.25,113.75,110.87,112.56,44804400,21.95 +1998-08-25,111.37,113.69,111.12,112.81,58026800,22.00 +1998-08-24,110.31,112.00,110.00,110.37,26319200,21.52 +1998-08-21,111.12,111.87,108.75,110.62,59523600,21.57 +1998-08-20,110.12,112.75,109.69,112.56,49970400,21.95 +1998-08-19,112.25,112.75,110.25,110.56,55709600,21.56 +1998-08-18,107.87,111.81,107.37,111.25,70591200,21.69 +1998-08-17,103.50,107.37,103.00,107.31,54073200,20.92 +1998-08-14,104.69,105.06,103.50,104.25,29566400,20.33 +1998-08-13,104.12,106.00,103.75,103.94,51193200,20.27 +1998-08-12,104.31,105.19,103.00,105.06,53760000,20.49 +1998-08-11,102.87,104.37,102.00,103.44,60976400,20.17 +1998-08-10,105.81,106.31,104.44,104.44,46763200,20.37 +1998-08-07,107.44,107.50,105.06,105.87,54972400,20.64 +1998-08-06,103.75,106.94,103.62,106.87,68308000,20.84 +1998-08-05,104.12,106.25,101.50,104.31,120208800,20.34 +1998-08-04,108.62,109.62,104.19,104.50,91412000,20.38 +1998-08-03,109.12,110.87,107.37,108.44,73566400,21.15 +1998-07-31,112.94,113.52,109.94,109.94,53705200,21.44 +1998-07-30,111.94,113.62,110.75,113.44,72746400,22.12 +1998-07-29,113.25,114.25,110.06,110.69,59738000,21.58 +1998-07-28,116.00,116.87,112.00,112.25,78378400,21.89 +1998-07-27,113.12,116.75,110.69,116.75,58998000,22.77 +1998-07-24,113.75,115.62,112.50,113.81,60366400,22.19 +1998-07-23,116.31,117.50,113.00,113.00,51029600,22.03 +1998-07-22,112.00,117.25,111.87,116.75,71654400,22.77 +1998-07-21,116.87,119.00,112.50,112.81,74605200,22.00 +1998-07-20,118.19,119.50,116.81,117.00,45794800,22.81 +1998-07-17,117.50,119.62,115.94,117.94,83108400,23.00 +1998-07-16,118.06,118.87,116.62,117.37,65125200,22.89 +1998-07-15,116.00,118.00,115.62,117.37,48690000,22.89 +1998-07-14,118.25,118.75,115.50,116.50,56972400,22.72 +1998-07-13,114.12,118.25,113.62,117.56,69223200,22.92 +1998-07-10,111.12,113.25,109.87,113.19,45396800,22.07 +1998-07-09,110.00,112.00,109.75,111.00,43690000,21.64 +1998-07-08,108.12,110.12,106.75,109.87,41553600,21.42 +1998-07-07,107.81,108.56,106.50,107.94,32422800,21.05 +1998-07-06,106.87,108.06,105.37,107.81,35307600,21.02 +1998-07-02,108.81,109.12,107.12,107.25,27321200,20.91 +1998-07-01,109.12,110.12,107.19,109.37,53470400,21.33 +1998-06-30,105.25,108.56,104.62,108.37,77010000,21.13 +1998-06-29,105.50,107.69,105.25,107.44,65906000,20.95 +1998-06-26,102.25,104.62,102.00,104.44,55680400,20.37 +1998-06-25,105.87,106.87,101.37,101.56,88969600,19.80 +1998-06-24,101.69,105.12,99.94,104.94,105724800,20.46 +1998-06-23,95.81,100.87,95.25,100.75,124675200,19.65 +1998-06-22,94.75,95.94,93.69,95.81,48969600,18.68 +1998-06-19,92.87,94.75,92.50,94.69,91226800,18.46 +1998-06-18,90.81,91.75,90.37,91.19,39228400,17.78 +1998-06-17,89.94,92.37,89.75,91.06,76147600,17.76 +1998-06-16,86.31,89.94,85.50,89.87,61138400,17.52 +1998-06-15,84.69,87.31,84.56,85.94,42846000,16.76 +1998-06-12,84.87,86.12,84.00,85.75,41323600,16.72 +1998-06-11,86.44,87.12,85.12,85.31,41271200,16.64 +1998-06-10,86.62,88.37,85.87,86.00,33290400,16.77 +1998-06-09,85.31,87.56,85.25,87.06,35690400,16.98 +1998-06-08,85.62,86.31,85.00,85.69,18886400,16.71 +1998-06-05,85.87,86.50,84.75,86.25,34431600,16.82 +1998-06-04,84.69,86.12,83.62,86.06,33717600,16.78 +1998-06-03,85.87,86.44,84.12,84.31,36010800,16.44 +1998-06-02,84.06,85.94,83.87,85.50,38570800,16.67 +1998-06-01,83.87,84.61,83.12,83.75,42436800,16.33 +1998-05-29,86.37,86.50,84.75,84.81,34091200,16.54 +1998-05-28,85.75,86.37,85.06,86.31,30746800,16.83 +1998-05-27,82.87,86.12,82.87,86.00,58574400,16.77 +1998-05-26,85.31,86.19,83.50,83.62,44473600,16.31 +1998-05-22,86.62,86.75,85.44,85.56,36129200,16.68 +1998-05-21,85.81,87.37,85.50,86.37,36680000,16.84 +1998-05-20,86.12,86.87,85.37,85.75,35698800,16.72 +1998-05-19,85.81,86.94,85.56,86.50,52234400,16.87 +1998-05-18,84.50,86.50,84.50,86.06,80395600,16.78 +1998-05-15,90.12,90.19,88.75,89.44,48150800,17.44 +1998-05-14,85.87,91.00,85.81,88.94,94774400,17.34 +1998-05-13,88.69,88.75,86.50,86.94,80680400,16.95 +1998-05-12,83.25,85.75,83.25,85.69,64147200,16.71 +1998-05-11,86.12,86.19,84.06,84.25,51474400,16.43 +1998-05-08,81.87,86.12,81.87,85.75,96274800,16.72 +1998-05-07,86.19,86.25,83.19,83.37,78022000,16.26 +1998-05-06,87.50,87.50,86.00,86.37,48110800,16.84 +1998-05-05,87.62,89.56,87.00,87.75,50828000,17.11 +1998-05-04,89.19,89.87,87.94,88.06,37899600,17.17 +1998-05-01,90.19,90.50,88.12,89.62,35996000,17.48 +1998-04-30,91.50,91.62,89.69,90.12,54473600,17.57 +1998-04-29,90.06,91.50,89.62,90.50,50061600,17.65 +1998-04-28,92.12,92.25,89.02,89.87,56668000,17.52 +1998-04-27,89.50,90.53,88.50,90.31,58752000,17.61 +1998-04-24,93.50,94.75,91.87,92.12,51436000,17.96 +1998-04-23,97.25,97.37,94.14,94.50,64215200,18.43 +1998-04-22,96.00,99.12,95.62,98.87,80154000,19.28 +1998-04-21,94.69,95.00,93.12,94.87,51938400,18.50 +1998-04-20,92.37,95.00,92.19,94.62,45535200,18.45 +1998-04-17,91.50,92.25,90.31,92.12,37402800,17.96 +1998-04-16,90.37,92.06,90.19,91.69,39695600,17.88 +1998-04-15,89.25,91.37,88.87,91.37,40498400,17.82 +1998-04-14,88.69,89.56,87.50,88.44,28476800,17.25 +1998-04-13,88.81,89.00,86.75,88.62,33156400,17.28 +1998-04-09,87.94,89.62,87.50,89.00,33619200,17.35 +1998-04-08,86.75,89.00,86.62,88.94,36793200,17.34 +1998-04-07,89.31,90.62,86.75,87.25,62630800,17.01 +1998-04-06,92.62,92.62,89.06,89.94,74232000,17.54 +1998-04-03,92.00,93.06,91.50,93.00,40987600,18.13 +1998-04-02,90.69,91.94,89.87,91.31,41414800,17.80 +1998-04-01,89.81,90.62,88.50,90.37,36835600,17.62 +1998-03-31,88.62,89.75,88.50,89.50,38177200,17.45 +1998-03-30,88.06,88.62,87.12,87.94,27463200,17.15 +1998-03-27,89.37,89.37,87.56,87.81,38924000,17.12 +1998-03-26,88.50,89.56,87.50,88.25,45441200,17.21 +1998-03-25,90.50,90.94,87.25,88.81,124244800,17.32 +1998-03-24,84.19,85.06,83.44,84.94,32281600,16.56 +1998-03-23,81.19,84.62,81.06,83.87,55050000,16.35 +1998-03-20,82.12,83.00,80.50,81.81,56310000,15.95 +1998-03-19,81.50,82.31,81.25,82.00,30299200,15.99 +1998-03-18,80.06,81.81,79.87,81.75,33887600,15.94 +1998-03-17,81.69,81.69,79.69,80.37,53842400,15.67 +1998-03-16,82.44,82.75,81.37,82.00,27979600,15.99 +1998-03-13,82.44,83.00,81.56,82.37,32542400,16.06 +1998-03-12,82.50,82.62,80.81,81.87,47962000,15.96 +1998-03-11,82.00,82.00,79.75,80.69,39838800,15.73 +1998-03-10,81.19,81.50,79.94,81.50,47406400,15.89 +1998-03-09,82.50,82.50,79.50,79.59,52256000,15.52 +1998-03-06,80.31,82.75,80.25,82.75,51404800,16.14 +1998-03-05,79.25,81.44,79.25,80.06,92255600,15.61 +1998-03-04,82.44,83.81,81.56,82.31,71513600,16.05 +1998-03-03,82.62,84.56,82.56,84.50,50753600,16.48 +1998-03-02,85.87,85.87,83.06,83.31,50093600,16.25 +1998-02-27,85.56,86.00,84.56,84.75,47532400,16.53 +1998-02-26,85.50,85.69,84.44,85.50,61388000,16.67 +1998-02-25,83.44,85.00,83.06,84.94,94944400,16.56 +1998-02-24,83.37,84.94,81.87,82.12,118302000,16.01 +1998-02-23,80.94,81.69,79.37,81.62,120803600,15.92 +1998-02-20,155.50,155.75,152.88,155.13,86092000,15.12 +1998-02-19,155.50,156.06,154.25,154.88,73773600,15.10 +1998-02-18,154.63,156.00,153.75,154.63,76608800,15.08 +1998-02-17,158.50,158.50,153.88,154.38,85673600,15.05 +1998-02-13,158.63,158.75,157.38,157.50,42203200,15.36 +1998-02-12,158.06,158.94,156.44,158.75,76658400,15.48 +1998-02-11,159.38,160.06,157.06,158.94,76460000,15.50 +1998-02-10,157.25,159.50,156.75,159.25,48099200,15.53 +1998-02-09,158.75,158.88,155.63,157.19,54681600,15.33 +1998-02-06,155.38,158.25,155.13,158.13,50070400,15.42 +1998-02-05,158.13,158.75,154.75,155.44,67014400,15.16 +1998-02-04,155.88,158.00,155.06,156.81,61940800,15.29 +1998-02-03,155.13,156.13,153.81,155.88,61374400,15.20 +1998-02-02,151.75,155.13,150.50,154.88,98397600,15.10 +1998-01-30,148.63,150.00,147.63,149.19,50071200,14.55 +1998-01-29,148.94,150.13,147.50,148.25,73571200,14.45 +1998-01-28,146.25,149.50,145.50,149.00,79387200,14.53 +1998-01-27,142.38,145.88,141.56,145.19,97540800,14.16 +1998-01-26,139.88,141.88,138.45,141.75,74277600,13.82 +1998-01-23,138.75,139.44,136.70,138.25,63312000,13.48 +1998-01-22,135.56,139.88,135.31,138.63,159139200,13.52 +1998-01-21,137.25,138.44,135.63,137.00,85567200,13.36 +1998-01-20,134.13,138.00,134.00,137.81,64956000,13.44 +1998-01-16,132.38,135.38,132.31,135.25,72943200,13.19 +1998-01-15,130.38,133.00,129.88,132.31,50622400,12.90 +1998-01-14,132.13,132.50,129.25,131.13,54774400,12.78 +1998-01-13,129.50,132.25,128.13,132.13,66945600,12.88 +1998-01-12,124.62,130.00,124.37,129.50,78393600,12.63 +1998-01-09,130.06,131.50,125.87,127.00,87534400,12.38 +1998-01-08,128.63,132.13,127.50,130.50,77619200,12.72 +1998-01-07,129.88,131.19,127.50,129.56,61492800,12.63 +1998-01-06,129.75,133.00,129.25,131.13,67834400,12.78 +1998-01-05,131.25,133.63,127.87,130.38,80377600,12.71 +1998-01-02,129.63,131.50,129.50,131.13,39748000,12.78 +1997-12-31,131.00,131.50,129.00,129.25,46147200,12.60 +1997-12-30,126.44,131.00,126.25,130.25,77864800,12.70 +1997-12-29,122.37,126.75,122.12,126.31,67815200,12.31 +1997-12-26,118.87,120.75,118.75,120.75,32388800,11.77 +1997-12-24,123.75,123.87,118.00,118.94,88411200,11.60 +1997-12-23,127.06,128.25,123.00,123.31,67195200,12.02 +1997-12-22,129.13,130.00,125.87,127.00,59063200,12.38 +1997-12-19,128.75,130.19,126.25,128.69,138065600,12.55 +1997-12-18,134.50,134.75,130.38,130.88,98774400,12.76 +1997-12-17,139.88,140.38,135.50,135.63,51472000,13.22 +1997-12-16,135.88,140.38,135.00,139.06,65401600,13.56 +1997-12-15,136.44,137.00,133.00,136.13,84305600,13.27 +1997-12-12,137.75,138.50,136.00,136.75,54308000,13.33 +1997-12-11,140.38,141.00,138.88,139.06,70189600,13.56 +1997-12-10,142.25,143.25,141.00,142.25,66434400,13.87 +1997-12-09,145.00,145.38,143.50,144.31,51782400,14.07 +1997-12-08,143.50,146.63,143.13,146.13,49952800,14.25 +1997-12-05,142.13,144.75,142.13,143.13,48136000,13.95 +1997-12-04,144.75,145.88,142.25,142.56,62630400,13.90 +1997-12-03,141.69,145.06,141.00,144.69,57712000,14.11 +1997-12-02,143.56,144.88,142.00,142.25,50167200,13.87 +1997-12-01,141.94,144.00,141.63,143.81,49006400,14.02 +1997-11-28,141.25,142.25,141.13,141.50,17392800,13.80 +1997-11-26,139.00,141.88,138.25,141.56,63053600,13.80 +1997-11-25,135.88,139.25,135.75,139.00,56463200,13.55 +1997-11-24,137.13,138.13,135.50,135.50,39084000,13.21 +1997-11-21,137.81,138.00,136.38,137.88,68220800,13.44 +1997-11-20,135.25,137.13,134.88,136.88,53680800,13.35 +1997-11-19,133.63,135.13,133.38,135.06,31720800,13.17 +1997-11-18,134.94,135.50,133.75,134.00,36683200,13.06 +1997-11-17,134.50,135.81,133.44,134.88,60094400,13.15 +1997-11-14,131.63,133.88,131.38,133.31,46663200,13.00 +1997-11-13,130.06,131.63,129.19,131.56,60094400,12.83 +1997-11-12,130.13,131.00,129.00,129.19,45784000,12.60 +1997-11-11,130.44,131.44,129.38,130.63,37013600,12.74 +1997-11-10,131.63,132.50,129.75,130.19,36764800,12.69 +1997-11-07,130.06,132.00,129.88,131.56,63628800,12.83 +1997-11-06,133.25,133.50,131.75,132.06,40266400,12.88 +1997-11-05,134.50,134.63,132.50,133.56,42512800,13.02 +1997-11-04,134.00,134.94,133.19,134.25,49134400,13.09 +1997-11-03,131.63,134.25,131.31,134.13,67714400,13.08 +1997-10-31,131.00,131.50,129.63,130.00,46808800,12.67 +1997-10-30,129.50,131.38,128.50,128.63,72097600,12.54 +1997-10-29,133.75,135.06,130.13,130.88,85532800,12.76 +1997-10-28,132.25,135.00,123.50,133.38,160057600,13.00 +1997-10-27,134.88,136.25,128.63,128.88,96795200,12.57 +1997-10-24,136.88,137.25,133.25,135.38,70030400,13.20 +1997-10-23,132.00,137.25,132.00,135.63,66413600,13.22 +1997-10-22,138.38,138.50,135.38,135.69,55775200,13.23 +1997-10-21,136.13,139.23,135.31,138.50,115682400,13.50 +1997-10-20,133.00,135.25,127.50,132.63,154052800,12.93 +1997-10-17,133.13,134.63,130.38,132.25,87720000,12.89 +1997-10-16,136.13,136.63,132.25,133.91,47327200,13.06 +1997-10-15,135.75,136.00,134.88,135.75,45003200,13.24 +1997-10-14,137.13,137.38,135.38,136.69,33361600,13.33 +1997-10-13,137.00,137.88,136.56,136.75,19051200,13.33 +1997-10-10,138.31,138.75,136.25,136.50,24893600,13.31 +1997-10-09,138.50,139.63,138.13,138.94,34672800,13.55 +1997-10-08,136.63,139.06,136.25,139.00,71196800,13.55 +1997-10-07,135.00,137.69,134.63,136.56,54548800,13.31 +1997-10-06,135.88,136.25,134.25,135.13,41776800,13.17 +1997-10-03,134.94,136.25,133.38,134.94,60284800,13.16 +1997-10-02,133.75,134.63,132.75,133.19,28831200,12.99 +1997-10-01,132.50,134.50,131.38,133.88,61466400,13.05 +1997-09-30,134.44,135.75,132.25,132.31,43892800,12.90 +1997-09-29,133.50,134.75,132.88,134.50,27505600,13.11 +1997-09-26,133.63,133.75,131.63,133.38,36652000,13.00 +1997-09-25,132.88,134.13,132.06,132.75,39272000,12.94 +1997-09-24,135.63,136.06,132.13,132.44,60040000,12.91 +1997-09-23,133.56,135.50,133.13,135.50,39946400,13.21 +1997-09-22,135.00,135.88,133.19,133.31,43251200,13.00 +1997-09-19,132.25,135.25,132.00,135.19,77435200,13.18 +1997-09-18,134.25,135.13,131.44,132.25,61077600,12.89 +1997-09-17,136.63,136.75,132.63,133.19,61609600,12.99 +1997-09-16,131.75,137.00,131.00,136.38,102538400,13.30 +1997-09-15,135.63,137.25,130.63,130.69,129003200,12.74 +1997-09-12,136.88,138.38,135.63,137.94,48576000,13.45 +1997-09-11,135.00,137.38,132.88,136.81,61779200,13.34 +1997-09-10,138.88,139.13,135.06,135.13,53294400,13.17 +1997-09-09,139.25,140.25,138.38,139.50,39465600,13.60 +1997-09-08,137.75,139.81,137.75,139.31,42416000,13.58 +1997-09-05,139.06,139.69,136.25,137.31,48398400,13.39 +1997-09-04,136.00,138.50,135.75,138.19,44476000,13.47 +1997-09-03,137.63,138.88,136.19,136.56,42872800,13.31 +1997-09-02,133.13,137.50,133.00,137.19,50112800,13.38 +1997-08-29,132.06,133.88,131.75,132.19,37857600,12.89 +1997-08-28,133.50,133.75,132.00,132.06,43641600,12.88 +1997-08-27,135.25,135.31,133.00,134.56,49371200,13.12 +1997-08-26,136.00,136.88,134.75,135.00,34327200,13.16 +1997-08-25,137.88,139.00,135.63,136.50,38856800,13.31 +1997-08-22,135.25,137.50,134.13,137.25,72161600,13.38 +1997-08-21,141.63,142.38,137.50,137.88,64412000,13.44 +1997-08-20,139.00,140.69,137.00,140.56,51433600,13.70 +1997-08-19,134.75,139.00,134.63,138.81,91013600,13.53 +1997-08-18,133.00,133.88,131.00,133.88,69969600,13.05 +1997-08-15,135.50,136.00,132.75,132.88,51078400,12.96 +1997-08-14,136.00,136.75,134.13,136.25,45900800,13.28 +1997-08-13,138.13,138.25,134.75,136.06,66731200,13.27 +1997-08-12,139.38,139.75,135.81,136.00,60887200,13.26 +1997-08-11,140.00,140.25,136.38,138.25,72696000,13.48 +1997-08-08,142.81,143.13,140.00,140.00,66815200,13.65 +1997-08-07,144.31,144.38,142.00,143.94,43947200,14.03 +1997-08-06,143.31,144.63,142.25,143.44,43410400,13.99 +1997-08-05,142.25,144.38,142.00,143.31,59333600,13.97 +1997-08-04,140.25,142.00,139.44,141.56,46312800,13.80 +1997-08-01,141.38,141.81,139.19,140.63,58912800,13.71 +1997-07-31,142.00,142.13,140.88,141.38,42240800,13.78 +1997-07-30,140.75,142.00,139.63,141.13,78324000,13.76 +1997-07-29,136.75,140.06,136.13,139.94,79061600,13.64 +1997-07-28,139.25,139.38,135.75,137.00,56404000,13.36 +1997-07-25,138.50,142.25,137.25,138.50,90308800,13.50 +1997-07-24,138.38,140.38,135.63,138.00,141855200,13.45 +1997-07-23,145.25,146.88,141.00,141.44,95556000,13.79 +1997-07-22,136.88,144.81,136.75,144.13,101384000,14.05 +1997-07-21,140.88,141.00,133.75,135.94,127223200,13.25 +1997-07-18,145.00,147.38,140.00,140.50,158927200,13.70 +1997-07-17,150.50,150.75,146.50,149.50,131668000,14.58 +1997-07-16,142.38,149.50,140.00,148.44,111217600,14.47 +1997-07-15,138.06,139.25,136.63,138.47,75503200,13.50 +1997-07-14,130.81,136.00,130.50,135.94,57424000,13.25 +1997-07-11,130.25,131.06,128.44,129.75,38094400,12.65 +1997-07-10,130.50,131.25,128.88,129.88,43780800,12.66 +1997-07-09,132.50,132.63,129.50,130.75,48266400,12.75 +1997-07-08,129.38,131.31,128.94,131.25,36007200,12.80 +1997-07-07,130.63,131.75,129.38,129.50,39320000,12.63 +1997-07-03,130.06,130.06,128.50,129.56,28764000,12.63 +1997-07-02,125.62,128.50,124.06,128.38,53237600,12.52 +1997-07-01,126.44,126.87,123.25,124.94,59377600,12.18 +1997-06-30,127.87,128.75,126.19,126.37,38286400,12.32 +1997-06-27,129.13,130.00,127.25,127.50,38198400,12.43 +1997-06-26,130.13,130.81,127.87,128.25,37312000,12.50 +1997-06-25,132.88,133.25,129.81,130.44,49576000,12.72 +1997-06-24,129.50,132.13,128.38,132.06,39319200,12.88 +1997-06-23,129.88,131.50,128.00,128.06,35724800,12.49 +1997-06-20,129.38,131.38,128.50,129.88,64240000,12.66 +1997-06-19,128.38,130.75,128.00,129.31,65519200,12.61 +1997-06-18,133.25,133.50,130.06,130.19,55657600,12.69 +1997-06-17,131.50,134.94,130.88,134.19,53191200,13.08 +1997-06-16,129.63,131.38,128.88,131.38,40612800,12.81 +1997-06-13,126.75,130.06,126.56,129.63,50116000,12.64 +1997-06-12,126.75,128.13,125.37,127.00,44614400,12.38 +1997-06-11,124.81,127.37,123.56,127.00,49056800,12.38 +1997-06-10,125.12,127.06,123.75,124.81,53135200,12.17 +1997-06-09,124.87,126.12,122.50,125.12,48200000,12.20 +1997-06-06,121.37,124.31,121.00,124.06,35964000,12.10 +1997-06-05,120.27,121.50,119.50,120.56,35892000,11.75 +1997-06-04,120.62,122.25,118.25,119.19,54639200,11.62 +1997-06-03,123.37,123.50,120.62,120.75,41995200,11.77 +1997-06-02,125.00,125.50,123.12,124.37,38939200,12.13 +1997-05-30,117.50,125.62,117.50,124.00,83337600,12.09 +1997-05-29,127.25,129.06,125.00,125.87,51111200,12.27 +1997-05-28,127.25,127.25,124.87,125.87,52241600,12.27 +1997-05-27,122.75,127.37,122.37,126.62,69036000,12.35 +1997-05-23,121.37,123.00,120.87,122.87,28904800,11.98 +1997-05-22,121.00,121.62,119.75,120.62,33655200,11.76 +1997-05-21,120.62,122.94,119.75,120.37,76620000,11.74 +1997-05-20,115.87,119.25,115.25,119.12,64876800,11.61 +1997-05-19,116.12,117.12,115.12,115.12,45632000,11.22 +1997-05-16,116.37,117.00,114.87,115.44,59913600,11.26 +1997-05-15,116.00,117.87,115.87,117.12,41861600,11.42 +1997-05-14,118.37,118.62,115.62,115.87,60744800,11.30 +1997-05-13,118.37,119.25,116.87,117.75,49813600,11.48 +1997-05-12,117.50,118.50,117.00,118.12,42976000,11.52 +1997-05-09,118.00,118.50,115.75,116.75,58392000,11.38 +1997-05-08,115.25,118.12,115.12,116.37,53834400,11.35 +1997-05-07,116.37,119.00,115.12,115.50,70532800,11.26 +1997-05-06,119.37,119.75,116.37,117.31,74770400,11.44 +1997-05-05,119.62,120.75,115.50,120.19,111063200,11.72 +1997-05-02,122.00,123.50,118.94,120.75,96192000,11.77 +1997-05-01,122.00,123.25,119.25,121.00,72325600,11.80 +1997-04-30,118.62,122.62,118.37,121.50,90204000,11.85 +1997-04-29,117.37,119.12,116.50,119.00,73953600,11.60 +1997-04-28,113.75,115.06,111.62,114.87,67224000,11.20 +1997-04-25,113.50,115.37,113.25,113.62,58566400,11.08 +1997-04-24,116.62,117.87,112.75,114.12,118163200,11.13 +1997-04-23,110.62,115.75,110.37,115.12,102814400,11.22 +1997-04-22,107.62,110.81,107.50,110.62,82300000,10.79 +1997-04-21,107.00,111.87,106.12,107.62,155695200,10.49 +1997-04-18,104.00,107.62,103.00,107.62,231764000,10.49 +1997-04-17,98.50,100.00,97.50,98.12,71720800,9.57 +1997-04-16,96.62,98.50,96.25,98.25,42710400,9.58 +1997-04-15,97.87,99.00,95.87,97.12,84440000,9.47 +1997-04-14,94.75,97.37,93.37,97.37,59107200,9.49 +1997-04-11,95.50,97.25,94.94,95.00,60033600,9.26 +1997-04-10,97.75,97.75,95.50,96.75,67913600,9.43 +1997-04-09,99.12,99.25,97.75,98.00,73762400,9.55 +1997-04-08,96.62,98.25,95.50,98.25,53339200,9.58 +1997-04-07,95.62,97.62,95.00,95.87,76511200,9.35 +1997-04-04,93.75,96.75,93.75,94.19,94964000,9.18 +1997-04-03,91.00,95.37,90.62,95.12,92252800,9.27 +1997-04-02,92.87,93.62,91.00,92.00,63331200,8.97 +1997-04-01,90.12,93.75,89.75,93.25,86680800,9.09 +1997-03-31,93.12,94.50,91.25,91.69,93825600,8.94 +1997-03-27,95.12,96.12,91.00,93.75,93919200,9.14 +1997-03-26,90.75,94.62,90.62,94.25,81270400,9.19 +1997-03-25,90.62,91.37,88.87,90.31,89701600,8.80 +1997-03-24,93.12,93.50,87.62,90.12,186269600,8.79 +1997-03-21,96.50,97.12,92.87,94.00,85829600,9.16 +1997-03-20,96.62,97.75,95.37,96.00,81410400,9.36 +1997-03-19,97.75,98.25,94.94,96.75,111560000,9.43 +1997-03-18,100.62,100.81,98.87,99.62,59012000,9.71 +1997-03-17,98.50,100.75,98.00,100.50,83958400,9.80 +1997-03-14,99.75,100.25,98.87,99.00,61327200,9.65 +1997-03-13,98.25,100.12,98.00,99.62,45505600,9.71 +1997-03-12,97.75,99.50,97.75,98.75,43234400,9.63 +1997-03-11,99.62,100.56,98.37,98.37,47577600,9.59 +1997-03-10,97.12,100.12,95.94,100.00,45997600,9.75 +1997-03-07,98.37,99.50,96.50,96.75,46032000,9.43 +1997-03-06,100.75,100.87,97.73,97.75,57018400,9.53 +1997-03-05,99.50,101.00,99.25,100.87,46393600,9.83 +1997-03-04,99.25,100.12,98.62,99.12,63920800,9.66 +1997-03-03,97.00,100.12,96.62,99.50,53874400,9.70 +1997-02-28,96.12,98.37,95.44,97.50,78412000,9.51 +1997-02-27,100.25,100.25,96.00,96.12,56628800,9.37 +1997-02-26,99.50,100.37,98.37,100.25,48849600,9.77 +1997-02-25,100.00,101.02,98.87,99.50,63941600,9.70 +1997-02-24,94.25,100.25,94.00,100.12,68599200,9.76 +1997-02-21,94.87,95.37,94.00,95.00,61131200,9.26 +1997-02-20,96.87,97.50,95.12,95.25,75395200,9.29 +1997-02-19,97.37,98.12,96.50,97.50,56383200,9.51 +1997-02-18,97.62,97.87,96.25,97.37,52545600,9.49 +1997-02-14,99.37,100.50,97.62,97.87,57395200,9.54 +1997-02-13,100.50,101.12,99.37,100.00,58292000,9.75 +1997-02-12,98.37,100.00,97.50,99.87,72001600,9.74 +1997-02-11,98.25,98.62,95.12,98.50,88834400,9.60 +1997-02-10,100.75,101.50,97.62,97.75,66804800,9.53 +1997-02-07,98.37,100.50,97.50,100.37,62448000,9.79 +1997-02-06,98.25,98.37,96.00,97.12,102122400,9.47 +1997-02-05,103.12,103.50,96.87,98.37,110099200,9.59 +1997-02-04,102.37,103.25,100.50,103.12,56464000,10.05 +1997-02-03,102.62,103.39,101.12,102.37,60804800,9.98 +1997-01-31,101.87,103.25,100.87,102.00,86516000,9.94 +1997-01-30,98.25,101.25,98.00,101.12,79937600,9.86 +1997-01-29,96.75,97.37,95.75,97.25,48933600,9.48 +1997-01-28,98.37,98.75,94.75,95.62,64656800,9.32 +1997-01-27,96.50,97.39,95.50,96.12,53263200,9.37 +1997-01-24,95.12,97.75,94.37,95.94,89817600,9.35 +1997-01-23,98.12,99.75,94.50,94.75,105048000,9.24 +1997-01-22,95.12,98.50,94.62,97.37,129236800,9.49 +1997-01-21,90.62,95.06,89.62,95.00,114592000,9.26 +1997-01-20,87.00,92.87,86.62,90.75,146220800,8.85 +1997-01-17,85.62,87.75,85.50,87.12,65368800,8.49 +1997-01-16,85.00,87.12,85.00,86.00,58688000,8.38 +1997-01-15,85.62,86.25,84.37,84.62,53058400,8.25 +1997-01-14,84.25,86.62,84.25,85.37,63728000,8.32 +1997-01-13,85.12,85.50,83.50,83.75,50361600,8.17 +1997-01-10,82.00,84.37,81.62,84.25,66556800,8.21 +1997-01-09,83.75,83.75,82.25,82.37,47763200,8.03 +1997-01-08,85.00,85.23,83.12,83.37,50593600,8.13 +1997-01-07,84.50,85.12,83.37,85.00,36880800,8.29 +1997-01-06,84.62,85.25,83.12,84.37,55948000,8.23 +1997-01-03,82.25,84.75,82.00,84.62,44131200,8.25 +1997-01-02,83.12,83.12,80.75,81.62,54480800,7.96 +1996-12-31,84.00,84.25,82.50,82.62,34367200,8.06 +1996-12-30,85.37,85.62,83.50,83.50,27279200,8.14 +1996-12-27,85.50,85.75,84.02,84.25,19079200,8.21 +1996-12-26,85.25,86.12,85.12,85.50,27905600,8.34 +1996-12-24,84.12,85.12,83.12,84.87,16246400,8.27 +1996-12-23,84.12,84.75,82.87,83.75,36892800,8.17 +1996-12-20,85.50,85.62,83.37,83.62,90414400,8.15 +1996-12-19,84.00,85.12,83.00,84.87,94609600,8.27 +1996-12-18,81.37,82.75,80.00,82.62,61796800,8.06 +1996-12-17,76.62,80.12,76.37,79.87,68944800,7.79 +1996-12-16,80.25,80.75,76.50,76.75,64883200,7.48 +1996-12-13,81.12,82.00,79.23,80.00,74532000,7.80 +1996-12-12,85.00,85.25,81.00,81.00,78272800,7.90 +1996-12-11,81.00,83.62,80.12,83.37,113558400,8.13 +1996-12-10,84.37,84.56,81.75,81.87,125725600,7.98 +1996-12-09,78.37,81.87,78.00,81.75,94718400,7.97 +1996-12-06,149.00,154.50,148.27,152.88,110238400,7.45 +1996-12-05,153.38,155.38,151.88,153.00,74950400,7.46 +1996-12-04,155.13,155.25,152.13,153.25,102542400,7.47 +1996-12-03,158.38,159.50,154.63,154.69,77563200,7.54 +1996-12-02,157.50,157.75,155.25,157.75,64502400,7.69 +1996-11-29,155.50,157.13,155.50,156.88,17152000,7.65 +1996-11-27,154.13,155.75,153.75,155.50,44446400,7.58 +1996-11-26,154.00,155.38,152.38,153.75,108238400,7.50 +1996-11-25,151.13,153.63,150.50,153.50,75129600,7.48 +1996-11-22,150.75,152.50,149.38,150.50,94424000,7.34 +1996-11-21,154.50,154.63,150.00,150.38,130718400,7.33 +1996-11-20,156.00,158.00,153.25,153.25,123857600,7.47 +1996-11-19,150.50,155.88,150.25,155.88,104739200,7.60 +1996-11-18,149.38,151.75,148.63,150.38,98585600,7.33 +1996-11-15,150.75,150.88,147.38,149.00,104041600,7.26 +1996-11-14,145.25,149.63,145.25,149.63,114969600,7.29 +1996-11-13,143.63,145.75,143.13,145.00,90409600,7.07 +1996-11-12,144.00,145.88,141.50,141.75,81156800,6.91 +1996-11-11,143.38,144.75,143.00,143.63,38593600,7.00 +1996-11-08,143.38,143.50,141.50,143.50,67369600,7.00 +1996-11-07,144.75,146.13,143.13,143.50,76742400,7.00 +1996-11-06,141.38,144.50,141.00,144.50,71438400,7.04 +1996-11-05,138.50,141.50,138.31,141.50,86417600,6.90 +1996-11-04,137.25,138.38,136.75,138.00,36006400,6.73 +1996-11-01,137.25,138.75,136.50,137.38,56531200,6.70 +1996-10-31,136.38,137.38,136.13,137.25,37028800,6.69 +1996-10-30,135.38,137.00,134.88,136.25,60526400,6.64 +1996-10-29,136.88,137.38,134.88,135.38,66756800,6.60 +1996-10-28,136.69,137.63,136.25,136.63,51240000,6.66 +1996-10-25,136.63,137.88,136.13,136.44,53084800,6.65 +1996-10-24,134.88,137.38,133.88,136.63,81417600,6.66 +1996-10-23,132.63,134.75,131.75,134.50,67443200,6.56 +1996-10-22,133.13,133.38,131.25,132.50,113806400,6.46 +1996-10-21,134.75,136.00,133.50,134.00,71401600,6.53 +1996-10-18,134.00,135.00,133.56,134.75,69646400,6.57 +1996-10-17,138.25,139.00,135.50,135.50,49097600,6.61 +1996-10-16,138.75,138.94,137.00,138.00,36427200,6.73 +1996-10-15,138.75,139.13,137.38,138.88,61206400,6.77 +1996-10-14,137.38,138.13,136.38,136.63,36091200,6.66 +1996-10-11,134.63,137.25,134.25,137.13,36523200,6.68 +1996-10-10,133.75,136.13,133.38,133.75,51739200,6.52 +1996-10-09,136.00,136.13,133.25,134.50,64955200,6.56 +1996-10-08,137.75,137.75,135.00,135.38,48465600,6.60 +1996-10-07,136.38,138.13,135.88,137.50,42432000,6.70 +1996-10-04,134.63,136.63,134.25,136.38,45166400,6.65 +1996-10-03,134.75,135.13,133.63,134.00,58294400,6.53 +1996-10-02,132.88,135.75,132.38,134.75,68760000,6.57 +1996-10-01,131.75,133.88,130.88,132.13,69124800,6.44 +1996-09-30,133.50,134.88,131.75,131.88,89574400,6.43 +1996-09-27,132.50,135.25,131.25,134.38,98372800,6.55 +1996-09-26,135.75,136.13,131.75,132.00,92604800,6.43 +1996-09-25,137.50,137.88,135.38,135.63,44067200,6.61 +1996-09-24,137.50,138.38,136.13,136.88,72520000,6.67 +1996-09-23,137.63,138.13,136.25,137.75,46385600,6.72 +1996-09-20,137.00,138.63,135.88,138.13,104849600,6.73 +1996-09-19,136.50,138.25,135.75,137.75,75912000,6.72 +1996-09-18,134.00,137.88,133.25,136.50,86049600,6.65 +1996-09-17,132.88,134.63,132.25,133.88,75624000,6.53 +1996-09-16,131.13,133.13,131.00,131.50,62409600,6.41 +1996-09-13,129.63,131.38,128.88,131.00,80137600,6.39 +1996-09-12,125.50,129.50,125.19,128.63,95944000,6.27 +1996-09-11,123.94,125.50,123.62,125.12,36387200,6.10 +1996-09-10,124.75,125.12,123.62,124.37,38904000,6.06 +1996-09-09,122.50,125.00,122.25,124.87,41747200,6.09 +1996-09-06,122.00,122.75,121.62,122.50,41921600,5.97 +1996-09-05,122.75,122.75,121.50,121.50,40372800,5.92 +1996-09-04,123.37,123.62,122.94,123.37,27126400,6.01 +1996-09-03,122.00,123.37,120.62,123.37,48524800,6.01 +1996-08-30,124.25,124.25,122.50,122.50,28088000,5.97 +1996-08-29,125.25,125.25,123.62,124.12,34182400,6.05 +1996-08-28,125.00,125.75,124.87,125.62,32070400,6.12 +1996-08-27,123.12,124.75,123.00,124.75,28038400,6.08 +1996-08-26,123.37,123.75,122.75,122.87,31944000,5.99 +1996-08-23,124.87,125.00,123.25,123.25,44006400,6.01 +1996-08-22,124.12,125.12,123.50,125.00,50236800,6.09 +1996-08-21,122.50,123.50,121.75,123.50,49345600,6.02 +1996-08-20,123.75,124.12,123.25,123.37,25678400,6.01 +1996-08-19,123.87,124.12,122.25,123.50,43131200,6.02 +1996-08-16,125.12,125.25,123.75,124.25,47598400,6.06 +1996-08-15,124.75,125.75,124.37,125.12,35556800,6.10 +1996-08-14,123.87,125.12,123.75,124.87,52032000,6.09 +1996-08-13,125.00,125.87,123.37,123.50,72508800,6.02 +1996-08-12,124.25,126.12,124.00,125.25,66187200,6.11 +1996-08-09,124.75,125.50,123.87,124.50,44313600,6.07 +1996-08-08,124.12,125.87,123.75,125.25,54379200,6.11 +1996-08-07,124.37,125.12,122.87,124.75,76790400,6.08 +1996-08-06,121.62,124.12,120.87,124.00,67388800,6.04 +1996-08-05,123.50,123.75,121.25,121.75,55072000,5.94 +1996-08-02,122.12,123.87,120.62,123.37,109289600,6.01 +1996-08-01,117.87,120.87,117.37,120.62,96025600,5.88 +1996-07-31,119.00,119.62,117.62,117.87,56320000,5.75 +1996-07-30,117.87,118.75,116.12,118.62,66976000,5.78 +1996-07-29,119.25,119.87,116.75,116.87,56748800,5.70 +1996-07-26,119.50,119.50,118.25,119.12,59304000,5.81 +1996-07-25,116.00,118.75,115.12,118.50,100920000,5.78 +1996-07-24,109.50,115.75,109.50,114.75,192225600,5.59 +1996-07-23,120.00,120.00,110.25,112.12,257678400,5.47 +1996-07-22,121.02,121.50,117.87,119.75,144475200,5.84 +1996-07-19,117.75,121.62,117.75,120.98,99208000,5.90 +1996-07-18,117.25,120.00,115.87,119.87,98537600,5.84 +1996-07-17,117.75,118.12,115.62,117.12,126208000,5.71 +1996-07-16,110.25,115.62,107.50,115.37,182100800,5.62 +1996-07-15,112.37,113.75,109.87,110.62,111832000,5.39 +1996-07-12,115.19,115.19,110.48,112.37,139478400,5.48 +1996-07-11,118.25,118.37,113.75,114.50,140915200,5.58 +1996-07-10,120.00,120.00,118.12,119.50,77980800,5.83 +1996-07-09,120.87,121.37,120.00,120.00,35571200,5.85 +1996-07-08,118.50,120.75,118.12,120.31,64432000,5.86 +1996-07-05,120.12,120.12,118.37,118.37,35331200,5.77 +1996-07-03,121.62,122.87,120.62,121.12,44243200,5.90 +1996-07-02,122.37,122.62,121.25,121.62,38548800,5.93 +1996-07-01,120.25,122.50,120.12,122.31,47862400,5.96 +1996-06-28,120.50,121.00,119.12,120.12,52000000,5.86 +1996-06-27,120.50,121.00,119.00,119.94,77582400,5.85 +1996-06-26,121.87,122.00,119.00,120.50,71457600,5.87 +1996-06-25,124.25,124.25,121.37,122.00,41145600,5.95 +1996-06-24,124.00,125.12,123.00,124.12,48102400,6.05 +1996-06-21,122.37,124.12,121.50,123.87,56806400,6.04 +1996-06-20,122.00,122.48,119.00,121.75,102228800,5.94 +1996-06-19,122.50,123.12,121.37,121.75,73409600,5.94 +1996-06-18,124.50,124.50,122.00,122.37,74585600,5.97 +1996-06-17,123.12,125.00,122.37,124.62,57499200,6.08 +1996-06-14,124.75,125.00,122.87,123.00,55944000,6.00 +1996-06-13,125.12,125.87,123.75,124.62,62577600,6.08 +1996-06-12,122.87,125.37,122.75,125.00,88844800,6.09 +1996-06-11,120.75,123.25,120.62,122.12,65259200,5.95 +1996-06-10,121.00,121.25,119.98,120.62,45819200,5.88 +1996-06-07,117.62,121.25,117.62,121.25,70198400,5.91 +1996-06-06,121.75,123.00,119.75,119.81,88136000,5.84 +1996-06-05,118.00,121.25,117.87,120.87,50968000,5.89 +1996-06-04,118.62,118.87,116.25,117.87,65852800,5.75 +1996-06-03,118.75,119.50,118.12,118.37,31684800,5.77 +1996-05-31,118.56,119.37,118.00,118.75,40259200,5.79 +1996-05-30,117.25,118.25,116.62,118.25,33824000,5.76 +1996-05-29,117.37,118.25,116.62,117.12,33569600,5.71 +1996-05-28,118.75,119.14,117.12,117.25,43376000,5.72 +1996-05-24,118.50,119.00,118.25,118.50,26443200,5.78 +1996-05-23,116.87,119.12,116.87,118.50,51976000,5.78 +1996-05-22,115.00,117.25,114.62,116.87,45646400,5.70 +1996-05-21,116.75,116.87,115.12,115.12,42113600,5.61 +1996-05-20,117.37,117.87,116.62,116.75,38457600,5.69 +1996-05-17,117.87,118.00,116.37,117.00,35392000,5.70 +1996-05-16,116.00,117.37,115.62,117.12,67092800,5.71 +1996-05-15,119.00,119.75,117.37,117.62,56323200,5.73 +1996-05-14,119.25,120.00,118.23,119.00,76832000,5.80 +1996-05-13,115.00,118.87,115.00,118.62,95606400,5.78 +1996-05-10,114.37,115.14,114.12,114.87,43913600,5.60 +1996-05-09,114.25,115.12,113.25,113.50,47776000,5.53 +1996-05-08,112.87,114.37,110.75,114.25,77851200,5.57 +1996-05-07,111.62,113.50,111.62,113.12,47366400,5.51 +1996-05-06,111.00,112.37,109.62,111.75,75852800,5.45 +1996-05-03,112.50,114.50,110.12,110.87,75300800,5.40 +1996-05-02,115.12,115.25,111.12,111.62,87340800,5.44 +1996-05-01,112.87,115.25,112.62,115.12,65014400,5.61 +1996-04-30,112.62,113.25,111.87,113.25,28441600,5.52 +1996-04-29,113.37,113.50,112.00,112.62,34267200,5.49 +1996-04-26,112.75,113.87,112.37,113.50,54296000,5.53 +1996-04-25,111.50,113.75,110.25,112.75,63896000,5.50 +1996-04-24,113.00,113.12,111.25,111.50,69251200,5.44 +1996-04-23,112.75,113.25,111.37,112.62,57139200,5.49 +1996-04-22,110.50,113.37,110.25,112.75,92758400,5.50 +1996-04-19,111.62,112.12,109.50,109.75,169492800,5.35 +1996-04-18,106.00,109.25,105.50,109.00,133958400,5.31 +1996-04-17,105.25,106.00,104.31,105.94,62630400,5.16 +1996-04-16,104.25,105.50,104.00,105.25,80116800,5.13 +1996-04-15,101.00,103.62,101.00,103.52,50102400,5.05 +1996-04-12,101.12,101.62,100.50,101.12,33737600,4.93 +1996-04-11,101.50,102.37,99.62,101.12,62465600,4.93 +1996-04-10,101.50,103.00,101.25,101.62,51910400,4.95 +1996-04-09,104.00,104.00,101.50,101.62,66942400,4.95 +1996-04-08,102.50,103.87,101.87,103.75,73753600,5.06 +1996-04-04,104.62,104.87,103.50,104.37,28961600,5.09 +1996-04-03,104.12,105.12,103.37,104.50,46072000,5.09 +1996-04-02,102.75,105.00,102.62,104.62,54396800,5.10 +1996-04-01,103.14,103.50,102.12,102.75,31692800,5.01 +1996-03-29,102.37,104.12,102.12,103.12,53508800,5.03 +1996-03-28,101.87,103.50,101.12,102.25,54955200,4.98 +1996-03-27,103.25,104.00,101.12,102.50,52729600,5.00 +1996-03-26,99.37,102.87,98.75,102.75,79899200,5.01 +1996-03-25,101.50,102.37,98.81,99.87,63379200,4.87 +1996-03-22,101.12,101.44,99.75,101.12,48046400,4.93 +1996-03-21,104.25,104.37,100.50,100.75,66313600,4.91 +1996-03-20,106.25,106.62,103.73,104.62,92944000,5.10 +1996-03-19,106.37,107.06,104.75,106.87,92491200,5.21 +1996-03-18,102.37,105.87,102.37,105.25,119472000,5.13 +1996-03-15,100.00,103.12,99.62,102.37,121721600,4.99 +1996-03-14,101.12,101.87,99.62,99.62,60640000,4.86 +1996-03-13,98.23,101.00,97.75,100.87,156710400,4.92 +1996-03-12,96.25,96.62,94.75,95.75,76888000,4.67 +1996-03-11,95.12,96.62,95.12,96.50,74592000,4.70 +1996-03-08,95.50,97.50,94.75,95.12,108524800,4.64 +1996-03-07,97.12,97.62,96.62,97.31,44291200,4.74 +1996-03-06,98.25,98.87,97.00,97.00,44256000,4.73 +1996-03-05,96.00,98.27,95.75,98.12,57369600,4.78 +1996-03-04,96.00,97.37,95.50,96.25,72564800,4.69 +1996-03-01,98.37,98.62,94.62,95.50,157652800,4.66 +1996-02-29,99.00,100.12,98.56,98.69,61723200,4.81 +1996-02-28,100.75,102.00,99.87,100.12,60051200,4.88 +1996-02-27,100.75,100.81,99.73,100.12,60958400,4.88 +1996-02-26,103.00,103.25,100.50,100.62,63696000,4.91 +1996-02-23,102.62,103.62,101.87,103.50,102640000,5.05 +1996-02-22,100.00,102.62,100.00,102.50,106500800,5.00 +1996-02-21,97.75,100.12,97.50,99.87,80046400,4.87 +1996-02-20,97.25,98.50,96.87,97.75,64182400,4.77 +1996-02-16,98.75,99.25,97.87,97.87,62206400,4.77 +1996-02-15,98.50,99.12,97.75,98.50,52195200,4.80 +1996-02-14,100.12,100.12,98.37,98.75,80212800,4.81 +1996-02-13,97.75,100.25,97.50,99.62,114513600,4.86 +1996-02-12,99.75,101.12,99.12,99.50,87779200,4.85 +1996-02-09,98.75,100.25,98.50,100.12,122832000,4.88 +1996-02-08,96.62,99.50,95.50,98.87,103924800,4.82 +1996-02-07,96.00,97.12,95.48,96.87,65555200,4.72 +1996-02-06,96.50,97.50,95.62,96.50,98158400,4.70 +1996-02-05,92.75,97.25,92.75,97.12,126480000,4.73 +1996-02-02,94.00,94.12,92.12,93.00,44686400,4.53 +1996-02-01,92.25,94.25,92.00,94.12,78587200,4.59 +1996-01-31,90.75,92.62,90.12,92.50,68774400,4.51 +1996-01-30,90.87,91.37,90.62,90.81,45120000,4.43 +1996-01-29,90.75,91.25,89.36,90.37,39587200,4.41 +1996-01-26,89.12,90.87,89.00,90.50,50881600,4.41 +1996-01-25,91.37,91.62,89.00,89.37,59881600,4.36 +1996-01-24,89.87,92.50,89.50,91.25,92217600,4.45 +1996-01-23,91.37,91.75,89.25,89.50,66473600,4.36 +1996-01-22,91.62,92.75,90.87,92.00,82643200,4.48 +1996-01-19,90.25,93.25,89.62,91.87,227440000,4.48 +1996-01-18,85.50,88.87,85.00,87.62,121331200,4.27 +1996-01-17,84.75,87.50,84.62,84.87,143078400,4.14 +1996-01-16,83.62,86.48,83.25,86.37,122006400,4.21 +1996-01-15,85.87,85.87,81.87,82.50,84572800,4.02 +1996-01-12,86.50,86.87,83.87,85.75,80544000,4.18 +1996-01-11,83.50,86.87,83.12,86.62,116617600,4.22 +1996-01-10,80.50,83.25,80.48,82.37,181571200,4.02 +1996-01-09,86.00,86.00,79.87,80.19,177424000,3.91 +1996-01-08,86.50,87.62,86.12,86.25,11377600,4.20 +1996-01-05,86.25,87.62,86.12,86.37,62083200,4.21 +1996-01-04,87.25,87.50,84.87,87.37,102353600,4.26 +1996-01-03,89.12,90.12,86.75,86.87,62857600,4.23 +1996-01-02,87.87,89.75,87.37,89.75,57779200,4.38 +1995-12-29,87.25,88.75,86.25,87.75,52342400,4.28 +1995-12-28,88.25,88.50,87.25,87.37,49777600,4.26 +1995-12-27,90.37,90.62,88.37,88.87,40539200,4.33 +1995-12-26,90.25,91.25,89.87,90.25,34707200,4.40 +1995-12-22,90.12,90.87,89.12,90.50,36057600,4.41 +1995-12-21,87.75,90.00,87.37,90.00,60593600,4.39 +1995-12-20,91.12,91.37,87.00,87.12,84980800,4.25 +1995-12-19,87.37,91.02,87.37,90.87,84340800,4.43 +1995-12-18,88.37,89.00,85.37,87.00,99460800,4.24 +1995-12-15,89.12,89.75,87.25,88.37,115470400,4.31 +1995-12-14,92.25,93.50,88.62,88.75,92822400,4.33 +1995-12-13,91.12,92.12,90.50,91.75,39577600,4.47 +1995-12-12,93.00,93.12,91.12,91.37,44739200,4.45 +1995-12-11,94.50,94.75,93.00,93.12,61924800,4.54 +1995-12-08,92.62,94.62,92.23,94.50,147041600,4.61 +1995-12-07,91.12,92.00,88.86,90.50,132876800,4.41 +1995-12-06,86.12,91.00,86.00,90.62,145272000,4.42 +1995-12-05,87.87,88.12,85.12,86.00,104528000,4.19 +1995-12-04,86.12,89.62,85.25,87.87,130436800,4.28 +1995-12-01,87.12,87.87,85.87,86.25,96124800,4.20 +1995-11-30,89.50,89.75,86.87,87.12,93512000,4.25 +1995-11-29,91.87,92.50,89.25,89.75,91067200,4.38 +1995-11-28,87.00,91.50,86.50,91.50,86537600,4.46 +1995-11-27,88.62,89.50,87.14,87.25,79100800,4.25 +1995-11-24,87.62,88.25,87.37,88.00,15014400,4.29 +1995-11-22,88.37,89.50,87.25,87.37,65428800,4.26 +1995-11-21,85.87,88.75,84.25,88.00,130163200,4.29 +1995-11-20,88.37,89.37,85.75,86.00,115296000,4.19 +1995-11-17,90.00,90.62,87.37,87.37,143803200,4.26 +1995-11-16,90.50,91.84,89.62,89.87,195126400,4.38 +1995-11-15,94.37,94.62,91.87,94.00,108686400,4.58 +1995-11-14,95.87,96.00,93.87,94.00,75657600,4.58 +1995-11-13,96.62,97.25,96.06,96.31,59003200,4.69 +1995-11-10,98.50,99.00,96.61,96.87,60819200,4.72 +1995-11-09,96.50,99.02,96.00,99.00,99814400,4.83 +1995-11-08,93.87,95.50,93.37,95.25,71280000,4.64 +1995-11-07,96.50,97.37,92.87,93.00,115921600,4.53 +1995-11-06,97.00,98.87,96.87,97.37,87729600,4.75 +1995-11-03,100.00,100.12,98.75,99.50,40635200,4.85 +1995-11-02,98.62,100.37,98.25,100.00,63504000,4.87 +1995-11-01,100.12,101.00,98.25,98.37,72819200,4.80 +1995-10-31,103.00,103.37,99.75,100.00,91958400,4.87 +1995-10-30,99.25,103.37,98.50,102.75,125464000,5.01 +1995-10-27,97.50,100.14,97.37,100.00,130683200,4.87 +1995-10-26,95.75,98.12,95.37,98.00,82841600,4.78 +1995-10-25,97.62,97.75,95.87,95.87,60211200,4.67 +1995-10-24,96.37,98.12,96.37,97.50,68681600,4.75 +1995-10-23,95.00,97.12,94.50,96.37,93473600,4.70 +1995-10-20,96.50,96.87,94.87,95.50,79984000,4.66 +1995-10-19,95.25,97.00,94.75,96.75,95840000,4.72 +1995-10-18,98.25,98.62,94.87,95.62,294329600,4.66 +1995-10-17,87.25,91.50,86.75,91.12,123140800,4.44 +1995-10-16,85.75,87.37,85.50,86.75,61067200,4.23 +1995-10-13,88.50,88.75,86.00,86.25,68644800,4.20 +1995-10-12,87.00,88.12,86.62,87.62,78700800,4.27 +1995-10-11,85.87,87.37,85.00,86.62,107009600,4.22 +1995-10-10,81.25,84.12,80.37,83.75,157644800,4.08 +1995-10-09,84.87,85.75,82.75,83.12,108614400,4.05 +1995-10-06,87.50,89.00,85.50,85.87,76616000,4.19 +1995-10-05,86.00,87.50,85.00,87.50,101289600,4.27 +1995-10-04,88.12,88.12,85.50,86.12,73473600,4.20 +1995-10-03,88.12,89.25,87.25,88.87,80736000,4.33 +1995-10-02,90.50,90.87,88.12,88.25,67731200,4.30 +1995-09-29,91.62,92.75,90.06,90.50,95158400,4.41 +1995-09-28,89.00,91.50,88.87,91.50,105510400,4.46 +1995-09-27,88.00,88.75,83.37,88.62,140756800,4.32 +1995-09-26,90.37,91.87,88.12,88.25,76548800,4.30 +1995-09-25,90.50,90.62,88.50,90.23,57878400,4.40 +1995-09-22,89.87,90.75,89.00,89.75,99899200,4.38 +1995-09-21,91.25,93.06,90.50,90.62,83836800,4.42 +1995-09-20,93.50,94.62,92.62,93.12,44652800,4.54 +1995-09-19,92.00,94.50,91.50,93.31,58011200,4.55 +1995-09-18,93.25,93.37,90.87,92.00,76827200,4.48 +1995-09-15,94.75,95.37,92.50,93.44,88316800,4.56 +1995-09-14,96.12,96.50,94.75,94.87,54230400,4.62 +1995-09-13,96.12,97.00,95.12,96.12,61208000,4.69 +1995-09-12,97.75,97.75,95.62,96.25,71155200,4.69 +1995-09-11,95.37,97.87,95.00,97.62,77408000,4.76 +1995-09-08,93.75,95.62,93.25,95.50,64417600,4.66 +1995-09-07,94.25,96.62,93.25,94.62,93932800,4.61 +1995-09-06,95.25,96.50,93.00,93.50,100265600,4.56 +1995-09-05,90.87,95.12,90.25,95.00,92052800,4.63 +1995-09-01,91.75,92.00,89.37,89.75,80262400,4.38 +1995-08-31,93.37,94.00,91.50,92.50,38764800,4.51 +1995-08-30,92.87,93.75,91.50,93.25,79499200,4.55 +1995-08-29,90.12,91.87,87.00,91.87,163929600,4.48 +1995-08-28,94.37,94.37,89.87,90.06,112622400,4.39 +1995-08-25,96.37,96.75,94.37,94.37,73489600,4.60 +1995-08-24,98.12,98.12,95.50,96.12,95275200,4.69 +1995-08-23,100.00,100.50,97.50,97.87,111188800,4.77 +1995-08-22,95.12,99.37,94.37,99.31,94320000,4.84 +1995-08-21,97.50,98.25,94.37,94.50,110491200,4.61 +1995-08-18,99.69,99.75,97.00,97.12,77502400,4.73 +1995-08-17,98.87,100.75,98.64,99.12,74564800,4.83 +1995-08-16,98.37,98.87,97.12,98.75,38118400,4.81 +1995-08-15,99.25,99.37,96.87,98.37,63267200,4.80 +1995-08-14,96.87,99.25,95.75,98.75,88872000,4.81 +1995-08-11,94.75,96.62,92.12,96.50,97195200,4.70 +1995-08-10,97.00,97.12,93.87,94.12,71883200,4.59 +1995-08-09,97.75,98.12,96.00,96.50,144384000,4.70 +1995-08-08,94.12,94.87,93.37,93.50,43913600,4.56 +1995-08-07,94.50,95.50,91.75,93.62,64273600,4.56 +1995-08-04,91.37,93.87,91.25,93.87,77705600,4.58 +1995-08-03,88.00,91.37,87.50,91.12,113536000,4.44 +1995-08-02,91.00,92.62,88.00,89.00,129804800,4.34 +1995-08-01,90.75,90.89,87.87,89.50,166144000,4.36 +1995-07-31,93.12,93.50,90.00,90.50,101435200,4.41 +1995-07-28,96.00,96.00,92.00,92.62,158468800,4.52 +1995-07-27,96.50,97.62,96.25,96.50,52916800,4.70 +1995-07-26,97.62,98.12,94.87,96.00,77470400,4.68 +1995-07-25,95.50,97.62,95.00,96.37,109422400,4.70 +1995-07-24,92.62,93.75,92.12,93.62,94811200,4.56 +1995-07-21,94.00,96.00,91.75,92.00,169257600,4.48 +1995-07-20,95.25,97.37,94.00,96.12,177848000,4.69 +1995-07-19,97.00,98.75,88.50,94.50,305092800,4.61 +1995-07-18,107.00,107.12,101.25,101.87,289624000,4.97 +1995-07-17,107.75,109.25,106.50,109.00,155830400,5.31 +1995-07-14,98.25,103.62,98.00,103.62,89905600,5.05 +1995-07-13,100.12,101.50,98.12,100.12,84811200,4.88 +1995-07-12,96.75,100.00,96.75,99.87,94675200,4.87 +1995-07-11,99.00,99.12,96.50,96.50,78227200,4.70 +1995-07-10,96.00,99.75,95.75,98.87,111982400,4.82 +1995-07-07,92.87,95.62,92.75,95.62,66699200,4.66 +1995-07-06,90.62,93.00,90.37,92.75,47070400,4.52 +1995-07-05,91.62,92.00,90.37,90.69,48547200,4.42 +1995-07-03,90.87,91.12,90.37,90.94,16763200,4.43 +1995-06-30,89.62,91.00,89.62,90.37,53342400,4.41 +1995-06-29,88.00,89.75,88.00,89.37,57643200,4.36 +1995-06-28,86.75,89.00,84.87,87.87,107286400,4.28 +1995-06-27,89.50,90.50,86.75,86.87,66004800,4.23 +1995-06-26,91.00,91.12,89.50,89.75,41048000,4.38 +1995-06-23,90.75,92.19,90.25,91.12,46356800,4.44 +1995-06-22,90.62,92.00,90.62,91.87,46296000,4.48 +1995-06-21,91.87,92.37,90.00,90.50,57224000,4.41 +1995-06-20,90.37,91.37,89.75,91.37,56670400,4.45 +1995-06-19,87.25,89.89,86.87,89.81,78982400,4.38 +1995-06-16,85.00,87.50,84.87,87.00,92278400,4.24 +1995-06-15,84.00,85.00,83.87,84.87,43912000,4.14 +1995-06-14,83.37,84.12,82.75,83.81,43096000,4.09 +1995-06-13,84.12,84.75,83.37,83.87,37691200,4.09 +1995-06-12,84.62,84.75,83.25,83.75,45832000,4.08 +1995-06-09,83.75,85.87,82.62,84.87,81214400,4.14 +1995-06-08,84.12,84.62,83.62,84.12,29320000,4.10 +1995-06-07,82.87,84.75,82.12,84.00,64590400,4.09 +1995-06-06,84.87,86.02,83.12,83.12,49036800,4.05 +1995-06-05,82.62,85.37,81.75,84.75,55852800,4.13 +1995-06-02,83.75,84.12,82.62,83.12,55556800,4.05 +1995-06-01,85.00,85.62,83.87,84.12,61153600,4.10 +1995-05-31,83.25,84.75,81.00,84.69,119756800,4.13 +1995-05-30,88.00,88.37,82.62,83.00,99612800,4.05 +1995-05-26,89.19,89.25,87.00,87.50,52934400,4.27 +1995-05-25,87.87,89.37,87.12,89.25,43440000,4.35 +1995-05-24,89.12,89.50,87.00,87.50,68684800,4.27 +1995-05-23,87.50,88.50,86.03,88.50,55516800,4.31 +1995-05-22,85.37,87.50,84.00,87.25,91382400,4.25 +1995-05-19,84.25,85.50,84.00,85.37,45190400,4.16 +1995-05-18,85.62,86.75,84.62,84.62,58326400,4.13 +1995-05-17,85.25,86.87,85.12,86.00,66515200,4.19 +1995-05-16,81.50,85.02,81.50,84.87,86708800,4.14 +1995-05-15,80.62,82.00,79.87,81.31,35232000,3.96 +1995-05-12,81.37,82.25,80.37,80.75,36192000,3.94 +1995-05-11,79.12,81.50,79.00,81.37,38673600,3.97 +1995-05-10,80.12,80.37,78.87,79.25,38688000,3.86 +1995-05-09,80.00,80.37,79.12,79.81,36748800,3.89 +1995-05-08,79.87,80.37,79.12,79.87,43988800,3.89 +1995-05-05,81.37,81.62,79.87,80.00,43707200,3.90 +1995-05-04,81.50,83.25,81.00,81.50,66524800,3.97 +1995-05-03,80.25,81.00,80.25,80.87,61566400,3.94 +1995-05-02,82.12,82.25,79.50,79.56,78099200,3.88 +1995-05-01,81.87,83.75,81.75,82.12,65550400,4.00 +1995-04-28,78.87,82.12,78.62,81.75,92104000,3.99 +1995-04-27,79.62,80.50,76.37,78.62,128844800,3.83 +1995-04-26,79.75,80.25,79.12,79.62,44305600,3.88 +1995-04-25,77.62,80.12,77.62,80.00,69371200,3.90 +1995-04-24,75.37,77.77,75.12,77.75,68089600,3.79 +1995-04-21,75.62,75.87,74.87,75.00,53555200,3.66 +1995-04-20,76.50,76.87,74.00,75.25,83913600,3.67 +1995-04-19,76.62,77.00,75.50,76.12,59163200,3.71 +1995-04-18,77.37,77.50,76.00,76.75,75609600,3.74 +1995-04-17,75.50,78.12,75.50,77.37,187913600,3.77 +1995-04-13,71.75,72.50,71.12,72.50,32814400,3.53 +1995-04-12,72.12,73.25,70.75,71.62,40430400,3.49 +1995-04-11,71.62,72.14,71.12,72.12,43624000,3.52 +1995-04-10,69.50,71.25,69.37,70.94,43169600,3.46 +1995-04-07,70.25,70.75,69.50,69.62,43148800,3.39 +1995-04-06,70.62,70.87,69.44,70.00,35414400,3.41 +1995-04-05,69.87,70.62,68.75,70.62,65792000,3.44 +1995-04-04,70.25,71.50,69.75,69.87,66689600,3.41 +1995-04-03,71.00,71.37,69.50,70.00,65617600,3.41 +1995-03-31,71.75,72.12,70.50,71.12,63080000,3.47 +1995-03-30,72.50,72.75,70.37,72.12,75011200,3.52 +1995-03-29,73.62,74.00,72.06,72.25,65763200,3.52 +1995-03-28,72.87,74.00,72.87,73.62,47603200,3.59 +1995-03-27,72.75,73.87,72.62,73.00,61008000,3.56 +1995-03-24,73.25,74.12,73.12,73.87,65683200,3.60 +1995-03-23,71.37,73.25,71.25,72.75,105286400,3.55 +1995-03-22,70.50,71.00,69.87,70.94,52464000,3.46 +1995-03-21,71.25,71.50,70.37,70.44,74772800,3.43 +1995-03-20,70.12,71.50,70.00,71.12,37772800,3.47 +1995-03-17,70.50,71.75,69.87,69.94,59868800,3.41 +1995-03-16,70.00,70.50,69.62,70.12,47510400,3.42 +1995-03-15,71.75,71.87,70.37,70.50,57294400,3.44 +1995-03-14,69.37,72.00,69.25,71.75,78643200,3.50 +1995-03-13,68.62,69.69,68.25,69.00,34550400,3.36 +1995-03-10,67.87,68.75,66.50,68.56,44324800,3.34 +1995-03-09,68.50,68.75,66.87,67.87,58238400,3.31 +1995-03-08,65.75,68.62,65.75,68.50,140096000,3.34 +1995-03-07,64.37,66.02,64.25,65.34,91750400,3.19 +1995-03-06,63.25,64.37,62.88,64.31,45156800,3.14 +1995-03-03,63.63,63.88,63.13,63.63,31776000,3.10 +1995-03-02,63.25,63.75,63.13,63.75,26038400,3.11 +1995-03-01,63.13,64.00,62.75,63.25,52032000,3.08 +1995-02-28,61.88,63.25,61.75,63.00,52544000,3.07 +1995-02-27,61.38,62.00,61.13,61.75,28592000,3.01 +1995-02-24,61.38,61.88,61.25,61.25,34177600,2.99 +1995-02-23,61.25,62.13,61.00,61.63,59939200,3.00 +1995-02-22,59.75,62.00,59.63,61.50,60902400,3.00 +1995-02-21,60.50,60.75,59.50,59.75,55392000,2.91 +1995-02-17,60.75,60.88,60.25,60.38,37824000,2.94 +1995-02-16,60.88,61.13,60.25,60.88,56744000,2.97 +1995-02-15,60.13,61.38,59.63,60.75,147001600,2.96 +1995-02-14,62.13,62.25,61.50,61.88,31121600,3.02 +1995-02-13,62.00,62.75,61.63,62.00,38160000,3.02 +1995-02-10,62.00,62.63,61.50,62.00,49862400,3.02 +1995-02-09,62.13,62.50,61.75,61.88,42398400,3.02 +1995-02-08,61.25,62.00,61.00,61.88,49150400,3.02 +1995-02-07,60.75,61.13,60.63,61.00,33152000,2.97 +1995-02-06,60.13,61.13,60.13,60.88,48345600,2.97 +1995-02-03,59.50,60.50,59.25,60.13,60332800,2.93 +1995-02-02,58.75,59.38,58.38,59.00,46312000,2.88 +1995-02-01,59.38,60.75,58.98,59.13,66705600,2.88 +1995-01-31,59.13,59.75,58.25,59.38,59945600,2.89 +1995-01-30,60.13,60.13,58.88,59.00,55164800,2.88 +1995-01-27,60.13,60.25,59.75,59.88,58376000,2.92 +1995-01-26,60.88,61.00,59.75,59.88,80836800,2.92 +1995-01-25,61.63,62.25,61.00,61.75,52459200,3.01 +1995-01-24,63.00,63.13,62.00,62.02,36739200,3.02 +1995-01-23,61.00,63.00,60.50,62.81,53843200,3.06 +1995-01-20,62.88,63.50,61.25,61.63,82388800,3.00 +1995-01-19,64.50,65.00,63.44,63.50,67108800,3.10 +1995-01-18,64.87,65.25,64.25,65.06,50504000,3.17 +1995-01-17,64.75,65.12,64.37,64.62,73932800,3.15 +1995-01-16,63.25,64.50,63.00,64.12,74648000,3.13 +1995-01-13,62.00,63.00,61.88,62.75,41307200,3.06 +1995-01-12,61.25,62.13,61.00,61.25,26996800,2.99 +1995-01-11,61.13,61.75,60.75,61.38,31512000,2.99 +1995-01-10,60.63,61.50,60.50,61.00,42184000,2.97 +1995-01-09,60.88,61.00,59.75,60.25,46000000,2.94 +1995-01-06,59.88,61.25,59.75,60.63,46681600,2.96 +1995-01-05,60.88,61.00,59.38,59.63,39824000,2.91 +1995-01-04,60.25,60.75,59.50,60.63,51611200,2.96 +1995-01-03,61.50,61.50,60.13,60.19,39545600,2.93 +1994-12-30,61.88,61.88,61.13,61.13,20686400,2.98 +1994-12-29,60.88,61.88,60.63,61.81,23446400,3.01 +1994-12-28,60.75,61.00,60.00,61.00,34961600,2.97 +1994-12-27,61.00,61.63,60.63,60.75,20566400,2.96 +1994-12-23,60.63,61.38,60.38,60.88,19486400,2.97 +1994-12-22,61.50,62.00,60.25,60.63,57355200,2.96 +1994-12-21,60.25,61.63,60.13,61.50,69395200,3.00 +1994-12-20,62.63,62.75,58.75,59.88,253456000,2.92 +1994-12-19,63.38,63.63,62.50,62.63,31507200,3.05 +1994-12-16,63.63,64.25,63.20,63.38,54020800,3.09 +1994-12-15,63.38,64.12,63.00,63.50,28854400,3.10 +1994-12-14,62.50,63.63,62.50,63.25,33641600,3.08 +1994-12-13,63.38,63.50,62.25,62.75,30219200,3.06 +1994-12-12,63.13,63.50,61.63,63.13,65313600,3.08 +1994-12-09,62.50,63.25,62.25,63.13,79956800,3.08 +1994-12-08,63.13,63.75,62.25,62.50,41934400,3.05 +1994-12-07,63.50,63.88,63.00,63.00,36744000,3.07 +1994-12-06,63.25,64.12,63.00,63.38,38830400,3.09 +1994-12-05,63.38,64.25,63.13,63.31,38166400,3.09 +1994-12-02,62.75,63.25,62.00,63.25,37715200,3.08 +1994-12-01,62.63,63.41,62.50,62.56,43096000,3.05 +1994-11-30,64.25,64.25,62.75,62.88,40934400,3.07 +1994-11-29,63.63,64.37,63.50,64.12,37673600,3.13 +1994-11-28,62.50,63.50,62.25,63.38,43449600,3.09 +1994-11-25,61.75,62.38,61.63,62.25,12563200,3.03 +1994-11-23,61.63,62.06,61.06,61.50,87507200,3.00 +1994-11-22,63.25,63.88,61.88,62.00,56358400,3.02 +1994-11-21,64.50,64.75,63.38,63.50,35560000,3.10 +1994-11-18,64.12,64.75,64.00,64.12,25694400,3.13 +1994-11-17,64.62,64.75,63.88,64.25,33232000,3.13 +1994-11-16,64.75,64.87,64.50,64.62,30196800,3.15 +1994-11-15,64.50,65.12,64.25,64.56,52544000,3.15 +1994-11-14,62.75,64.50,62.75,64.50,48934400,3.14 +1994-11-11,62.25,62.69,60.75,62.25,132899200,3.03 +1994-11-10,63.50,64.37,63.50,63.69,24689600,3.10 +1994-11-09,64.25,64.62,63.13,63.75,60206400,3.11 +1994-11-08,61.88,63.88,61.69,63.63,43328000,3.10 +1994-11-07,61.50,62.00,60.88,61.88,47094400,3.02 +1994-11-04,62.63,63.13,61.31,61.50,46947200,3.00 +1994-11-03,63.00,63.25,62.38,62.63,63441600,3.05 +1994-11-02,62.75,64.12,62.50,63.00,61408000,3.07 +1994-11-01,62.75,62.88,62.13,62.75,39624000,3.06 +1994-10-31,62.25,63.75,62.00,63.00,59932800,3.07 +1994-10-28,61.63,62.38,61.38,62.13,58414400,3.03 +1994-10-27,61.13,61.63,60.75,61.63,41238400,3.00 +1994-10-26,59.88,61.13,59.75,61.00,97904000,2.97 +1994-10-25,58.75,59.75,58.38,59.69,44780800,2.91 +1994-10-24,59.50,59.50,58.38,58.88,57145600,2.87 +1994-10-21,59.25,59.63,58.38,59.38,67099200,2.89 +1994-10-20,58.25,59.88,57.88,59.63,136558400,2.91 +1994-10-19,56.63,58.00,56.25,57.63,59488000,2.81 +1994-10-18,55.25,56.75,55.06,56.63,52686400,2.76 +1994-10-17,56.00,56.25,55.00,55.13,31160000,2.69 +1994-10-14,57.25,57.38,55.19,55.94,99878400,2.73 +1994-10-13,56.63,57.75,56.63,57.25,63033600,2.79 +1994-10-12,55.88,56.50,55.75,56.25,27912000,2.74 +1994-10-11,55.13,56.63,55.13,55.81,55692800,2.72 +1994-10-10,54.38,55.38,54.38,54.75,39480000,2.67 +1994-10-07,54.63,54.88,53.88,54.38,51518400,2.65 +1994-10-06,55.50,55.88,54.25,54.50,40790400,2.66 +1994-10-05,54.88,55.88,54.13,55.50,50985600,2.71 +1994-10-04,56.00,56.13,54.88,55.00,42622400,2.68 +1994-10-03,56.13,56.38,55.50,55.88,28833600,2.72 +1994-09-30,56.50,57.50,56.13,56.13,34608000,2.74 +1994-09-29,56.88,57.25,56.38,56.50,27105600,2.75 +1994-09-28,56.63,57.50,56.50,57.00,33355200,2.78 +1994-09-27,55.50,56.50,54.88,56.50,50585600,2.75 +1994-09-26,56.00,56.00,55.25,55.56,29921600,2.71 +1994-09-23,56.88,57.50,56.00,56.00,48371200,2.73 +1994-09-22,57.25,57.50,56.63,57.00,44320000,2.78 +1994-09-21,56.31,57.38,55.00,57.25,82948800,2.79 +1994-09-20,56.88,57.13,55.94,56.00,40276800,2.73 +1994-09-19,57.13,57.25,56.63,56.88,48350400,2.77 +1994-09-16,58.00,58.13,56.75,56.88,52921600,2.77 +1994-09-15,57.63,58.25,57.38,58.25,40640000,2.84 +1994-09-14,57.75,58.13,57.50,57.63,29968000,2.81 +1994-09-13,56.38,57.88,56.38,57.56,41134400,2.81 +1994-09-12,57.13,57.13,55.88,56.13,36238400,2.74 +1994-09-09,56.13,57.88,55.88,56.88,60800000,2.77 +1994-09-08,57.00,58.00,57.00,57.94,28377600,2.82 +1994-09-07,56.25,57.81,56.13,56.88,43588800,2.77 +1994-09-06,55.88,56.25,55.69,56.00,28804800,2.73 +1994-09-02,56.50,56.50,55.75,56.00,46964800,2.73 +1994-09-01,57.00,57.00,55.75,56.13,115568000,2.74 +1994-08-31,58.38,59.25,57.75,58.13,60968000,2.83 +1994-08-30,57.00,58.50,56.63,58.38,39851200,2.85 +1994-08-29,57.38,58.13,57.00,57.06,56625600,2.78 +1994-08-26,56.38,57.75,56.25,56.88,60961600,2.77 +1994-08-25,55.88,56.75,55.75,56.19,55174400,2.74 +1994-08-24,55.50,56.00,55.50,55.75,35246400,2.72 +1994-08-23,54.63,56.38,54.50,55.50,58363200,2.71 +1994-08-22,55.00,55.00,54.50,54.63,62835200,2.66 +1994-08-19,55.88,56.00,54.75,54.88,74761600,2.68 +1994-08-18,55.88,56.38,55.38,55.50,61276800,2.71 +1994-08-17,55.38,56.25,55.13,55.88,79790400,2.72 +1994-08-16,54.88,55.13,54.00,54.88,56779200,2.68 +1994-08-15,55.50,55.50,54.38,54.44,36113600,2.65 +1994-08-12,55.38,55.63,54.88,55.25,38088000,2.69 +1994-08-11,53.88,56.00,53.88,55.25,81428800,2.69 +1994-08-10,53.50,54.38,53.25,54.13,48646400,2.64 +1994-08-09,53.00,53.88,52.75,53.50,40198400,2.61 +1994-08-08,52.38,53.00,52.00,53.00,34537600,2.58 +1994-08-05,52.63,52.88,52.25,52.50,31204800,2.56 +1994-08-04,53.50,53.63,52.75,52.75,40192000,2.57 +1994-08-03,53.75,54.00,53.13,53.38,58771200,2.60 +1994-08-02,53.75,54.63,52.63,52.81,95249600,2.57 +1994-08-01,51.63,53.63,51.50,53.38,83934400,2.60 +1994-07-29,49.88,51.63,49.63,51.50,67064000,2.51 +1994-07-28,49.50,50.25,49.25,49.50,39899200,2.41 +1994-07-27,50.38,50.38,49.50,49.50,29291200,2.41 +1994-07-26,51.13,51.25,49.75,50.38,54308800,2.46 +1994-07-25,50.63,51.63,50.25,51.19,51513600,2.50 +1994-07-22,48.50,50.75,47.25,50.56,152916800,2.46 +1994-07-21,48.63,48.88,47.50,47.75,85740800,2.33 +1994-07-20,50.00,50.00,47.88,48.38,112604800,2.36 +1994-07-19,50.63,50.63,49.63,50.13,70126400,2.44 +1994-07-18,51.50,51.75,49.50,50.50,150499200,2.46 +1994-07-15,48.75,49.38,48.00,48.63,45520000,2.37 +1994-07-14,49.38,49.63,48.38,48.75,81446400,2.38 +1994-07-13,48.25,49.50,47.88,49.50,82956800,2.41 +1994-07-12,48.25,48.25,46.88,48.00,83752000,2.34 +1994-07-11,49.63,49.63,47.75,48.38,85406400,2.36 +1994-07-08,49.88,50.88,49.13,49.50,48945600,2.41 +1994-07-07,48.50,50.50,47.94,50.38,89667200,2.46 +1994-07-06,48.56,49.00,47.75,48.31,89254400,2.36 +1994-07-05,50.38,51.00,49.00,49.13,40430400,2.40 +1994-07-01,51.63,51.75,49.86,50.25,66622400,2.45 +1994-06-30,51.75,52.13,51.00,51.63,40827200,2.52 +1994-06-29,51.38,51.88,50.88,51.38,53435200,2.50 +1994-06-28,52.00,52.75,50.19,51.31,99417600,2.50 +1994-06-27,49.75,52.13,49.38,51.88,76161600,2.53 +1994-06-24,50.00,50.38,49.25,49.50,81454400,2.41 +1994-06-23,51.50,52.25,50.00,50.13,85979200,2.44 +1994-06-22,52.75,53.00,51.25,51.50,82924800,2.51 +1994-06-21,52.13,53.38,52.00,52.63,86995200,2.57 +1994-06-20,52.50,53.50,52.38,53.50,45668800,2.61 +1994-06-17,53.50,53.63,52.88,53.00,47622400,2.58 +1994-06-16,54.25,54.25,53.50,53.56,48478400,2.61 +1994-06-15,53.63,54.63,53.25,54.25,58860800,2.64 +1994-06-14,53.13,54.13,53.00,53.56,59249600,2.61 +1994-06-13,52.63,53.38,51.88,52.88,56628800,2.58 +1994-06-10,52.25,53.00,51.88,52.56,53726400,2.56 +1994-06-09,51.88,52.56,51.75,52.25,79356800,2.55 +1994-06-08,53.63,53.63,51.63,52.00,203835200,2.53 +1994-06-07,54.00,54.25,53.50,53.63,166171200,2.61 +1994-06-06,52.63,54.63,51.75,54.50,764504000,2.66 +1994-06-03,52.50,53.50,52.25,52.88,86841600,2.58 +1994-06-02,53.25,53.38,52.00,52.25,60291200,2.55 +1994-06-01,53.50,53.50,52.38,53.00,100764800,2.58 +1994-05-31,52.25,53.77,51.88,53.75,76000000,2.62 +1994-05-27,51.75,52.75,51.25,52.38,47544000,2.55 +1994-05-26,52.75,52.75,51.25,52.00,64296000,2.53 +1994-05-25,51.00,52.75,50.25,52.50,86003200,2.56 +1994-05-24,51.25,51.88,50.25,51.13,85144000,2.49 +1994-05-23,49.00,51.00,48.50,50.56,74947200,2.46 +1994-05-20,98.00,99.25,97.25,97.75,78140800,2.38 +1994-05-19,97.25,99.00,97.00,98.37,89651200,2.40 +1994-05-18,95.25,97.50,94.75,97.06,96953600,2.37 +1994-05-17,95.00,95.25,93.50,94.62,122464000,2.31 +1994-05-16,96.25,96.75,94.75,95.00,56633600,2.32 +1994-05-13,97.50,97.50,94.50,96.50,179920000,2.35 +1994-05-12,93.50,95.30,93.25,94.50,58998400,2.30 +1994-05-11,94.00,94.25,92.75,93.50,57433600,2.28 +1994-05-10,93.00,94.50,92.75,94.00,65305600,2.29 +1994-05-09,91.75,93.62,91.62,92.25,47600000,2.25 +1994-05-06,93.25,94.25,90.87,92.50,96403200,2.25 +1994-05-05,95.25,96.25,94.00,94.37,56374400,2.30 +1994-05-04,93.75,95.25,92.75,95.12,68889600,2.32 +1994-05-03,95.25,95.50,93.25,93.50,41929600,2.28 +1994-05-02,92.75,95.56,92.00,95.50,79260800,2.33 +1994-04-29,92.00,93.50,91.25,92.50,56803200,2.25 +1994-04-28,95.25,95.25,91.75,92.12,141382400,2.25 +1994-04-26,94.50,95.25,94.00,94.94,113193600,2.31 +1994-04-25,92.00,94.25,91.50,93.75,142745600,2.29 +1994-04-22,92.00,92.75,90.75,91.75,66060800,2.24 +1994-04-21,89.50,91.75,89.25,91.50,141980800,2.23 +1994-04-20,88.50,89.62,87.00,89.50,104732800,2.18 +1994-04-19,87.00,89.50,85.75,88.12,291273600,2.15 +1994-04-18,84.75,85.75,82.25,83.00,78006400,2.02 +1994-04-15,83.50,85.25,83.50,84.87,35241600,2.07 +1994-04-14,84.50,85.25,83.75,84.12,53088000,2.05 +1994-04-13,84.75,85.50,83.00,84.87,69644800,2.07 +1994-04-12,86.75,86.75,84.00,84.75,84969600,2.07 +1994-04-11,87.00,87.25,86.00,87.00,40400000,2.12 +1994-04-08,89.75,90.00,86.75,87.00,118710400,2.12 +1994-04-07,89.25,90.12,88.75,89.75,76630400,2.19 +1994-04-06,87.50,89.25,87.25,89.00,80780800,2.17 +1994-04-05,85.25,87.75,85.00,87.75,101878400,2.14 +1994-04-04,82.50,85.75,82.00,84.50,73996800,2.06 +1994-03-31,83.50,85.75,82.50,84.75,72297600,2.07 +1994-03-30,82.75,85.00,82.50,83.62,86860800,2.04 +1994-03-29,86.50,86.50,82.50,82.50,78339200,2.01 +1994-03-28,87.50,88.00,83.75,86.37,118403200,2.11 +1994-03-25,87.00,89.25,87.00,87.50,102051200,2.13 +1994-03-24,85.75,87.25,85.00,87.25,60166400,2.13 +1994-03-23,85.25,87.50,85.00,86.25,116441600,2.10 +1994-03-22,82.25,85.75,82.25,84.75,89024000,2.07 +1994-03-21,85.00,85.37,83.00,83.25,65078400,2.03 +1994-03-18,84.50,85.00,83.50,84.75,36857600,2.07 +1994-03-17,84.75,85.25,84.50,84.50,30992000,2.06 +1994-03-16,85.00,85.25,84.50,84.75,41286400,2.07 +1994-03-15,84.00,85.25,83.50,84.87,62934400,2.07 +1994-03-14,82.50,84.25,82.25,83.87,69203200,2.04 +1994-03-11,81.00,82.25,80.75,81.75,34857600,1.99 +1994-03-10,81.50,82.25,80.50,80.87,46588800,1.97 +1994-03-09,81.25,81.75,80.00,80.87,37024000,1.97 +1994-03-08,81.25,81.25,79.75,81.00,24723200,1.97 +1994-03-07,81.25,82.25,80.75,81.25,30540800,1.98 +1994-03-04,81.00,81.50,80.50,81.00,25705600,1.97 +1994-03-03,83.00,83.25,80.50,81.00,31564800,1.97 +1994-03-02,81.75,83.00,81.00,82.75,68499200,2.02 +1994-03-01,83.00,83.25,82.25,83.25,48070400,2.03 +1994-02-28,81.25,83.00,81.00,82.50,55494400,2.01 +1994-02-25,80.25,81.25,79.75,81.00,52995200,1.97 +1994-02-24,80.00,80.75,79.25,79.87,82553600,1.95 +1994-02-23,79.75,82.00,78.25,81.00,139462400,1.97 +1994-02-22,80.00,80.25,78.50,79.50,63235200,1.94 +1994-02-18,78.50,80.75,78.50,80.00,79465600,1.95 +1994-02-17,79.00,79.50,78.00,78.62,85017600,1.92 +1994-02-16,80.25,80.25,78.75,78.75,43731200,1.92 +1994-02-15,79.75,80.25,79.25,79.75,28876800,1.94 +1994-02-14,79.00,79.50,78.75,79.12,55270400,1.93 +1994-02-11,79.25,79.50,78.00,78.75,53747200,1.92 +1994-02-10,79.75,80.75,79.00,79.37,66620800,1.93 +1994-02-09,78.50,80.25,78.00,79.62,98585600,1.94 +1994-02-08,80.50,80.50,78.00,78.75,149875200,1.92 +1994-02-07,79.75,81.25,79.50,80.75,118851200,1.97 +1994-02-04,84.00,84.50,81.25,81.25,78217600,1.98 +1994-02-03,84.25,84.50,83.50,84.50,31792000,2.06 +1994-02-02,84.75,85.50,84.00,84.00,40924800,2.05 +1994-02-01,85.00,85.75,84.50,85.12,44003200,2.07 +1994-01-31,85.25,85.87,84.75,85.12,62566400,2.07 +1994-01-28,84.50,85.50,84.25,84.87,41875200,2.07 +1994-01-27,84.00,84.75,83.25,84.25,51129600,2.05 +1994-01-26,85.00,85.00,84.00,84.25,50489600,2.05 +1994-01-25,85.25,85.37,84.00,85.12,70361600,2.07 +1994-01-24,86.00,87.00,85.00,85.25,38374400,2.08 +1994-01-21,86.25,87.00,85.00,86.25,99078400,2.10 +1994-01-20,83.25,86.37,83.25,86.25,145004800,2.10 +1994-01-19,83.75,84.25,82.50,83.25,76563200,2.03 +1994-01-18,85.25,85.50,84.00,84.62,43686400,2.06 +1994-01-17,85.25,86.00,84.50,84.75,30755200,2.07 +1994-01-14,85.50,86.00,84.75,85.62,45216000,2.09 +1994-01-13,84.75,85.50,84.00,85.37,40755200,2.08 +1994-01-12,85.00,85.75,83.75,85.50,39488000,2.08 +1994-01-11,85.00,86.00,84.37,85.25,35360000,2.08 +1994-01-10,85.00,86.50,85.00,85.75,74185600,2.09 +1994-01-07,84.25,85.75,83.25,85.25,70832000,2.08 +1994-01-06,82.62,84.75,82.50,84.62,82006400,2.06 +1994-01-05,80.25,82.50,80.00,82.25,53974400,2.00 +1994-01-04,80.25,80.75,79.25,80.50,45302400,1.96 +1994-01-03,80.50,80.75,79.25,80.12,36646400,1.95 +1993-12-31,81.00,81.50,80.25,80.62,22995200,1.97 +1993-12-30,81.75,82.25,80.75,81.25,25328000,1.98 +1993-12-29,82.75,83.50,80.50,81.50,48988800,1.99 +1993-12-28,80.50,83.00,80.50,82.75,27776000,2.02 +1993-12-27,80.75,81.25,79.75,80.50,24537600,1.96 +1993-12-23,81.00,82.25,80.75,80.87,31820800,1.97 +1993-12-22,82.25,82.50,81.00,81.12,24169600,1.98 +1993-12-21,82.00,82.50,81.50,82.50,31008000,2.01 +1993-12-20,81.00,82.00,80.50,82.00,35462400,2.00 +1993-12-17,80.50,80.50,79.75,80.50,26112000,1.96 +1993-12-16,80.00,81.00,79.75,80.00,29113600,1.95 +1993-12-15,80.00,81.00,79.75,79.75,35219200,1.94 +1993-12-14,81.00,81.50,79.25,80.00,47414400,1.95 +1993-12-13,81.50,82.00,80.75,81.37,20112000,1.98 +1993-12-10,81.25,82.25,80.75,81.87,19916800,2.00 +1993-12-09,83.50,83.50,80.50,81.12,61465600,1.98 +1993-12-08,83.00,83.75,82.25,83.50,105900800,2.04 +1993-12-07,85.00,86.00,85.00,85.50,32780800,2.08 +1993-12-06,85.00,85.50,84.00,84.87,59337600,2.07 +1993-12-03,83.75,86.50,83.50,85.75,114502400,2.09 +1993-12-02,82.00,83.00,81.75,82.87,51936000,2.02 +1993-12-01,80.50,82.25,80.50,81.50,58886400,1.99 +1993-11-30,78.50,80.50,78.25,80.00,44153600,1.95 +1993-11-29,79.00,80.00,79.00,79.50,32105600,1.94 +1993-11-26,79.00,79.25,78.75,79.00,6403200,1.93 +1993-11-24,77.50,79.75,77.50,78.75,32467200,1.92 +1993-11-23,77.75,78.50,77.25,77.37,98256000,1.89 +1993-11-22,79.75,79.75,76.50,77.00,80355200,1.88 +1993-11-19,79.75,80.25,79.50,80.12,38403200,1.95 +1993-11-18,80.75,81.50,80.00,80.25,48438400,1.96 +1993-11-17,82.75,83.00,80.75,80.75,72217600,1.97 +1993-11-16,81.00,82.75,80.50,82.25,47664000,2.00 +1993-11-15,82.00,82.00,80.50,80.50,29244800,1.96 +1993-11-12,81.75,82.50,81.75,81.87,34339200,2.00 +1993-11-11,81.25,82.50,81.00,81.62,31158400,1.99 +1993-11-10,80.00,81.62,79.00,81.37,57177600,1.98 +1993-11-09,79.00,80.00,78.00,78.25,36320000,1.91 +1993-11-08,79.00,79.50,77.75,78.50,28819200,1.91 +1993-11-05,76.25,79.00,76.00,78.75,56432000,1.92 +1993-11-04,78.75,79.00,76.50,76.50,63177600,1.86 +1993-11-03,80.00,80.50,77.75,78.50,56796800,1.91 +1993-11-02,81.25,81.50,79.50,80.25,42422400,1.96 +1993-11-01,80.25,81.50,79.75,80.87,30163200,1.97 +1993-10-29,79.50,80.25,79.25,80.12,39843200,1.95 +1993-10-28,79.75,80.50,78.75,79.00,56009600,1.93 +1993-10-27,79.50,80.50,79.50,79.87,45564800,1.95 +1993-10-26,80.50,80.75,79.25,79.50,66944000,1.94 +1993-10-25,80.50,81.25,79.00,80.50,48553600,1.96 +1993-10-22,79.25,80.75,79.25,80.37,47625600,1.96 +1993-10-21,78.75,80.00,78.00,79.50,127142400,1.94 +1993-10-20,80.50,81.75,79.25,81.00,81590400,1.97 +1993-10-19,82.00,84.00,79.50,80.25,91392000,1.96 +1993-10-18,81.00,83.25,80.75,83.00,67750400,2.02 +1993-10-15,82.25,83.00,80.25,80.75,126425600,1.97 +1993-10-14,83.75,84.00,82.00,82.12,63257600,2.00 +1993-10-13,83.75,84.25,81.25,83.25,62409600,2.03 +1993-10-12,84.25,85.25,82.25,84.25,79296000,2.05 +1993-10-11,84.50,84.75,82.25,84.00,36457600,2.05 +1993-10-08,84.25,84.75,82.25,84.50,38086400,2.06 +1993-10-07,85.00,85.75,83.75,84.12,41596800,2.05 +1993-10-06,83.25,85.50,83.00,84.87,77321600,2.07 +1993-10-05,82.75,84.75,82.50,83.25,86931200,2.03 +1993-10-04,82.50,84.00,82.50,82.62,40505600,2.01 +1993-10-01,82.50,83.25,82.00,82.00,46048000,2.00 +1993-09-30,82.75,83.25,82.25,82.50,38400000,2.01 +1993-09-29,83.75,84.00,80.75,83.00,87529600,2.02 +1993-09-28,82.25,84.25,82.25,84.00,84012800,2.05 +1993-09-27,81.75,82.50,81.25,82.25,73472000,2.00 +1993-09-24,78.50,80.75,78.50,80.00,91481600,1.95 +1993-09-23,77.25,79.25,76.75,78.75,72214400,1.92 +1993-09-22,76.00,78.00,75.25,77.25,72051200,1.88 +1993-09-21,75.50,77.37,74.75,76.00,57846400,1.85 +1993-09-20,76.25,77.75,75.00,75.62,34691200,1.84 +1993-09-17,75.50,76.50,75.25,76.00,25286400,1.85 +1993-09-16,76.75,77.25,75.75,76.00,25641600,1.85 +1993-09-15,75.75,76.75,74.37,76.50,60428800,1.86 +1993-09-14,76.00,76.25,74.25,75.25,57756800,1.83 +1993-09-13,78.50,78.50,76.25,76.37,33481600,1.86 +1993-09-10,77.00,78.25,76.25,78.00,56540800,1.90 +1993-09-09,75.00,76.50,74.50,76.25,29856000,1.86 +1993-09-08,74.00,74.75,73.25,74.50,54777600,1.82 +1993-09-07,75.75,76.25,74.25,74.75,38659200,1.82 +1993-09-03,76.50,76.75,75.25,75.75,26800000,1.85 +1993-09-02,77.25,78.50,76.12,76.62,55497600,1.87 +1993-09-01,75.25,77.25,75.00,76.75,86035200,1.87 +1993-08-31,73.75,75.50,73.50,75.12,93020800,1.83 +1993-08-30,72.50,73.25,71.75,72.62,54012800,1.77 +1993-08-27,72.25,72.50,71.25,71.87,67763200,1.75 +1993-08-26,73.50,73.75,71.50,72.12,136256000,1.76 +1993-08-25,75.00,76.00,72.87,74.25,68800000,1.81 +1993-08-24,76.50,77.00,75.75,75.87,39417600,1.85 +1993-08-23,75.50,78.25,75.50,77.00,59472000,1.88 +1993-08-20,73.50,76.75,73.25,76.25,73683200,1.86 +1993-08-19,77.25,77.87,73.75,74.25,114742400,1.81 +1993-08-18,77.75,79.25,76.50,77.25,66012800,1.88 +1993-08-17,78.00,78.50,76.00,77.25,54272000,1.88 +1993-08-16,75.75,78.25,75.50,77.75,78451200,1.90 +1993-08-13,74.00,75.75,73.00,75.25,61900800,1.83 +1993-08-12,72.50,74.50,72.25,74.00,77366400,1.80 +1993-08-11,71.25,73.00,71.12,72.37,95974400,1.76 +1993-08-10,73.00,73.25,70.37,71.00,192028800,1.73 +1993-08-09,73.25,74.00,72.25,73.00,70876800,1.78 +1993-08-06,74.75,75.87,72.75,73.25,71760000,1.79 +1993-08-05,73.50,75.00,73.25,74.75,67910400,1.82 +1993-08-04,73.25,73.75,71.75,73.00,94416000,1.78 +1993-08-03,73.00,73.25,72.00,73.00,85136000,1.78 +1993-08-02,74.75,75.75,72.25,72.75,148208000,1.77 +1993-07-30,73.00,74.25,72.00,74.00,287936000,1.80 +1993-07-29,78.00,80.75,77.50,79.00,96534400,1.93 +1993-07-28,76.00,79.50,74.75,78.25,113459200,1.91 +1993-07-27,78.50,78.75,75.50,75.50,112220800,1.84 +1993-07-26,78.25,79.25,77.75,78.25,65801600,1.91 +1993-07-23,77.00,78.25,76.75,77.62,92790400,1.89 +1993-07-22,80.75,81.75,76.75,77.62,147584000,1.89 +1993-07-21,78.50,79.00,76.75,79.00,178963200,1.93 +1993-07-20,79.25,80.50,78.00,80.50,74822400,1.96 +1993-07-19,79.50,80.25,78.00,78.75,122435200,1.92 +1993-07-16,83.25,83.25,80.75,81.12,86217600,1.98 +1993-07-15,84.25,84.25,82.75,83.50,34432000,2.04 +1993-07-14,83.00,85.50,82.50,84.25,43491200,2.05 +1993-07-13,84.00,84.00,82.50,82.75,36476800,2.02 +1993-07-12,84.75,84.75,83.50,83.75,26540800,2.04 +1993-07-09,85.00,85.00,83.50,84.62,50000000,2.06 +1993-07-08,84.00,85.50,84.00,84.87,70105600,2.07 +1993-07-07,82.12,84.25,81.25,83.37,182569600,2.03 +1993-07-06,86.75,87.75,85.25,86.00,47721600,2.10 +1993-07-02,87.25,87.50,86.50,87.25,25404800,2.13 +1993-07-01,88.25,88.50,86.50,87.12,57907200,2.12 +1993-06-30,89.25,90.25,87.25,88.00,56422400,2.14 +1993-06-29,90.25,91.75,88.50,89.00,42361600,2.17 +1993-06-28,88.75,90.25,88.50,90.25,52224000,2.20 +1993-06-25,88.50,89.25,86.75,88.50,45484800,2.16 +1993-06-24,88.25,89.50,87.25,88.50,35782400,2.16 +1993-06-23,88.00,89.25,87.75,88.62,33129600,2.16 +1993-06-22,89.25,89.75,87.25,88.00,41062400,2.14 +1993-06-21,88.75,89.25,87.00,88.62,68102400,2.16 +1993-06-18,90.50,91.25,87.00,87.50,75910400,2.13 +1993-06-17,91.50,91.75,90.50,90.87,28083200,2.21 +1993-06-16,92.75,93.25,89.25,91.25,66966400,2.22 +1993-06-15,93.00,93.00,91.50,92.50,42345600,2.25 +1993-06-14,91.00,92.25,90.25,92.25,40489600,2.25 +1993-06-11,91.75,92.50,89.00,89.37,67542400,2.18 +1993-06-10,91.25,92.50,89.50,91.12,56544000,2.22 +1993-06-09,92.75,93.00,90.75,91.00,62480000,2.22 +1993-06-08,93.00,93.25,90.75,92.25,48131200,2.25 +1993-06-07,94.25,95.75,93.00,93.25,52761600,2.27 +1993-06-04,94.00,94.50,93.50,94.00,32652800,2.29 +1993-06-03,95.75,96.00,94.50,94.62,23936000,2.31 +1993-06-02,95.75,97.50,95.25,95.75,70710400,2.33 +1993-06-01,93.00,98.00,92.75,96.25,173088000,2.35 +1993-05-28,93.50,93.75,91.75,92.62,35136000,2.26 +1993-05-27,95.00,95.50,93.00,94.12,95052800,2.29 +1993-05-26,91.50,95.25,91.25,95.25,87484800,2.32 +1993-05-25,91.75,92.00,90.00,91.25,36716800,2.22 +1993-05-24,92.25,94.00,92.00,92.12,64252800,2.25 +1993-05-21,93.50,94.25,92.00,92.50,75500800,2.25 +1993-05-20,92.25,95.25,92.00,94.12,150256000,2.29 +1993-05-19,90.75,93.00,89.50,92.50,181017600,2.25 +1993-05-18,86.75,88.75,86.50,88.50,84185600,2.16 +1993-05-17,85.75,86.62,85.25,86.50,27763200,2.11 +1993-05-14,86.00,86.75,84.75,85.50,49116800,2.08 +1993-05-13,85.75,86.00,84.50,85.75,43708800,2.09 +1993-05-12,87.50,88.00,85.75,86.25,48272000,2.10 +1993-05-11,88.25,88.75,87.25,87.75,38220800,2.14 +1993-05-10,88.50,90.00,88.00,89.12,69091200,2.17 +1993-05-07,87.25,87.75,86.50,87.00,31798400,2.12 +1993-05-06,89.00,89.75,86.75,87.25,47244800,2.13 +1993-05-05,88.00,90.00,87.50,89.25,51868800,2.18 +1993-05-04,86.75,88.50,86.50,88.00,49664000,2.14 +1993-05-03,85.50,87.00,85.00,86.12,38096000,2.10 +1993-04-30,85.00,86.75,85.00,85.50,46825600,2.08 +1993-04-29,85.75,85.75,84.00,85.50,49660800,2.08 +1993-04-28,83.00,86.00,82.75,86.00,55372800,2.10 +1993-04-27,80.50,82.75,80.25,82.50,58208000,2.01 +1993-04-26,81.50,82.50,79.75,80.37,65376000,1.96 +1993-04-23,83.00,83.25,80.75,81.37,89296000,1.98 +1993-04-22,84.50,85.00,82.87,83.25,79872000,2.03 +1993-04-21,86.75,86.75,84.25,84.87,92528000,2.07 +1993-04-20,86.75,87.50,85.00,86.75,46009600,2.11 +1993-04-19,87.00,87.25,85.00,87.00,45673600,2.12 +1993-04-16,87.25,87.75,85.50,87.00,49600000,2.12 +1993-04-15,88.00,89.87,86.00,87.12,109152000,2.12 +1993-04-14,89.00,90.25,87.75,89.00,38592000,2.17 +1993-04-13,90.25,92.25,88.75,88.87,53337600,2.17 +1993-04-12,88.75,91.25,88.50,90.12,48976000,2.20 +1993-04-08,90.00,90.25,88.25,89.00,40185600,2.17 +1993-04-07,90.00,90.50,89.25,90.25,39417600,2.20 +1993-04-06,91.75,93.00,89.25,89.75,55699200,2.19 +1993-04-05,88.75,92.25,88.00,91.50,61187200,2.23 +1993-04-02,91.75,92.00,89.75,89.75,73251200,2.19 +1993-04-01,92.50,94.75,92.50,93.00,100412800,2.27 +1993-03-31,91.25,94.25,90.75,92.50,179660800,2.25 +1993-03-30,88.50,91.25,87.25,91.00,140777600,2.22 +1993-03-29,86.75,88.50,86.75,87.00,48262400,2.12 +1993-03-26,88.00,88.25,86.00,86.62,28380800,2.11 +1993-03-25,86.50,88.25,86.37,87.37,43833600,2.13 +1993-03-24,83.25,86.75,83.00,86.25,50576000,2.10 +1993-03-23,83.50,85.00,83.00,83.12,34409600,2.03 +1993-03-22,83.25,84.00,82.50,83.37,34083200,2.03 +1993-03-19,85.75,85.75,84.00,84.25,45404800,2.05 +1993-03-18,85.75,86.75,85.00,85.25,34406400,2.08 +1993-03-17,86.75,87.50,85.25,85.37,39644800,2.08 +1993-03-16,88.25,88.75,87.00,87.75,36336000,2.14 +1993-03-15,89.25,89.25,87.00,87.62,35347200,2.14 +1993-03-12,86.00,89.25,85.25,89.00,73580800,2.17 +1993-03-11,85.25,87.75,85.00,86.50,57779200,2.11 +1993-03-10,84.50,85.75,83.50,85.00,26592000,2.07 +1993-03-09,84.00,85.00,83.75,84.25,41312000,2.05 +1993-03-08,82.62,84.50,82.00,83.62,48022400,2.04 +1993-03-05,83.50,85.00,82.50,82.75,35724800,2.02 +1993-03-04,84.75,84.75,81.75,83.75,56659200,2.04 +1993-03-03,84.75,85.50,83.50,84.75,42352000,2.07 +1993-03-02,81.75,84.75,81.25,84.62,38380800,2.06 +1993-03-01,83.75,83.75,81.25,81.50,26432000,1.99 +1993-02-26,84.25,85.00,83.00,83.37,29833600,2.03 +1993-02-25,82.50,85.00,82.50,84.37,60806400,2.06 +1993-02-24,79.00,84.00,78.75,83.87,77548800,2.04 +1993-02-23,78.00,80.50,76.75,79.50,105974400,1.94 +1993-02-22,79.75,81.00,76.75,76.75,76256000,1.87 +1993-02-19,81.87,82.00,79.50,79.75,97094400,1.94 +1993-02-18,81.25,82.75,79.00,81.62,138553600,1.99 +1993-02-17,81.00,81.25,77.25,80.25,121913600,1.96 +1993-02-16,82.87,83.75,79.75,80.12,91180800,1.95 +1993-02-12,85.25,85.25,83.25,83.62,34752000,2.04 +1993-02-11,86.25,86.50,84.75,85.25,31635200,2.08 +1993-02-10,84.50,86.25,84.00,85.50,39193600,2.08 +1993-02-09,86.75,87.25,83.50,83.87,64550400,2.04 +1993-02-08,88.50,89.00,85.00,85.75,92665600,2.09 +1993-02-05,84.75,89.50,82.25,89.00,177216000,2.17 +1993-02-04,87.75,87.75,84.50,85.00,124214400,2.07 +1993-02-03,89.50,90.25,88.00,88.37,71728000,2.15 +1993-02-02,87.37,89.50,87.25,89.00,70371200,2.17 +1993-02-01,86.25,88.00,85.50,87.50,42854400,2.13 +1993-01-29,87.50,88.00,85.75,86.50,39424000,2.11 +1993-01-28,86.25,87.12,84.75,87.00,77030400,2.12 +1993-01-27,87.50,87.75,85.50,86.25,64192000,2.10 +1993-01-26,88.50,90.00,87.50,88.00,42345600,2.14 +1993-01-25,89.25,90.25,87.75,88.50,49609600,2.16 +1993-01-22,89.75,90.25,88.75,89.37,49088000,2.18 +1993-01-21,87.75,90.00,86.75,89.50,73363200,2.18 +1993-01-20,88.50,89.00,87.75,88.37,47968000,2.15 +1993-01-19,89.00,89.25,88.25,88.37,52960000,2.15 +1993-01-18,89.50,89.75,88.25,89.25,50611200,2.18 +1993-01-15,87.50,91.00,87.00,89.75,181958400,2.19 +1993-01-14,92.25,94.00,90.50,91.25,121264000,2.22 +1993-01-13,89.50,92.25,88.25,91.25,83696000,2.22 +1993-01-12,89.00,91.25,88.75,89.75,85129600,2.19 +1993-01-11,87.25,89.25,86.25,89.12,58348800,2.17 +1993-01-08,87.25,88.25,86.25,87.12,43977600,2.12 +1993-01-07,89.00,89.87,87.00,87.25,58748800,2.13 +1993-01-06,87.00,89.25,86.75,89.00,87440000,2.17 +1993-01-05,85.00,86.75,84.75,86.50,71529600,2.11 +1993-01-04,85.00,85.75,84.50,85.12,72646400,2.07 +1992-12-31,86.00,86.25,85.25,85.37,30851200,2.08 +1992-12-30,86.75,87.00,85.25,85.87,50860800,2.09 +1992-12-29,87.25,87.50,86.25,86.50,60035200,2.11 +1992-12-28,87.25,87.75,86.00,87.50,45731200,2.13 +1992-12-24,87.25,87.25,86.00,87.25,32723200,2.13 +1992-12-23,88.00,88.25,86.00,87.25,59974400,2.13 +1992-12-22,91.00,91.50,87.00,87.75,56928000,2.14 +1992-12-21,89.75,92.00,89.25,90.50,64928000,2.21 +1992-12-18,89.00,90.25,88.50,90.00,74387200,2.19 +1992-12-17,87.25,90.25,87.00,90.00,51859200,2.19 +1992-12-16,86.50,88.25,85.25,87.00,73792000,2.12 +1992-12-15,87.25,87.75,85.50,86.37,45289600,2.11 +1992-12-14,86.75,88.25,86.50,87.12,51286400,2.12 +1992-12-11,88.50,89.00,85.75,86.37,112934400,2.11 +1992-12-10,90.00,91.75,88.50,89.00,89296000,2.17 +1992-12-09,91.75,93.25,91.25,92.00,26048000,2.24 +1992-12-08,93.75,94.00,91.50,92.50,26908800,2.25 +1992-12-07,92.00,93.50,91.00,93.37,46422400,2.28 +1992-12-04,91.50,92.50,91.25,91.75,23548800,2.24 +1992-12-03,90.75,92.50,90.50,91.62,26048000,2.23 +1992-12-02,93.00,93.50,90.50,90.75,49881600,2.21 +1992-12-01,92.75,93.50,92.00,93.12,33593600,2.27 +1992-11-30,92.50,93.25,91.75,93.12,35251200,2.27 +1992-11-27,91.50,92.50,91.00,91.75,17593600,2.24 +1992-11-25,92.00,92.50,90.25,91.12,53152000,2.22 +1992-11-24,91.25,92.75,89.25,91.50,145513600,2.23 +1992-11-23,90.25,91.75,87.25,88.50,309884800,2.16 +1992-11-20,94.00,95.00,93.75,95.00,41113600,2.32 +1992-11-19,92.25,95.00,92.25,94.00,46857600,2.29 +1992-11-18,90.50,92.50,89.87,92.00,33273600,2.24 +1992-11-17,92.87,94.00,89.25,90.00,56649600,2.19 +1992-11-16,93.00,93.50,92.25,92.75,19312000,2.26 +1992-11-13,93.50,93.75,92.50,93.25,25811200,2.27 +1992-11-12,93.75,94.25,92.00,93.50,46960000,2.28 +1992-11-11,92.75,95.00,92.25,93.75,60748800,2.29 +1992-11-10,92.00,93.25,91.50,92.87,38710400,2.26 +1992-11-09,92.75,92.75,90.50,91.87,54796800,2.24 +1992-11-06,91.75,93.25,91.25,92.75,61155200,2.26 +1992-11-05,89.00,92.25,88.25,91.87,90361600,2.24 +1992-11-04,88.25,89.75,88.00,88.50,23657600,2.16 +1992-11-03,89.50,89.75,87.62,88.25,35267200,2.15 +1992-11-02,89.00,90.00,87.75,89.62,31091200,2.18 +1992-10-30,89.87,90.00,88.50,88.75,24998400,2.16 +1992-10-29,88.75,90.00,88.50,90.00,32774400,2.19 +1992-10-28,88.25,88.75,87.25,88.50,36172800,2.16 +1992-10-27,90.00,90.25,87.50,88.00,49116800,2.14 +1992-10-26,88.50,90.25,87.75,90.00,40121600,2.19 +1992-10-23,90.25,90.25,88.25,88.62,46006400,2.16 +1992-10-22,90.00,90.25,88.25,89.75,49174400,2.19 +1992-10-21,88.25,90.00,87.75,90.00,60396800,2.19 +1992-10-20,88.25,89.75,87.00,87.87,84150400,2.14 +1992-10-19,85.00,88.25,85.00,87.87,83280000,2.14 +1992-10-16,84.75,85.50,83.75,85.37,47644800,2.08 +1992-10-15,83.25,84.75,82.75,84.50,35942400,2.06 +1992-10-14,84.37,85.00,83.00,83.50,47456000,2.04 +1992-10-13,84.75,85.37,83.25,84.25,86643200,2.05 +1992-10-12,83.00,84.00,82.75,83.87,34700800,2.04 +1992-10-09,83.50,83.50,81.50,82.37,40182400,2.01 +1992-10-08,82.25,84.50,81.75,83.37,59532800,2.03 +1992-10-07,82.50,84.25,81.00,81.12,58153600,1.98 +1992-10-06,82.25,83.50,81.25,82.50,74316800,2.01 +1992-10-05,78.50,81.75,75.75,81.75,71347200,1.99 +1992-10-02,79.25,79.75,78.00,78.75,36803200,1.92 +1992-10-01,80.00,81.00,79.50,79.62,47804800,1.94 +1992-09-30,79.75,80.50,78.75,80.50,59843200,1.96 +1992-09-29,77.00,79.00,77.00,78.75,39392000,1.92 +1992-09-28,76.50,78.25,76.25,77.00,52854400,1.88 +1992-09-25,80.25,80.37,76.00,78.75,41817600,1.92 +1992-09-24,79.25,80.50,79.25,80.25,36953600,1.96 +1992-09-23,77.75,79.75,77.50,79.12,37654400,1.93 +1992-09-22,79.00,79.12,77.50,77.75,30777600,1.90 +1992-09-21,78.75,79.50,78.25,79.12,31811200,1.93 +1992-09-18,81.25,81.50,78.37,79.87,71683200,1.95 +1992-09-17,80.50,81.50,80.25,81.12,23590400,1.98 +1992-09-16,79.75,81.75,79.50,80.37,35708800,1.96 +1992-09-15,81.50,81.75,80.00,81.25,44614400,1.98 +1992-09-14,79.75,82.00,79.75,81.75,95100800,1.99 +1992-09-11,78.50,79.25,78.00,78.75,30796800,1.92 +1992-09-10,78.25,79.00,77.50,79.00,53302400,1.93 +1992-09-09,76.75,78.37,76.50,78.12,60982400,1.90 +1992-09-08,76.00,76.87,75.25,76.75,49376000,1.87 +1992-09-04,76.25,76.50,75.50,76.00,28585600,1.85 +1992-09-03,75.75,77.25,75.50,76.62,85296000,1.87 +1992-09-02,74.50,75.75,73.75,75.37,61955200,1.84 +1992-09-01,74.00,74.62,73.25,74.50,30825600,1.82 +1992-08-31,74.25,75.00,73.50,74.50,25651200,1.82 +1992-08-28,73.50,74.50,73.50,74.37,49468800,1.81 +1992-08-27,72.00,74.00,72.00,73.62,88028800,1.79 +1992-08-26,70.25,72.25,70.25,71.62,50016000,1.75 +1992-08-25,68.75,70.75,68.50,70.37,37123200,1.72 +1992-08-24,69.62,70.00,68.75,69.00,42800000,1.68 +1992-08-21,70.50,70.87,69.00,69.75,52710400,1.70 +1992-08-20,69.50,70.75,69.00,70.37,36534400,1.72 +1992-08-19,69.50,70.50,68.75,69.25,27433600,1.69 +1992-08-18,69.00,70.75,68.00,69.50,66313600,1.69 +1992-08-17,70.75,71.00,69.50,69.50,63318400,1.69 +1992-08-14,71.00,71.75,70.75,71.00,33942400,1.73 +1992-08-13,71.25,71.75,70.50,70.87,28227200,1.73 +1992-08-12,71.75,72.50,70.75,71.00,30441600,1.73 +1992-08-11,71.25,71.87,70.00,71.37,33436800,1.74 +1992-08-10,71.00,72.50,70.75,70.87,42067200,1.73 +1992-08-07,71.50,73.75,70.50,70.75,55008000,1.72 +1992-08-06,71.50,72.00,70.25,71.50,3705600,1.74 +1992-08-05,73.75,73.75,71.25,72.00,60150400,1.75 +1992-08-04,74.00,74.50,73.50,73.87,31430400,1.80 +1992-08-03,72.75,74.25,72.00,73.75,31516800,1.80 +1992-07-31,73.50,73.50,72.25,72.75,35312000,1.77 +1992-07-30,73.50,74.50,73.00,73.12,32035200,1.78 +1992-07-29,74.50,74.75,72.00,74.00,145273600,1.80 +1992-07-28,73.50,74.50,72.75,74.00,45363200,1.80 +1992-07-27,72.75,73.50,72.25,73.00,30512000,1.78 +1992-07-24,71.12,73.75,71.00,72.75,76259200,1.77 +1992-07-23,69.75,72.25,68.75,71.00,68441600,1.73 +1992-07-22,71.75,71.75,69.50,70.00,59008000,1.71 +1992-07-21,70.00,72.75,69.50,71.75,45907200,1.75 +1992-07-20,69.50,70.25,68.50,69.25,48707200,1.69 +1992-07-17,71.75,72.00,69.75,70.25,59865600,1.71 +1992-07-16,71.00,72.25,70.75,72.25,42291200,1.76 +1992-07-15,71.75,73.25,71.00,71.50,80172800,1.74 +1992-07-14,70.50,71.50,70.25,71.12,41116800,1.73 +1992-07-13,69.75,71.25,68.50,70.00,35113600,1.71 +1992-07-10,69.25,70.00,67.62,69.50,28905600,1.69 +1992-07-09,69.00,70.75,68.25,69.00,61174400,1.68 +1992-07-08,68.00,69.00,65.50,68.62,93417600,1.67 +1992-07-07,69.75,69.75,67.25,68.00,54396800,1.66 +1992-07-06,70.00,70.25,67.75,69.50,36224000,1.69 +1992-07-02,72.75,73.00,68.75,69.87,80563200,1.70 +1992-07-01,70.25,72.75,69.50,72.12,45136000,1.76 +1992-06-30,72.75,73.00,69.50,70.00,74048000,1.71 +1992-06-29,68.50,72.75,68.25,72.25,90963200,1.76 +1992-06-26,69.50,69.75,65.75,66.75,140982400,1.63 +1992-06-25,72.25,72.25,66.50,70.00,165340800,1.71 +1992-06-24,73.75,73.75,71.75,72.25,34096000,1.76 +1992-06-23,74.75,75.75,72.75,73.50,57420800,1.79 +1992-06-22,73.25,74.50,71.50,74.25,54080000,1.81 +1992-06-19,73.50,74.25,72.75,73.50,43110400,1.79 +1992-06-18,73.00,74.75,71.00,72.25,53356800,1.76 +1992-06-17,72.50,73.25,71.50,72.37,70032000,1.76 +1992-06-16,75.50,76.50,72.50,72.75,57376000,1.77 +1992-06-15,75.00,78.00,75.00,75.75,54940800,1.85 +1992-06-12,110.25,113.00,108.87,112.50,138028800,1.83 +1992-06-11,112.50,115.25,107.50,108.00,130732800,1.75 +1992-06-10,115.25,115.50,112.00,112.50,65456000,1.83 +1992-06-09,118.50,119.00,114.00,115.00,84604800,1.87 +1992-06-08,120.75,121.00,118.25,118.25,40227200,1.92 +1992-06-05,122.50,123.00,120.75,121.00,40937600,1.97 +1992-06-04,123.25,123.50,122.50,122.62,41753600,1.99 +1992-06-03,122.50,124.25,122.50,123.00,28188800,2.00 +1992-06-02,124.25,124.50,122.25,122.87,42585600,2.00 +1992-06-01,120.50,124.25,120.00,124.25,68528000,2.02 +1992-05-29,119.75,122.25,119.50,121.00,89916800,1.97 +1992-05-28,114.75,119.50,114.50,119.00,62700800,1.93 +1992-05-27,115.75,116.25,114.75,115.00,31164800,1.87 +1992-05-26,116.00,117.00,115.00,115.50,38217600,1.88 +1992-05-22,117.00,117.00,115.00,115.75,36969600,1.88 +1992-05-21,117.00,117.00,115.25,116.62,48566400,1.90 +1992-05-20,114.50,117.00,114.50,116.75,58800000,1.90 +1992-05-19,113.25,114.50,113.25,114.50,51238400,1.86 +1992-05-18,110.75,113.50,110.50,112.75,37526400,1.83 +1992-05-15,110.25,111.50,109.50,110.00,40812800,1.79 +1992-05-14,112.75,113.00,109.25,110.75,72307200,1.80 +1992-05-13,113.75,114.25,111.00,112.75,64320000,1.83 +1992-05-12,114.75,115.25,112.75,114.25,49904000,1.86 +1992-05-11,114.75,115.25,113.25,114.00,41110400,1.85 +1992-05-08,116.00,117.00,113.25,114.50,59820800,1.86 +1992-05-07,116.00,116.50,114.25,115.00,40579200,1.87 +1992-05-06,117.00,117.25,115.50,116.00,50016000,1.88 +1992-05-05,113.75,117.50,113.25,116.50,59244800,1.89 +1992-05-04,113.50,116.00,112.50,114.00,73920000,1.85 +1992-05-01,110.50,114.00,110.25,113.75,62083200,1.85 +1992-04-30,112.00,112.75,109.75,110.25,95868800,1.79 +1992-04-29,109.50,111.50,108.25,111.37,137308800,1.81 +1992-04-28,113.75,114.50,107.00,109.00,199875200,1.77 +1992-04-27,112.50,116.50,112.50,113.25,99584000,1.84 +1992-04-24,116.00,116.75,112.00,112.25,90393600,1.82 +1992-04-23,118.50,119.00,112.25,115.75,115334400,1.88 +1992-04-22,116.50,118.50,114.50,117.62,61788800,1.91 +1992-04-21,118.25,118.50,115.50,116.12,99244800,1.89 +1992-04-20,124.50,125.00,115.50,118.12,226118400,1.92 +1992-04-16,129.00,129.00,127.00,127.62,66393600,2.07 +1992-04-15,128.75,129.25,126.50,128.88,223305600,2.09 +1992-04-14,118.25,120.25,116.50,117.00,72806400,1.90 +1992-04-13,116.75,118.12,114.25,117.50,45552000,1.91 +1992-04-10,121.25,122.00,114.00,116.00,126444800,1.88 +1992-04-09,118.25,120.25,116.62,120.00,70006400,1.95 +1992-04-08,115.75,117.50,113.25,117.25,105388800,1.91 +1992-04-07,122.00,122.50,115.75,116.00,72758400,1.88 +1992-04-06,117.75,121.62,117.75,121.25,40121600,1.97 +1992-04-03,117.50,119.25,116.75,117.50,59532800,1.91 +1992-04-02,120.50,121.50,116.75,117.00,56918400,1.90 +1992-04-01,117.25,120.75,117.00,120.50,74201600,1.96 +1992-03-31,120.50,122.00,117.75,118.50,86700800,1.93 +1992-03-30,121.50,122.00,120.00,120.00,40713600,1.95 +1992-03-27,124.50,125.00,119.50,121.25,89971200,1.97 +1992-03-26,128.75,129.00,124.25,125.00,60403200,2.03 +1992-03-25,127.50,129.25,127.00,128.50,36739200,2.09 +1992-03-24,129.00,129.88,126.50,127.50,70227200,2.07 +1992-03-23,128.50,129.25,127.75,128.50,37843200,2.09 +1992-03-20,127.50,129.00,127.50,128.50,35772800,2.09 +1992-03-19,127.00,130.25,126.25,127.50,111574400,2.07 +1992-03-18,128.50,129.00,126.00,126.37,69228800,2.05 +1992-03-17,125.37,128.75,124.75,128.00,94473600,2.08 +1992-03-16,121.00,124.25,120.50,124.25,55132800,2.02 +1992-03-13,122.50,123.00,120.50,121.00,36761600,1.97 +1992-03-12,120.25,121.50,118.50,121.12,50025600,1.97 +1992-03-11,122.25,123.25,119.25,120.25,39532800,1.95 +1992-03-10,119.50,122.75,119.25,121.75,45478400,1.98 +1992-03-09,118.75,120.50,118.25,119.00,30425600,1.93 +1992-03-06,120.75,122.00,116.75,118.25,61865600,1.92 +1992-03-05,122.50,123.25,119.25,121.25,55689600,1.97 +1992-03-04,123.25,124.25,121.75,122.50,33084800,1.99 +1992-03-03,123.50,125.25,122.50,123.25,27734400,2.00 +1992-03-02,123.75,125.75,121.75,123.00,34876800,2.00 +1992-02-28,125.00,126.50,122.25,123.50,58275200,2.01 +1992-02-27,122.75,125.25,122.75,124.87,79577600,2.03 +1992-02-26,116.00,122.00,116.00,122.00,100668800,1.98 +1992-02-25,115.00,116.50,113.25,115.75,57388800,1.88 +1992-02-24,114.50,116.50,113.00,114.87,59049600,1.87 +1992-02-21,117.00,118.50,113.75,114.50,91116800,1.86 +1992-02-20,116.00,119.25,115.75,117.50,74323200,1.91 +1992-02-19,118.00,118.00,113.50,115.12,145372800,1.87 +1992-02-18,119.25,122.25,118.00,118.25,73692800,1.92 +1992-02-14,122.25,122.50,118.00,118.50,82630400,1.93 +1992-02-13,125.50,126.50,121.50,122.50,97356800,1.99 +1992-02-12,118.62,126.75,118.62,125.75,83340800,2.04 +1992-02-11,124.25,124.75,121.50,122.50,41078400,1.99 +1992-02-10,125.62,126.00,122.00,124.50,41369600,2.02 +1992-02-07,126.25,127.50,124.00,125.75,36499200,2.04 +1992-02-06,126.50,129.00,125.75,126.25,62355200,2.05 +1992-02-05,124.75,128.50,123.50,127.25,71212800,2.07 +1992-02-04,125.25,126.00,122.50,124.50,58438400,2.02 +1992-02-03,118.25,125.50,117.50,125.00,80265600,2.03 +1992-01-31,123.50,123.75,119.75,120.25,49948800,1.95 +1992-01-30,124.50,124.75,121.50,123.50,41923200,2.01 +1992-01-29,122.50,125.75,121.75,124.50,97344000,2.02 +1992-01-28,121.00,121.75,116.00,120.75,95539200,1.96 +1992-01-27,124.75,125.50,120.50,120.62,46233600,1.96 +1992-01-24,124.50,125.50,124.00,124.62,37756800,2.03 +1992-01-23,125.50,129.38,123.75,125.00,75590400,2.03 +1992-01-22,120.00,125.50,119.00,125.50,56131200,2.04 +1992-01-21,122.25,123.00,116.00,119.37,120019200,1.94 +1992-01-20,127.25,127.25,122.50,122.50,58860800,1.99 +1992-01-17,127.75,129.50,123.75,126.50,85027200,2.06 +1992-01-16,131.25,132.00,127.50,127.75,58761600,2.08 +1992-01-15,128.75,133.25,128.25,131.50,65292800,2.14 +1992-01-14,127.50,128.50,126.00,128.25,44006400,2.08 +1992-01-13,124.00,128.88,122.75,127.12,52803200,2.07 +1992-01-10,127.00,127.75,124.00,125.25,64640000,2.04 +1992-01-09,124.25,129.00,124.00,127.25,88348800,2.07 +1992-01-08,119.00,125.75,118.75,124.25,90761600,2.02 +1992-01-07,116.50,120.25,115.75,120.00,64361600,1.95 +1992-01-06,113.25,117.75,112.37,116.50,63056000,1.89 +1992-01-03,114.00,114.25,111.75,113.00,38246400,1.84 +1992-01-02,110.75,114.75,109.50,114.00,74265600,1.85 +1991-12-31,110.75,112.00,108.75,111.25,40512000,1.81 +1991-12-30,110.50,111.25,109.50,110.75,35523200,1.80 +1991-12-27,108.25,111.50,107.75,110.37,36656000,1.79 +1991-12-26,106.25,108.25,105.75,107.87,24326400,1.75 +1991-12-24,106.75,107.50,106.00,106.25,23993600,1.73 +1991-12-23,103.25,106.75,102.50,106.75,46112000,1.73 +1991-12-20,104.00,105.00,102.25,103.25,35356800,1.68 +1991-12-19,102.37,103.25,101.25,102.75,38115200,1.67 +1991-12-18,102.00,103.25,101.25,102.87,33561600,1.67 +1991-12-17,102.00,103.50,100.25,101.87,27478400,1.66 +1991-12-16,102.00,102.25,100.75,102.12,27225600,1.66 +1991-12-13,102.25,102.75,101.50,102.00,26192000,1.66 +1991-12-12,101.00,103.25,100.50,102.00,36979200,1.66 +1991-12-11,102.12,102.75,99.50,100.75,39132800,1.64 +1991-12-10,102.00,102.00,100.00,101.75,46252800,1.65 +1991-12-09,103.25,103.75,101.25,102.00,57718400,1.66 +1991-12-06,101.50,105.25,101.00,104.25,51580800,1.69 +1991-12-05,101.75,102.25,100.75,101.75,24892800,1.65 +1991-12-04,101.75,103.00,100.00,102.00,36297600,1.66 +1991-12-03,101.00,102.75,99.50,101.37,64995200,1.65 +1991-12-02,96.25,101.50,96.00,101.25,55852800,1.65 +1991-11-29,94.75,97.75,94.75,97.25,20524800,1.58 +1991-11-27,94.25,95.50,94.00,95.25,15008000,1.55 +1991-11-26,96.12,96.25,92.75,94.50,58809600,1.54 +1991-11-25,95.75,97.00,95.25,95.62,33724800,1.55 +1991-11-22,97.00,97.50,95.25,96.00,38102400,1.56 +1991-11-21,96.25,97.25,95.75,97.25,35558400,1.58 +1991-11-20,97.00,97.50,96.00,96.50,36441600,1.57 +1991-11-19,96.25,97.37,94.25,96.25,71974400,1.56 +1991-11-18,95.25,97.75,95.00,97.25,72432000,1.58 +1991-11-15,99.00,100.50,94.75,95.00,71590400,1.54 +1991-11-14,101.50,101.50,98.75,99.25,44371200,1.61 +1991-11-13,99.50,101.75,98.75,101.00,57523200,1.64 +1991-11-12,98.25,100.75,98.00,99.87,80035200,1.62 +1991-11-11,96.00,98.00,95.62,97.50,40563200,1.58 +1991-11-08,95.00,96.75,95.00,95.25,36492800,1.55 +1991-11-07,95.50,95.75,94.50,94.75,20892800,1.54 +1991-11-06,94.00,95.50,93.25,95.25,38307200,1.55 +1991-11-05,91.25,94.50,91.00,93.75,51737600,1.52 +1991-11-04,92.25,92.50,90.75,91.00,28838400,1.48 +1991-11-01,93.50,93.75,92.00,92.62,34294400,1.51 +1991-10-31,94.50,95.25,93.25,93.87,41091200,1.53 +1991-10-30,90.75,94.75,90.75,94.50,65590400,1.54 +1991-10-29,90.25,90.75,89.75,90.75,36521600,1.47 +1991-10-28,89.50,90.25,87.75,90.25,37952000,1.47 +1991-10-25,90.25,90.75,89.25,89.50,28080000,1.45 +1991-10-24,90.50,90.50,89.25,90.25,26940800,1.47 +1991-10-23,91.75,92.00,89.75,90.25,36723200,1.47 +1991-10-22,91.50,92.75,91.25,91.37,32496000,1.48 +1991-10-21,90.00,91.50,89.75,91.00,28704000,1.48 +1991-10-18,90.00,91.25,89.75,90.00,37843200,1.46 +1991-10-17,90.75,90.75,88.50,89.25,95561600,1.45 +1991-10-16,91.50,91.50,89.87,90.75,100198400,1.47 +1991-10-15,92.25,92.25,90.75,91.37,57852800,1.48 +1991-10-14,90.00,92.25,90.00,92.25,50624000,1.50 +1991-10-11,90.75,91.00,87.75,89.62,69920000,1.46 +1991-10-10,90.50,90.50,88.50,89.75,42048000,1.46 +1991-10-09,89.50,91.25,89.25,89.50,60931200,1.45 +1991-10-08,88.00,89.50,88.00,89.25,37708800,1.45 +1991-10-07,87.25,88.87,86.75,88.50,27187200,1.44 +1991-10-04,88.00,89.00,87.50,88.12,26457600,1.43 +1991-10-03,86.50,88.25,86.25,87.50,34630400,1.42 +1991-10-02,88.50,90.50,86.25,87.00,67219200,1.41 +1991-10-01,89.00,89.25,88.00,88.87,19625600,1.44 +1991-09-30,88.25,89.50,87.00,89.00,27699200,1.45 +1991-09-27,89.50,89.50,87.75,88.25,33273600,1.43 +1991-09-26,87.50,90.00,87.25,89.25,48000000,1.45 +1991-09-25,88.00,88.37,86.50,87.75,25766400,1.43 +1991-09-24,85.25,88.25,85.25,88.00,47625600,1.43 +1991-09-23,86.25,86.50,84.50,84.87,49769600,1.38 +1991-09-20,86.75,87.00,86.00,86.50,30316800,1.41 +1991-09-19,85.00,87.25,84.75,86.25,51363200,1.40 +1991-09-18,84.00,85.50,83.75,84.75,26940800,1.38 +1991-09-17,82.75,84.75,82.00,84.50,23366400,1.37 +1991-09-16,83.00,83.50,82.25,83.00,21686400,1.35 +1991-09-13,85.50,85.75,82.50,83.00,51360000,1.35 +1991-09-12,83.00,85.75,83.00,85.62,53808000,1.39 +1991-09-11,80.50,82.25,80.50,82.00,64032000,1.33 +1991-09-10,82.00,82.50,80.00,80.00,65936000,1.30 +1991-09-09,80.75,81.50,80.25,80.75,31913600,1.31 +1991-09-06,81.00,82.25,80.25,80.75,50787200,1.31 +1991-09-05,83.00,83.00,80.00,80.50,58457600,1.31 +1991-09-04,83.25,83.50,81.00,82.62,38467200,1.34 +1991-09-03,85.00,85.00,82.50,83.12,33494400,1.35 +1991-08-30,85.75,86.25,84.50,85.25,22032000,1.39 +1991-08-29,86.00,86.50,85.00,85.75,27974400,1.39 +1991-08-28,84.75,86.75,84.50,85.62,41558400,1.39 +1991-08-27,84.75,85.00,84.00,84.75,34204800,1.38 +1991-08-26,84.75,85.25,83.50,85.25,44134400,1.39 +1991-08-23,84.00,86.50,84.00,85.25,43161600,1.39 +1991-08-22,84.25,85.25,83.25,84.00,43625600,1.36 +1991-08-21,82.00,84.50,81.75,84.00,73212800,1.36 +1991-08-20,80.62,81.87,80.00,80.50,57324800,1.31 +1991-08-19,77.50,81.25,77.00,80.25,85424000,1.30 +1991-08-16,80.75,82.37,80.25,81.75,52073600,1.33 +1991-08-15,82.50,83.25,81.00,81.50,45459200,1.32 +1991-08-14,82.75,83.50,82.00,82.50,67008000,1.34 +1991-08-13,83.75,83.75,82.25,82.50,94496000,1.34 +1991-08-12,79.75,83.75,79.75,83.00,56899200,1.35 +1991-08-09,78.75,82.00,78.25,80.75,114806400,1.31 +1991-08-08,76.00,79.25,76.00,79.00,91852800,1.28 +1991-08-07,74.75,76.50,74.50,76.00,69235200,1.23 +1991-08-06,72.25,75.00,72.25,74.50,53097600,1.21 +1991-08-05,73.25,73.25,71.75,72.25,28252800,1.17 +1991-08-02,73.75,74.75,73.25,73.25,81369600,1.19 +1991-08-01,73.75,74.00,73.00,73.25,53942400,1.19 +1991-07-31,73.00,74.00,72.75,73.50,111628800,1.19 +1991-07-30,70.50,73.00,69.75,72.75,78038400,1.18 +1991-07-29,71.00,71.25,68.75,70.25,136467200,1.14 +1991-07-26,67.00,71.75,66.75,71.00,149292800,1.15 +1991-07-25,67.00,68.00,65.87,66.00,90211200,1.07 +1991-07-24,67.00,67.25,65.00,65.50,54320000,1.06 +1991-07-23,68.00,68.25,66.50,66.50,35596800,1.08 +1991-07-22,66.75,68.75,66.50,67.50,35136000,1.10 +1991-07-19,67.50,68.00,66.00,67.75,24441600,1.10 +1991-07-18,68.00,69.25,66.75,67.00,25654400,1.09 +1991-07-17,65.75,67.75,65.00,67.75,40524800,1.10 +1991-07-16,70.00,70.00,67.50,67.50,42732800,1.10 +1991-07-15,68.75,70.25,68.50,69.87,36761600,1.14 +1991-07-12,67.00,68.50,66.00,68.00,35174400,1.10 +1991-07-11,65.75,66.75,65.00,66.25,51148800,1.08 +1991-07-10,68.25,68.75,65.00,65.25,67308800,1.06 +1991-07-09,67.50,68.75,66.50,67.87,76947200,1.10 +1991-07-08,60.75,67.25,60.50,67.00,109184000,1.09 +1991-07-05,63.75,63.75,61.50,61.75,78758400,1.00 +1991-07-03,64.50,65.00,61.75,64.00,191628800,1.04 +1991-07-02,71.25,72.25,68.00,68.12,43920000,1.11 +1991-07-01,68.75,71.62,67.75,71.37,72387200,1.16 +1991-06-28,67.75,68.75,65.50,68.12,61526400,1.11 +1991-06-27,67.75,68.25,66.75,68.00,56508800,1.10 +1991-06-26,99.00,101.50,98.25,100.75,96636800,1.09 +1991-06-25,99.25,100.25,98.00,98.75,97228800,1.07 +1991-06-24,101.00,101.50,97.50,98.12,79692800,1.06 +1991-06-21,101.25,103.00,101.25,102.25,67680000,1.11 +1991-06-20,101.00,101.75,99.00,100.75,187996800,1.09 +1991-06-19,109.75,109.75,103.00,103.37,157036800,1.12 +1991-06-18,113.25,113.50,109.75,111.50,46848000,1.21 +1991-06-17,113.75,114.75,112.50,113.50,29417600,1.23 +1991-06-14,111.25,113.75,111.00,113.50,46358400,1.23 +1991-06-13,111.00,112.25,110.50,111.00,38000000,1.20 +1991-06-12,110.75,112.25,110.25,111.12,51065600,1.20 +1991-06-11,111.00,113.00,110.50,110.62,41846400,1.20 +1991-06-10,110.25,111.00,109.75,110.50,29494400,1.20 +1991-06-07,109.75,110.25,108.75,110.25,51984000,1.19 +1991-06-06,112.75,113.00,110.50,111.12,32678400,1.20 +1991-06-05,112.50,114.25,112.00,112.00,41385600,1.21 +1991-06-04,112.00,113.50,110.50,113.00,35033600,1.22 +1991-06-03,109.50,112.25,109.00,112.00,46947200,1.21 +1991-05-31,110.50,111.00,108.00,109.75,81782400,1.19 +1991-05-30,110.12,111.75,109.00,110.25,61833600,1.19 +1991-05-29,111.25,112.00,109.75,110.25,64198400,1.19 +1991-05-28,110.50,111.75,110.00,110.75,43939200,1.20 +1991-05-24,110.00,112.50,109.50,110.00,67929600,1.19 +1991-05-23,107.00,109.75,107.00,109.50,67750400,1.19 +1991-05-22,102.75,106.75,102.25,106.75,88780800,1.16 +1991-05-21,99.75,103.25,99.50,102.00,83568000,1.10 +1991-05-20,99.50,100.00,97.75,99.12,65936000,1.07 +1991-05-17,99.00,99.50,98.00,99.25,44812800,1.08 +1991-05-16,99.25,100.00,98.50,99.37,70243200,1.08 +1991-05-15,100.25,100.50,96.62,98.00,111158400,1.06 +1991-05-14,102.62,103.25,100.75,101.25,58812800,1.10 +1991-05-13,103.25,103.75,101.25,103.12,68745600,1.12 +1991-05-10,106.25,107.00,102.00,102.75,52070400,1.11 +1991-05-09,103.25,106.00,102.75,105.75,76294400,1.15 +1991-05-08,101.00,103.25,100.25,103.00,57590400,1.12 +1991-05-07,103.25,103.75,101.25,101.25,50902400,1.10 +1991-05-06,100.50,103.25,100.25,102.75,44755200,1.11 +1991-05-03,100.50,101.25,99.75,101.25,23043200,1.10 +1991-05-02,101.25,102.50,100.25,100.50,66886400,1.09 +1991-05-01,98.50,100.75,97.00,100.75,111628800,1.09 +1991-04-30,97.75,99.25,96.00,99.00,115174400,1.07 +1991-04-29,101.25,101.50,97.75,97.75,71254400,1.06 +1991-04-26,100.25,102.25,98.75,100.75,88371200,1.09 +1991-04-25,102.50,103.75,100.50,100.75,65705600,1.09 +1991-04-24,101.50,104.75,100.50,103.00,82128000,1.12 +1991-04-23,102.25,103.00,100.50,101.62,103910400,1.10 +1991-04-22,106.00,106.25,101.75,102.12,139708800,1.11 +1991-04-19,106.25,109.50,105.00,107.25,96585600,1.16 +1991-04-18,111.25,112.00,108.00,110.00,88083200,1.19 +1991-04-17,114.00,117.50,111.12,111.50,128380800,1.21 +1991-04-16,113.75,114.50,110.00,112.25,81331200,1.22 +1991-04-15,106.00,114.25,105.00,113.75,88819200,1.23 +1991-04-12,109.50,110.00,103.75,107.25,176729600,1.16 +1991-04-11,108.50,111.50,108.00,111.00,47936000,1.20 +1991-04-10,109.75,110.25,105.50,107.50,74336000,1.16 +1991-04-09,111.50,113.25,109.75,110.25,60768000,1.19 +1991-04-08,110.00,113.25,109.50,111.37,46524800,1.21 +1991-04-05,114.00,114.25,109.00,110.00,108912000,1.19 +1991-04-04,114.00,116.75,112.75,113.75,73846400,1.23 +1991-04-03,112.75,116.75,112.75,113.75,91776000,1.23 +1991-04-02,107.50,112.50,106.75,112.25,96252800,1.22 +1991-04-01,106.00,107.75,104.50,106.75,59203200,1.16 +1991-03-28,107.25,108.25,106.00,106.12,30489600,1.15 +1991-03-27,105.00,109.25,105.00,107.75,91932800,1.17 +1991-03-26,98.75,105.25,98.75,105.12,89926400,1.14 +1991-03-25,94.00,98.75,94.00,98.25,59820800,1.06 +1991-03-22,94.50,95.50,93.00,93.75,95686400,1.02 +1991-03-21,99.50,100.75,94.00,94.75,119187200,1.03 +1991-03-20,99.00,101.00,98.75,99.00,83216000,1.07 +1991-03-19,98.25,101.00,96.75,99.00,92505600,1.07 +1991-03-18,96.25,99.75,96.00,99.25,66214400,1.08 +1991-03-15,98.25,98.75,96.25,96.62,76928000,1.05 +1991-03-14,101.50,101.50,97.00,98.00,100214400,1.06 +1991-03-13,96.00,101.12,96.00,100.50,110265600,1.09 +1991-03-12,98.25,98.87,95.62,95.75,152883200,1.04 +1991-03-11,101.75,102.50,97.75,99.25,160966400,1.08 +1991-03-08,104.50,106.00,101.75,102.50,134697600,1.11 +1991-03-07,104.25,107.50,103.50,104.00,165388800,1.13 +1991-03-06,112.50,113.00,106.75,107.25,101088000,1.16 +1991-03-05,107.25,112.50,107.00,111.50,76352000,1.21 +1991-03-04,105.75,107.50,104.50,107.00,47020800,1.16 +1991-03-01,103.00,106.25,102.00,105.75,77721600,1.15 +1991-02-28,106.00,106.25,103.25,103.75,55008000,1.12 +1991-02-27,102.25,105.75,101.25,105.25,87670400,1.14 +1991-02-26,101.50,102.50,100.50,101.75,55539200,1.10 +1991-02-25,103.25,104.00,101.50,103.00,88521600,1.12 +1991-02-22,99.75,104.50,99.75,102.25,105340800,1.11 +1991-02-21,103.00,103.50,100.00,100.00,68275200,1.08 +1991-02-20,101.75,104.00,101.50,102.75,52550400,1.11 +1991-02-19,102.25,103.50,101.50,102.50,66560000,1.11 +1991-02-15,101.50,104.25,101.25,103.25,115449600,1.12 +1991-02-14,105.25,105.50,99.00,100.75,133702400,1.09 +1991-02-13,102.50,105.62,101.75,105.50,95491200,1.14 +1991-02-12,103.25,104.75,102.50,103.25,96204800,1.12 +1991-02-11,104.12,104.50,102.25,104.25,152336000,1.13 +1991-02-08,103.00,104.75,101.75,104.00,74230400,1.13 +1991-02-07,106.25,109.00,102.25,103.00,133462400,1.12 +1991-02-06,101.00,106.50,100.50,105.75,106348800,1.15 +1991-02-05,99.25,102.00,98.00,101.25,88736000,1.10 +1991-02-04,100.00,100.75,98.00,99.12,88233600,1.07 +1991-02-01,99.00,101.00,97.25,99.75,117878400,1.08 +1991-01-31,96.50,99.50,96.00,98.12,111417600,1.06 +1991-01-30,92.50,96.50,91.50,96.25,148582400,1.04 +1991-01-29,92.25,94.37,90.00,92.50,146979200,1.00 +1991-01-28,89.00,94.00,89.00,92.25,130985600,1.00 +1991-01-25,90.75,91.00,89.00,89.50,86889600,0.97 +1991-01-24,89.25,90.87,88.75,90.50,86083200,0.98 +1991-01-23,88.25,90.25,88.25,89.00,77081600,0.96 +1991-01-22,89.62,91.00,87.37,88.87,113715200,0.96 +1991-01-21,84.62,90.00,84.62,89.50,154512000,0.97 +1991-01-18,82.50,85.50,82.25,85.25,103030400,0.92 +1991-01-17,86.00,86.25,83.75,84.00,163526400,0.91 +1991-01-16,78.50,82.87,78.25,82.25,139913600,0.89 +1991-01-15,76.75,79.50,76.75,78.37,83436800,0.85 +1991-01-14,77.25,77.50,75.50,76.75,58656000,0.83 +1991-01-11,78.50,79.00,76.75,78.00,62006400,0.84 +1991-01-10,74.25,78.75,74.25,78.25,123888000,0.85 +1991-01-09,74.00,75.75,73.50,74.00,115622400,0.80 +1991-01-08,74.75,75.25,73.00,73.50,76438400,0.80 +1991-01-07,75.25,77.75,74.75,74.87,87552000,0.81 +1991-01-04,75.00,76.50,75.00,75.87,58483200,0.82 +1991-01-03,74.75,76.00,74.75,75.25,52822400,0.82 +1991-01-02,75.00,75.25,74.75,74.75,38105600,0.81 +1990-12-31,75.00,75.25,74.50,75.25,23702400,0.82 +1990-12-28,74.50,75.25,74.25,75.00,20265600,0.81 +1990-12-27,75.00,75.25,74.50,74.75,22627200,0.81 +1990-12-26,75.25,75.75,74.50,75.00,16214400,0.81 +1990-12-24,75.50,75.50,74.75,75.25,13548800,0.82 +1990-12-21,75.75,76.00,75.25,75.75,33468800,0.82 +1990-12-20,74.25,76.00,74.00,75.50,46992000,0.82 +1990-12-19,75.37,75.75,74.75,74.87,34262400,0.81 +1990-12-18,74.50,75.75,74.25,75.25,51872000,0.82 +1990-12-17,73.00,74.25,72.50,74.00,27286400,0.80 +1990-12-14,73.00,74.25,72.50,73.62,48633600,0.80 +1990-12-13,73.00,73.50,71.75,72.75,50707200,0.79 +1990-12-12,71.75,72.75,70.50,72.50,71558400,0.79 +1990-12-11,73.25,74.50,72.00,72.12,61766400,0.78 +1990-12-10,73.25,75.37,72.75,74.00,55526400,0.80 +1990-12-07,74.25,75.25,72.25,74.25,81920000,0.80 +1990-12-06,76.25,76.75,74.00,74.75,108201600,0.81 +1990-12-05,74.50,75.75,74.25,75.25,68630400,0.82 +1990-12-04,73.50,75.25,73.00,74.50,54547200,0.81 +1990-12-03,73.25,74.50,72.75,73.87,68240000,0.80 +1990-11-30,71.25,74.25,70.50,72.25,72163200,0.78 +1990-11-29,70.25,71.25,69.75,71.25,65865600,0.77 +1990-11-28,72.25,72.75,70.25,70.37,77619200,0.76 +1990-11-27,70.50,72.25,69.75,71.87,63417600,0.78 +1990-11-26,68.50,70.50,67.75,70.25,47577600,0.76 +1990-11-23,69.25,70.25,68.50,68.75,22060800,0.74 +1990-11-21,68.00,69.00,67.00,68.75,60739200,0.74 +1990-11-20,69.25,70.50,68.12,68.25,68864000,0.74 +1990-11-19,68.00,69.75,68.00,69.50,45552000,0.75 +1990-11-16,67.50,68.75,67.25,68.00,67075200,0.74 +1990-11-15,69.00,69.25,67.25,67.87,63129600,0.74 +1990-11-14,68.50,70.00,68.25,69.50,59721600,0.75 +1990-11-13,68.75,69.50,67.75,68.62,67654400,0.74 +1990-11-12,66.00,69.25,66.00,68.87,87657600,0.75 +1990-11-09,64.75,65.50,64.50,64.75,43344000,0.70 +1990-11-08,63.50,64.75,63.00,63.50,43462400,0.69 +1990-11-07,63.75,64.75,63.50,63.75,63100800,0.69 +1990-11-06,65.75,66.50,63.50,64.25,59212800,0.70 +1990-11-05,65.25,66.00,64.75,65.62,50700800,0.71 +1990-11-02,63.50,65.75,63.25,65.00,74764800,0.70 +1990-11-01,63.00,64.25,62.75,63.50,49440000,0.69 +1990-10-31,64.50,65.25,63.75,63.75,61200000,0.69 +1990-10-30,62.50,64.25,62.00,63.88,52563200,0.69 +1990-10-29,63.75,64.25,62.00,62.50,67881600,0.68 +1990-10-26,63.75,64.50,63.25,63.38,59126400,0.69 +1990-10-25,65.50,66.25,64.00,64.75,51497600,0.70 +1990-10-24,63.50,65.50,63.25,65.37,54732800,0.71 +1990-10-23,63.75,65.75,63.25,64.25,71884800,0.70 +1990-10-22,62.00,64.75,61.75,64.00,80294400,0.69 +1990-10-19,62.00,63.25,60.50,62.00,170336000,0.67 +1990-10-18,57.00,61.50,56.75,61.13,123737600,0.66 +1990-10-17,54.75,56.75,53.50,56.50,135820800,0.61 +1990-10-16,56.75,57.63,54.00,54.63,300886400,0.59 +1990-10-15,57.75,58.00,55.50,56.50,130332800,0.61 +1990-10-12,58.50,58.75,54.00,57.00,109251200,0.62 +1990-10-11,59.75,60.25,57.00,58.00,83811200,0.63 +1990-10-10,62.00,62.25,59.00,59.50,115593600,0.64 +1990-10-09,65.25,66.00,62.50,63.00,66374400,0.68 +1990-10-08,66.00,66.50,64.50,66.00,38678400,0.71 +1990-10-05,63.00,65.75,62.25,64.75,82099200,0.70 +1990-10-04,65.25,65.75,64.00,64.12,69292800,0.69 +1990-10-03,65.50,67.37,65.25,65.75,57600000,0.71 +1990-10-02,68.25,68.50,65.50,65.87,83465600,0.71 +1990-10-01,64.75,67.50,64.50,67.12,131619200,0.73 +1990-09-28,58.25,63.50,58.00,63.00,97980800,0.68 +1990-09-27,61.00,61.50,58.25,59.25,65724800,0.64 +1990-09-26,60.50,60.75,59.50,60.25,39267200,0.65 +1990-09-25,59.63,60.50,58.75,60.38,53308800,0.65 +1990-09-24,59.50,60.00,57.50,58.50,81436800,0.63 +1990-09-21,59.75,60.75,58.50,60.50,79891200,0.66 +1990-09-20,61.50,62.00,59.75,59.75,52444800,0.65 +1990-09-19,63.00,63.25,61.75,62.00,52694400,0.67 +1990-09-18,60.63,62.38,59.75,61.75,60636800,0.67 +1990-09-17,59.50,61.75,59.25,60.75,70390400,0.66 +1990-09-14,57.00,60.25,56.38,59.75,67670400,0.65 +1990-09-13,58.00,58.50,57.00,57.50,49865600,0.62 +1990-09-12,56.25,57.75,55.75,57.38,75014400,0.62 +1990-09-11,56.00,56.50,54.50,55.50,78867200,0.60 +1990-09-10,58.75,60.00,55.75,55.75,74246400,0.60 +1990-09-07,57.00,59.00,56.50,57.75,53702400,0.63 +1990-09-06,58.00,58.50,56.25,57.50,115616000,0.62 +1990-09-05,62.50,63.00,58.50,59.00,54675200,0.64 +1990-09-04,61.00,62.50,60.75,62.25,47376000,0.67 +1990-08-31,60.00,62.00,59.25,61.50,40736000,0.67 +1990-08-30,60.75,62.38,60.00,60.00,65379200,0.65 +1990-08-29,62.50,63.75,60.00,60.50,77952000,0.66 +1990-08-28,60.25,63.25,60.00,62.88,79824000,0.68 +1990-08-27,59.00,61.25,59.00,60.75,110115200,0.66 +1990-08-24,52.25,57.75,52.25,57.25,95443200,0.62 +1990-08-23,52.50,53.75,51.00,51.75,107443200,0.56 +1990-08-22,55.00,55.50,53.38,53.75,79232000,0.58 +1990-08-21,54.25,54.75,50.75,54.25,165648000,0.59 +1990-08-20,60.25,60.50,55.50,55.50,113600000,0.60 +1990-08-17,61.00,61.75,60.00,60.25,95225600,0.65 +1990-08-16,64.00,64.50,61.75,61.75,53328000,0.67 +1990-08-15,64.75,65.75,64.25,64.25,51408000,0.70 +1990-08-14,65.25,65.87,63.75,64.25,33708800,0.70 +1990-08-13,63.75,65.50,63.25,65.00,53942400,0.70 +1990-08-10,65.12,65.75,62.75,64.50,73184000,0.70 +1990-08-09,64.00,65.75,63.25,65.12,77052800,0.71 +1990-08-08,62.50,64.00,62.00,63.50,86259200,0.69 +1990-08-07,61.25,62.25,60.00,61.25,91065600,0.66 +1990-08-06,61.50,62.00,58.50,60.50,113184000,0.66 +1990-08-03,65.50,65.75,60.38,63.25,117177600,0.69 +1990-08-02,65.50,66.75,64.25,66.00,91769600,0.71 +1990-08-01,66.25,67.25,63.75,66.75,111113600,0.72 +1990-07-31,68.25,68.62,66.00,66.50,42307200,0.72 +1990-07-30,68.50,69.00,65.75,68.00,87955200,0.74 +1990-07-27,68.50,70.00,67.75,69.00,51017600,0.75 +1990-07-26,71.25,74.00,66.00,68.75,303321600,0.74 +1990-07-25,70.00,71.75,68.75,71.50,60147200,0.77 +1990-07-24,72.50,72.50,66.75,69.50,137100800,0.75 +1990-07-23,73.25,74.00,71.25,72.00,74201600,0.78 +1990-07-20,77.00,78.25,73.00,73.25,87724800,0.79 +1990-07-19,75.37,76.75,73.75,76.75,63132800,0.83 +1990-07-18,77.25,77.75,75.50,76.00,41849600,0.82 +1990-07-17,79.37,79.50,77.00,77.75,54473600,0.84 +1990-07-16,78.75,80.75,78.50,79.25,48729600,0.86 +1990-07-13,77.75,80.50,77.50,78.37,93628800,0.85 +1990-07-12,75.25,77.75,75.25,77.50,89040000,0.84 +1990-07-11,74.00,75.75,73.25,75.50,28918400,0.82 +1990-07-10,74.25,75.00,73.50,73.75,29696000,0.80 +1990-07-09,73.50,74.75,73.25,74.25,37315200,0.80 +1990-07-06,72.12,74.00,71.75,73.25,41801600,0.79 +1990-07-05,71.50,72.50,70.75,72.25,61852800,0.78 +1990-07-03,73.37,73.50,71.50,72.00,79257600,0.78 +1990-07-02,76.00,76.00,73.62,73.75,35472000,0.80 +1990-06-29,76.50,76.50,75.25,76.00,34953600,0.82 +1990-06-28,76.62,77.25,76.12,76.50,30051200,0.83 +1990-06-27,74.75,76.50,74.50,76.25,35760000,0.83 +1990-06-26,75.25,75.62,74.50,74.75,50198400,0.81 +1990-06-25,75.62,76.50,74.25,74.50,68979200,0.81 +1990-06-22,77.25,77.75,75.50,75.75,34032000,0.82 +1990-06-21,77.50,77.75,76.00,77.00,34304000,0.83 +1990-06-20,75.37,77.75,75.00,77.62,39561600,0.84 +1990-06-19,74.75,75.50,73.75,75.00,41715200,0.81 +1990-06-18,75.75,76.25,74.50,74.87,52790400,0.81 +1990-06-15,74.50,77.00,74.50,76.00,51552000,0.82 +1990-06-14,76.50,76.75,74.25,75.50,58204800,0.82 +1990-06-13,75.87,77.75,75.12,76.50,80265600,0.83 +1990-06-12,75.50,76.00,74.50,75.87,46656000,0.82 +1990-06-11,73.00,75.50,73.00,74.87,58236800,0.81 +1990-06-08,72.00,73.75,71.50,73.50,63766400,0.80 +1990-06-07,73.25,73.75,71.00,72.00,90118400,0.78 +1990-06-06,73.25,74.50,72.50,73.00,86288000,0.79 +1990-06-05,77.25,77.50,72.75,73.37,80256000,0.79 +1990-06-04,74.87,77.25,74.00,76.50,59158400,0.83 +1990-06-01,73.25,75.25,73.00,75.12,69065600,0.81 +1990-05-31,74.75,75.50,72.50,73.00,69436800,0.79 +1990-05-30,76.12,76.50,74.75,75.50,65072000,0.82 +1990-05-29,74.25,75.50,74.00,75.25,61478400,0.82 +1990-05-25,74.25,76.25,74.00,74.25,104688000,0.80 +1990-05-24,76.75,78.75,76.00,76.50,146649600,0.83 +1990-05-23,72.00,76.00,71.87,75.87,141180800,0.82 +1990-05-22,71.00,72.25,69.00,71.50,142435200,0.77 +1990-05-21,68.75,72.25,68.75,70.25,159593600,0.76 +1990-05-18,64.62,69.25,64.50,68.25,101820800,0.74 +1990-05-17,64.75,65.25,64.25,64.75,41731200,0.70 +1990-05-16,64.50,64.75,63.50,64.75,38553600,0.70 +1990-05-15,65.50,65.75,64.25,64.75,54118400,0.70 +1990-05-14,66.25,66.50,65.50,65.75,47232000,0.71 +1990-05-11,65.00,66.00,63.25,65.50,49164800,0.71 +1990-05-10,63.25,65.00,62.75,64.50,48800000,0.70 +1990-05-09,62.88,63.25,62.00,62.75,35164800,0.68 +1990-05-08,62.75,63.50,62.25,62.75,50822400,0.68 +1990-05-07,62.00,66.00,61.50,64.00,97347200,0.69 +1990-05-04,59.50,61.75,59.00,61.75,47811200,0.67 +1990-05-03,58.50,59.75,58.25,59.00,45891200,0.64 +1990-05-02,57.25,58.50,57.25,58.25,33264000,0.63 +1990-05-01,58.75,58.75,56.75,57.13,52473600,0.62 +1990-04-30,56.25,58.00,55.75,58.00,51449600,0.63 +1990-04-27,57.13,57.25,55.63,56.25,57123200,0.61 +1990-04-26,58.50,58.75,57.25,57.38,46294400,0.62 +1990-04-25,58.25,58.75,57.00,58.00,53868800,0.63 +1990-04-24,59.75,59.75,56.50,58.00,47913600,0.63 +1990-04-23,58.88,59.50,57.25,59.00,64876800,0.64 +1990-04-20,60.00,60.50,58.75,59.25,44659200,0.64 +1990-04-19,60.00,61.25,59.25,59.50,58003200,0.64 +1990-04-18,61.63,61.75,58.75,60.63,97795200,0.66 +1990-04-17,60.63,63.00,59.75,62.00,66777600,0.67 +1990-04-16,61.00,61.75,60.13,60.75,39468800,0.66 +1990-04-12,121.75,122.00,120.00,120.75,48252800,0.65 +1990-04-11,118.50,121.00,118.25,121.00,70371200,0.66 +1990-04-10,114.62,118.00,114.50,118.00,45187200,0.64 +1990-04-09,113.75,115.25,113.75,114.50,31174400,0.62 +1990-04-06,114.75,115.25,113.25,114.25,72876800,0.62 +1990-04-05,116.87,117.12,114.50,114.50,66368000,0.62 +1990-04-04,116.00,118.75,115.50,117.00,79644800,0.63 +1990-04-03,112.75,116.25,112.50,116.00,84643200,0.63 +1990-04-02,109.75,112.37,109.25,111.50,74057600,0.60 +1990-03-30,110.00,111.00,109.25,110.75,36691200,0.60 +1990-03-29,110.37,112.75,110.00,110.50,64784000,0.60 +1990-03-28,112.25,112.25,108.50,111.00,99532800,0.60 +1990-03-27,111.12,113.00,110.75,112.50,52515200,0.61 +1990-03-26,110.50,112.50,110.37,111.50,55929600,0.60 +1990-03-23,112.00,113.25,109.00,110.25,53596800,0.60 +1990-03-22,113.50,113.75,110.25,111.25,92419200,0.60 +1990-03-21,112.87,115.50,112.25,113.25,69840000,0.61 +1990-03-20,116.50,116.75,112.50,113.00,92144000,0.61 +1990-03-19,113.75,117.00,113.00,116.50,81171200,0.63 +1990-03-16,112.00,115.25,111.75,114.00,118899200,0.62 +1990-03-15,107.87,111.75,107.75,111.00,81676800,0.60 +1990-03-14,107.25,108.75,106.00,107.87,130966400,0.58 +1990-03-13,108.50,109.00,106.25,106.25,85203200,0.58 +1990-03-12,106.25,108.75,106.00,108.25,68873600,0.59 +1990-03-09,106.00,108.00,105.25,106.50,75744000,0.58 +1990-03-08,103.00,107.25,101.75,106.25,88976000,0.58 +1990-03-07,104.75,105.50,102.75,102.75,47606400,0.56 +1990-03-06,104.75,105.00,102.50,104.50,68630400,0.57 +1990-03-05,103.50,105.75,102.25,105.25,75526400,0.57 +1990-03-02,100.25,104.37,100.12,103.75,100208000,0.56 +1990-03-01,98.50,101.75,98.50,100.00,76867200,0.54 +1990-02-28,98.00,99.75,98.00,98.75,39312000,0.53 +1990-02-27,99.50,99.50,98.00,98.00,62019200,0.53 +1990-02-26,97.50,100.00,97.25,99.25,69219200,0.54 +1990-02-23,95.75,97.75,95.50,97.50,56851200,0.53 +1990-02-22,96.75,98.25,96.25,96.37,60809600,0.52 +1990-02-21,98.75,100.00,95.75,96.12,103347200,0.52 +1990-02-20,97.75,100.50,97.00,100.25,132652800,0.54 +1990-02-16,98.25,98.75,97.75,98.00,70876800,0.53 +1990-02-15,95.00,98.00,95.00,97.00,89494400,0.53 +1990-02-14,95.25,95.25,94.50,95.00,35868800,0.51 +1990-02-13,95.00,95.25,94.50,94.75,58752000,0.51 +1990-02-12,94.50,95.50,94.00,94.75,56086400,0.51 +1990-02-09,94.25,94.75,94.00,94.50,62380800,0.51 +1990-02-08,93.62,95.00,93.25,94.25,95225600,0.51 +1990-02-07,93.50,94.75,93.00,93.25,134150400,0.51 +1990-02-06,94.00,94.25,92.25,94.00,81964800,0.51 +1990-02-05,93.62,94.25,93.25,94.25,59731200,0.51 +1990-02-02,93.00,95.50,93.00,93.75,71395200,0.51 +1990-02-01,92.50,94.25,92.50,93.75,89193600,0.51 +1990-01-31,92.00,92.50,91.25,92.50,112937600,0.50 +1990-01-30,91.75,92.50,90.00,91.25,73107200,0.49 +1990-01-29,91.50,92.25,90.25,91.50,55078400,0.50 +1990-01-26,90.50,91.25,90.00,90.75,68083200,0.49 +1990-01-25,91.50,92.50,90.50,90.75,112752000,0.49 +1990-01-24,88.00,90.75,87.12,90.75,180345600,0.49 +1990-01-23,91.00,91.25,89.25,89.75,139347200,0.49 +1990-01-22,94.00,94.00,90.50,90.75,167686400,0.49 +1990-01-19,95.25,96.00,93.50,94.12,99257600,0.51 +1990-01-18,89.62,95.00,89.50,95.00,292361600,0.51 +1990-01-17,88.00,90.50,87.00,87.50,97587200,0.47 +1990-01-16,85.50,89.25,84.50,88.75,80092800,0.48 +1990-01-15,85.75,87.00,85.25,86.12,62467200,0.47 +1990-01-12,85.12,87.25,84.00,86.12,148908800,0.47 +1990-01-11,88.75,89.50,85.00,86.50,95772800,0.47 +1990-01-10,90.00,91.25,88.12,88.25,103766400,0.48 +1990-01-09,91.00,92.00,90.25,90.75,70300800,0.49 +1990-01-08,89.50,91.00,88.50,91.00,58982400,0.49 +1990-01-05,91.50,92.00,89.50,89.62,69564800,0.49 +1990-01-04,89.25,92.00,88.75,91.87,125740800,0.50 +1990-01-03,89.50,90.25,88.50,89.25,113772800,0.48 +1990-01-02,87.25,88.75,86.12,88.75,53033600,0.48 +1989-12-29,85.50,88.25,85.25,87.00,77628800,0.47 +1989-12-28,83.50,85.75,83.00,85.25,123091200,0.46 +1989-12-27,86.00,87.00,85.25,86.25,62796800,0.47 +1989-12-26,85.87,86.37,84.75,85.50,23817600,0.46 +1989-12-22,83.50,86.25,82.75,85.75,54892800,0.46 +1989-12-21,82.75,83.50,81.25,83.50,55020800,0.45 +1989-12-20,81.25,83.00,80.75,82.75,111008000,0.45 +1989-12-19,78.25,80.50,77.75,80.37,70473600,0.44 +1989-12-18,77.25,79.00,77.00,78.25,78435200,0.42 +1989-12-15,78.25,78.50,75.00,77.00,107164800,0.42 +1989-12-14,79.00,79.75,78.00,78.00,61516800,0.42 +1989-12-13,80.75,82.50,79.25,80.00,95788800,0.43 +1989-12-12,83.75,83.75,80.50,82.50,93628800,0.45 +1989-12-11,84.75,84.75,82.00,83.00,103376000,0.45 +1989-12-08,85.50,86.00,83.00,84.75,107625600,0.46 +1989-12-07,84.00,86.25,84.00,85.50,40348800,0.46 +1989-12-06,86.50,87.00,84.50,85.25,57382400,0.46 +1989-12-05,86.75,87.25,86.00,86.75,44048000,0.47 +1989-12-04,85.00,87.25,84.37,86.25,40534400,0.47 +1989-12-01,87.12,87.75,84.87,85.00,52070400,0.46 +1989-11-30,84.00,87.25,83.75,87.00,111209600,0.47 +1989-11-29,87.50,88.00,84.25,85.50,85894400,0.46 +1989-11-28,87.00,88.25,86.25,87.00,56662400,0.47 +1989-11-27,87.50,87.75,85.75,86.75,37280000,0.47 +1989-11-24,88.87,89.00,87.50,87.62,17971200,0.47 +1989-11-22,88.25,88.50,87.50,88.25,38230400,0.48 +1989-11-21,86.50,88.50,86.50,88.12,67116800,0.48 +1989-11-20,86.75,86.75,84.50,86.50,56937600,0.47 +1989-11-17,87.62,88.25,86.75,86.87,31651200,0.47 +1989-11-16,89.00,89.25,86.25,87.50,68054400,0.47 +1989-11-15,86.75,89.25,86.25,88.50,94492800,0.48 +1989-11-14,88.75,89.25,86.00,86.50,95241600,0.47 +1989-11-13,84.50,88.25,83.75,88.12,178905600,0.48 +1989-11-10,84.00,85.00,83.75,84.50,59168000,0.46 +1989-11-09,84.00,84.50,82.50,83.75,111526400,0.45 +1989-11-08,82.12,84.50,82.00,83.25,106486400,0.45 +1989-11-07,77.50,82.37,77.25,81.00,131542400,0.44 +1989-11-06,78.25,79.75,76.50,77.25,88025600,0.42 +1989-11-03,76.50,78.75,76.25,78.25,98755200,0.42 +1989-11-02,80.87,80.87,76.00,76.25,226051200,0.41 +1989-11-01,81.75,83.00,81.75,82.12,74649600,0.44 +1989-10-31,80.25,82.00,80.00,81.75,56563200,0.44 +1989-10-30,78.00,79.75,77.87,79.62,45920000,0.43 +1989-10-27,77.75,78.00,76.25,77.00,97040000,0.42 +1989-10-26,78.75,80.25,77.50,77.75,135459200,0.42 +1989-10-25,81.50,82.75,79.25,79.75,71481600,0.43 +1989-10-24,82.50,82.50,78.75,80.87,157088000,0.44 +1989-10-23,84.75,85.75,82.50,83.12,60912000,0.45 +1989-10-20,84.00,85.50,82.50,85.25,93542400,0.46 +1989-10-19,81.00,86.00,80.25,84.25,179424000,0.46 +1989-10-18,78.87,80.75,78.50,80.50,134784000,0.44 +1989-10-17,75.25,81.50,74.25,78.62,177206400,0.43 +1989-10-16,70.75,76.25,69.00,75.75,253065600,0.41 +1989-10-13,77.75,78.00,73.00,73.50,102643200,0.40 +1989-10-12,80.00,80.50,78.25,78.50,58880000,0.43 +1989-10-11,80.25,80.50,79.00,80.00,106400000,0.43 +1989-10-10,82.50,83.00,80.75,81.25,68297600,0.44 +1989-10-09,79.50,82.00,79.00,81.75,58534400,0.44 +1989-10-06,79.62,80.50,78.25,79.75,87609600,0.43 +1989-10-05,75.50,82.25,75.25,79.25,284758400,0.43 +1989-10-04,69.00,75.75,68.50,75.50,260019200,0.41 +1989-10-03,70.50,70.50,68.87,69.00,68918400,0.37 +1989-10-02,68.25,70.00,68.00,69.62,50428800,0.38 +1989-09-29,68.00,69.50,67.75,68.50,64323200,0.37 +1989-09-28,66.50,68.00,66.50,68.00,41427200,0.37 +1989-09-27,66.25,67.37,65.75,66.62,69235200,0.36 +1989-09-26,67.00,67.50,66.50,67.25,39987200,0.36 +1989-09-25,66.00,68.00,65.50,67.00,69939200,0.36 +1989-09-22,65.50,66.00,64.75,66.00,43948800,0.36 +1989-09-21,65.75,66.75,64.50,65.50,89350400,0.35 +1989-09-20,62.75,65.00,62.25,65.00,72128000,0.35 +1989-09-19,63.75,64.00,62.50,62.50,49203200,0.34 +1989-09-18,62.50,63.50,62.50,63.50,39110400,0.34 +1989-09-15,64.00,64.50,62.50,62.75,89148800,0.34 +1989-09-14,62.75,64.50,62.25,63.75,78163200,0.35 +1989-09-13,61.00,63.50,60.50,62.25,181020800,0.34 +1989-09-12,59.50,61.00,59.25,60.25,67795200,0.33 +1989-09-11,58.75,59.50,58.50,59.38,27907200,0.32 +1989-09-08,58.00,59.50,57.75,59.00,39785600,0.32 +1989-09-07,59.00,59.25,58.00,58.25,41904000,0.32 +1989-09-06,59.75,60.00,58.75,59.25,42377600,0.32 +1989-09-05,59.75,61.00,59.63,60.00,93340800,0.32 +1989-09-01,59.00,60.25,58.75,59.88,44409600,0.32 +1989-08-31,59.50,59.75,58.75,58.75,14198400,0.32 +1989-08-30,58.75,59.63,58.50,59.25,40377600,0.32 +1989-08-29,59.88,60.00,58.38,58.50,54416000,0.32 +1989-08-28,58.75,59.50,58.25,59.13,28540800,0.32 +1989-08-25,58.75,59.25,57.75,58.88,85145600,0.32 +1989-08-24,59.88,60.50,58.25,59.00,92764800,0.32 +1989-08-23,58.63,59.63,58.00,59.25,46092800,0.32 +1989-08-22,56.00,58.75,56.00,58.38,64771200,0.32 +1989-08-21,57.50,57.88,56.00,56.13,32096000,0.30 +1989-08-18,56.50,57.75,56.50,57.50,24912000,0.31 +1989-08-17,55.75,56.75,55.25,56.50,39958400,0.31 +1989-08-16,57.75,58.00,55.50,55.88,46668800,0.30 +1989-08-15,57.00,58.00,56.63,57.50,17856000,0.31 +1989-08-14,57.75,57.75,57.00,57.00,68988800,0.31 +1989-08-11,59.00,59.50,57.75,57.75,61472000,0.31 +1989-08-10,59.00,59.00,58.25,58.50,48339200,0.32 +1989-08-09,58.88,60.00,58.75,58.75,113772800,0.32 +1989-08-08,57.50,59.25,57.50,59.00,110547200,0.32 +1989-08-07,57.75,58.00,57.00,57.75,93571200,0.31 +1989-08-04,54.75,57.50,54.50,57.00,178128000,0.31 +1989-08-03,54.38,55.25,54.25,55.00,27590400,0.30 +1989-08-02,54.00,54.75,54.00,54.25,28368000,0.29 +1989-08-01,54.75,55.25,54.00,54.25,62134400,0.29 +1989-07-31,54.00,55.00,53.75,54.75,33334400,0.30 +1989-07-28,54.00,54.50,53.25,54.25,29216000,0.29 +1989-07-27,53.63,54.00,53.25,53.75,45561600,0.29 +1989-07-26,52.75,53.25,52.00,52.75,123638400,0.29 +1989-07-25,55.00,57.00,51.50,52.00,326028800,0.28 +1989-07-24,54.75,55.75,54.25,55.25,38361600,0.30 +1989-07-21,53.00,56.50,52.75,55.25,99763200,0.30 +1989-07-20,54.25,55.25,53.50,53.50,44524800,0.29 +1989-07-19,54.00,54.50,53.25,54.13,29763200,0.29 +1989-07-18,53.25,54.25,53.25,53.50,42982400,0.29 +1989-07-17,52.75,53.50,52.50,53.25,31289600,0.29 +1989-07-14,53.25,53.50,51.75,52.75,42768000,0.29 +1989-07-13,53.13,53.75,52.50,53.00,33408000,0.29 +1989-07-12,53.00,53.50,52.00,53.25,52156800,0.29 +1989-07-11,54.88,55.50,53.25,53.50,43488000,0.29 +1989-07-10,53.75,55.00,53.50,54.88,27257600,0.30 +1989-07-07,52.75,54.25,52.63,53.50,41456000,0.29 +1989-07-06,55.75,56.00,52.38,52.75,94780800,0.29 +1989-07-05,54.50,55.50,54.00,55.25,26537600,0.30 +1989-07-03,53.13,54.25,53.13,54.00,14688000,0.29 +1989-06-30,52.00,53.50,51.25,53.00,67248000,0.29 +1989-06-29,52.88,52.88,51.25,52.00,77196800,0.28 +1989-06-28,54.00,54.00,52.00,52.75,57456000,0.29 +1989-06-27,54.75,55.25,53.75,53.88,35897600,0.29 +1989-06-26,55.25,55.50,54.25,54.75,30240000,0.30 +1989-06-23,55.50,56.00,55.25,55.38,33536000,0.30 +1989-06-22,55.25,55.50,55.00,55.50,36070400,0.30 +1989-06-21,53.25,56.00,53.25,55.00,80496000,0.30 +1989-06-20,56.50,56.75,54.50,54.50,45804800,0.30 +1989-06-19,57.00,57.00,55.50,56.50,27158400,0.31 +1989-06-16,56.63,57.00,56.25,56.75,47360000,0.31 +1989-06-15,57.75,57.75,56.25,56.75,52112000,0.31 +1989-06-14,57.75,58.00,56.50,57.75,47302400,0.31 +1989-06-13,58.38,58.50,57.25,57.25,40563200,0.31 +1989-06-12,59.75,60.25,58.63,59.00,51680000,0.32 +1989-06-09,59.75,60.13,59.25,59.75,36144000,0.32 +1989-06-08,59.75,60.25,59.50,59.75,29216000,0.32 +1989-06-07,58.75,60.00,58.75,59.75,44928000,0.32 +1989-06-06,56.75,58.63,56.50,58.50,53897600,0.32 +1989-06-05,58.50,58.50,56.50,56.75,61414400,0.31 +1989-06-02,60.13,60.25,58.25,58.25,54041600,0.32 +1989-06-01,60.25,60.75,59.75,60.00,62796800,0.32 +1989-05-31,59.00,61.00,59.00,60.50,80969600,0.33 +1989-05-30,59.00,59.63,58.50,59.00,63907200,0.32 +1989-05-26,58.00,59.00,57.75,58.88,37884800,0.32 +1989-05-25,57.50,58.50,57.00,57.50,33840000,0.31 +1989-05-24,56.13,57.50,55.75,57.50,69363200,0.31 +1989-05-23,58.25,59.00,56.25,56.63,97545600,0.31 +1989-05-22,58.25,59.50,57.75,59.25,74275200,0.32 +1989-05-19,58.13,59.50,58.13,58.25,62566400,0.32 +1989-05-18,57.25,58.63,57.25,58.25,52572800,0.32 +1989-05-17,56.38,58.00,56.38,57.38,89811200,0.31 +1989-05-16,54.75,56.50,54.50,56.25,83433600,0.30 +1989-05-15,54.13,55.00,54.00,54.75,74736000,0.30 +1989-05-12,54.63,55.00,53.50,54.25,71091200,0.29 +1989-05-11,54.25,54.25,53.50,54.00,34400000,0.29 +1989-05-10,53.50,54.75,53.25,54.00,58752000,0.29 +1989-05-09,51.75,53.50,51.50,53.00,54588800,0.29 +1989-05-08,52.00,52.25,51.00,51.50,49001600,0.28 +1989-05-05,53.25,53.25,51.75,52.00,35827200,0.28 +1989-05-04,54.25,54.25,52.25,52.50,37424000,0.28 +1989-05-03,54.00,54.75,54.00,54.00,28857600,0.29 +1989-05-02,54.75,55.00,53.50,54.00,34371200,0.29 +1989-05-01,55.38,56.00,54.25,54.63,33737600,0.30 +1989-04-28,54.75,56.25,53.75,55.88,69782400,0.30 +1989-04-27,54.00,54.88,54.00,54.75,34588800,0.30 +1989-04-26,55.00,55.00,53.63,54.00,44508800,0.29 +1989-04-25,55.50,55.75,54.50,54.75,24896000,0.30 +1989-04-24,55.00,55.50,54.50,55.13,29331200,0.30 +1989-04-21,56.00,56.00,55.00,55.25,58188800,0.30 +1989-04-20,55.00,56.50,54.50,56.00,138800000,0.30 +1989-04-19,55.00,55.75,54.50,54.88,168969600,0.30 +1989-04-18,52.50,53.25,52.00,53.25,69334400,0.29 +1989-04-17,51.25,52.38,50.75,51.50,51638400,0.28 +1989-04-14,49.25,51.25,49.25,50.75,62624000,0.27 +1989-04-13,47.75,50.38,47.50,48.75,92880000,0.26 +1989-04-12,51.75,51.75,47.63,48.13,71020800,0.26 +1989-04-11,51.50,52.00,50.38,51.38,28726400,0.28 +1989-04-10,51.25,52.25,51.25,51.38,28668800,0.28 +1989-04-07,51.25,51.75,51.00,51.25,29446400,0.28 +1989-04-06,50.50,51.50,50.25,51.25,51680000,0.28 +1989-04-05,50.00,50.50,49.75,50.38,19641600,0.27 +1989-04-04,50.25,50.25,49.50,50.00,25027200,0.27 +1989-04-03,50.00,50.75,49.63,50.25,35049600,0.27 +1989-03-31,50.00,50.25,49.50,49.88,29734400,0.27 +1989-03-30,49.75,50.00,49.13,49.88,46742400,0.27 +1989-03-29,49.75,49.75,49.25,49.50,30009600,0.27 +1989-03-28,50.25,50.50,49.25,49.75,70803200,0.27 +1989-03-27,50.00,50.63,49.50,49.75,75542400,0.27 +1989-03-23,48.75,50.25,48.75,50.25,87811200,0.27 +1989-03-22,49.50,49.75,48.50,49.00,167024000,0.27 +1989-03-21,46.75,50.00,46.25,49.88,224467200,0.27 +1989-03-20,46.38,46.50,45.75,46.50,238995200,0.25 +1989-03-17,50.25,50.50,46.00,46.50,245577600,0.25 +1989-03-16,50.75,51.50,50.50,51.25,102886400,0.28 +1989-03-15,52.75,52.75,50.25,50.25,104889600,0.27 +1989-03-14,53.25,53.25,52.25,52.75,63718400,0.29 +1989-03-13,52.00,52.75,51.75,52.75,60204800,0.29 +1989-03-10,51.50,52.50,51.00,51.75,66902400,0.28 +1989-03-09,52.75,52.75,51.50,51.75,123305600,0.28 +1989-03-08,53.75,54.50,52.38,52.50,253612800,0.28 +1989-03-07,59.75,60.00,53.25,53.50,788688000,0.29 +1989-03-06,61.75,62.25,61.00,62.00,56633600,0.34 +1989-03-03,60.75,62.00,60.50,61.75,68947200,0.33 +1989-03-02,59.25,61.00,59.25,60.75,92304000,0.33 +1989-03-01,60.00,60.25,59.25,59.25,59888000,0.32 +1989-02-28,60.00,60.25,59.00,59.50,43443200,0.32 +1989-02-27,58.75,60.25,58.50,59.75,68787200,0.32 +1989-02-24,60.25,60.75,58.75,58.75,76016000,0.32 +1989-02-23,60.25,60.75,59.25,60.38,75945600,0.33 +1989-02-22,61.50,61.75,60.00,60.00,95513600,0.32 +1989-02-21,62.25,62.75,61.50,61.75,33753600,0.33 +1989-02-17,63.00,63.25,62.25,62.50,29692800,0.34 +1989-02-16,62.50,63.50,61.25,62.75,61385600,0.34 +1989-02-15,60.50,62.25,60.25,62.25,81936000,0.34 +1989-02-14,61.88,62.25,60.00,60.25,62956800,0.33 +1989-02-13,61.50,62.00,61.00,61.25,94073600,0.33 +1989-02-10,63.00,63.50,61.63,61.88,129036800,0.34 +1989-02-09,62.00,64.75,61.75,63.75,199036800,0.35 +1989-02-08,62.00,64.00,61.50,62.50,133315200,0.34 +1989-02-07,60.63,62.50,60.50,62.13,127094400,0.34 +1989-02-06,60.75,61.00,59.75,60.50,87580800,0.33 +1989-02-03,60.50,62.50,60.00,61.00,91324800,0.33 +1989-02-02,59.50,63.00,59.25,60.88,180028800,0.33 +1989-02-01,59.50,59.75,59.00,59.25,131212800,0.32 +1989-01-31,59.00,60.25,58.50,59.63,125091200,0.32 +1989-01-30,55.50,58.75,55.25,58.50,110086400,0.32 +1989-01-27,54.13,56.50,53.75,55.38,166419200,0.30 +1989-01-26,52.63,54.50,52.50,54.25,87132800,0.29 +1989-01-25,53.00,53.25,52.50,53.00,49046400,0.29 +1989-01-24,53.00,53.50,52.50,52.75,56217600,0.29 +1989-01-23,54.00,54.00,52.88,53.00,52227200,0.29 +1989-01-20,53.50,54.38,53.25,54.13,61027200,0.29 +1989-01-19,52.25,53.75,52.25,53.50,84297600,0.29 +1989-01-18,51.75,51.75,50.25,51.50,63632000,0.28 +1989-01-17,52.63,52.88,51.25,51.50,41744000,0.28 +1989-01-16,53.25,54.13,52.75,53.13,27532800,0.29 +1989-01-13,52.50,53.25,52.50,53.00,35568000,0.29 +1989-01-12,52.25,53.75,52.25,52.50,54588800,0.28 +1989-01-11,51.88,52.50,51.50,52.50,48297600,0.28 +1989-01-10,52.25,52.50,51.75,52.00,54128000,0.28 +1989-01-09,53.00,53.25,52.13,52.50,46006400,0.28 +1989-01-06,53.50,53.75,53.00,53.00,59052800,0.29 +1989-01-05,54.75,54.75,53.25,53.38,47244800,0.29 +1989-01-04,53.50,54.88,53.50,54.25,53897600,0.29 +1989-01-03,53.50,53.75,52.75,53.63,51824000,0.29 +1988-12-30,53.50,54.25,53.25,53.25,63820800,0.29 +1988-12-29,52.00,53.50,52.00,53.25,38275200,0.29 +1988-12-28,52.00,52.25,51.75,52.25,21267200,0.28 +1988-12-27,52.00,52.50,51.75,51.75,30771200,0.28 +1988-12-23,51.75,52.00,51.50,52.00,17120000,0.28 +1988-12-22,52.50,53.00,51.75,52.00,74592000,0.28 +1988-12-21,51.50,52.50,51.25,52.25,46438400,0.28 +1988-12-20,51.38,52.50,51.00,51.25,92188800,0.28 +1988-12-19,50.63,51.50,50.50,50.75,83532800,0.27 +1988-12-16,48.75,50.25,48.75,49.75,51795200,0.27 +1988-12-15,49.00,49.25,48.50,49.00,23196800,0.27 +1988-12-14,47.75,48.75,47.50,48.38,28006400,0.26 +1988-12-13,47.25,47.75,47.25,47.75,39168000,0.26 +1988-12-12,48.75,49.00,47.38,47.38,38892800,0.26 +1988-12-09,48.75,49.25,48.50,49.00,22304000,0.27 +1988-12-08,49.25,49.50,48.75,49.00,40176000,0.27 +1988-12-07,49.50,50.00,49.13,49.25,30886400,0.27 +1988-12-06,49.50,49.75,49.00,49.75,44364800,0.27 +1988-12-05,49.75,50.50,48.75,49.50,70140800,0.27 +1988-12-02,48.50,50.25,48.50,49.75,91497600,0.27 +1988-12-01,47.50,49.50,47.00,49.00,82006400,0.27 +1988-11-30,47.25,47.75,47.25,47.25,35193600,0.26 +1988-11-29,47.00,47.50,46.75,47.50,21872000,0.26 +1988-11-28,46.25,47.50,46.25,47.00,58736000,0.25 +1988-11-25,46.25,46.50,45.75,46.38,11462400,0.25 +1988-11-23,46.25,47.00,46.00,46.88,56547200,0.25 +1988-11-22,46.00,46.50,45.50,46.00,30310400,0.25 +1988-11-21,46.00,46.25,45.25,46.00,47100800,0.25 +1988-11-18,46.25,46.75,45.75,46.63,34428800,0.25 +1988-11-17,46.25,46.75,45.75,46.00,65865600,0.25 +1988-11-16,47.13,47.25,45.50,46.25,199008000,0.25 +1988-11-15,48.50,48.50,46.50,47.00,93900800,0.25 +1988-11-14,48.00,48.75,47.50,48.50,34329600,0.26 +1988-11-11,48.50,49.00,47.50,47.63,54934400,0.26 +1988-11-10,49.75,50.50,49.00,49.00,78796800,0.27 +1988-11-09,48.00,50.00,47.75,49.75,124732800,0.27 +1988-11-08,47.25,49.00,47.00,48.63,56604800,0.26 +1988-11-07,46.50,47.00,46.00,46.75,55065600,0.25 +1988-11-04,46.50,47.75,46.50,46.50,106601600,0.25 +1988-11-03,47.25,47.75,46.13,47.25,118339200,0.26 +1988-11-02,48.75,48.75,46.75,47.25,221801600,0.26 +1988-11-01,49.00,49.75,48.75,48.75,53280000,0.26 +1988-10-31,49.25,49.25,48.50,49.00,41283200,0.27 +1988-10-28,49.25,49.75,48.50,49.50,46540800,0.27 +1988-10-27,49.25,49.50,47.75,49.50,114336000,0.27 +1988-10-26,50.25,50.50,48.50,49.75,157420800,0.27 +1988-10-25,52.00,52.25,50.00,50.50,74547200,0.27 +1988-10-24,53.25,53.25,51.88,52.00,28627200,0.28 +1988-10-21,53.00,53.50,52.50,53.00,24262400,0.29 +1988-10-20,52.75,54.00,52.75,53.50,73296000,0.29 +1988-10-19,53.50,53.75,52.25,53.25,80681600,0.29 +1988-10-18,51.75,52.75,51.25,52.50,37222400,0.28 +1988-10-17,51.25,52.50,51.25,52.00,25673600,0.28 +1988-10-14,52.00,52.25,51.00,51.25,56764800,0.28 +1988-10-13,50.38,52.25,50.25,51.50,82467200,0.28 +1988-10-12,49.50,51.75,49.00,50.63,137532800,0.27 +1988-10-11,49.75,50.50,49.00,49.75,65952000,0.27 +1988-10-10,50.00,50.00,47.75,49.25,106358400,0.27 +1988-10-07,50.00,50.25,47.88,49.75,208064000,0.27 +1988-10-06,50.25,50.75,50.00,50.00,33609600,0.27 +1988-10-05,51.25,51.25,50.00,50.25,67088000,0.27 +1988-10-04,51.50,52.00,50.88,51.13,29260800,0.28 +1988-10-03,51.25,51.75,50.50,51.38,41097600,0.28 +1988-09-30,52.75,53.00,51.75,52.25,37251200,0.28 +1988-09-29,52.75,53.50,52.50,53.00,56460800,0.29 +1988-09-28,52.25,53.00,51.75,53.00,25516800,0.29 +1988-09-27,52.00,52.25,51.50,52.00,35366400,0.28 +1988-09-26,53.75,54.00,51.75,52.38,50211200,0.28 +1988-09-23,54.50,54.50,53.75,53.75,35091200,0.29 +1988-09-22,54.00,55.00,53.75,54.50,59686400,0.30 +1988-09-21,53.50,54.00,53.50,53.75,16054400,0.29 +1988-09-20,52.00,53.25,51.75,53.25,53625600,0.29 +1988-09-19,52.50,52.50,51.00,51.75,44697600,0.28 +1988-09-16,52.25,52.50,51.75,52.00,48700800,0.28 +1988-09-15,54.00,54.25,52.00,52.25,72921600,0.28 +1988-09-14,54.88,55.25,53.75,54.00,79212800,0.29 +1988-09-13,53.25,54.25,52.75,54.00,40608000,0.29 +1988-09-12,53.75,55.00,53.50,53.75,43257600,0.29 +1988-09-09,51.75,54.75,51.50,54.00,111123200,0.29 +1988-09-08,51.50,53.25,51.25,52.00,69206400,0.28 +1988-09-07,52.25,52.75,50.75,51.75,72115200,0.28 +1988-09-06,51.50,52.50,51.25,52.00,67750400,0.28 +1988-09-02,49.75,51.75,49.50,51.50,115328000,0.28 +1988-09-01,49.50,49.75,48.00,48.88,82380800,0.26 +1988-08-31,51.50,51.75,49.25,50.00,71884800,0.27 +1988-08-30,52.00,52.25,51.00,51.25,20966400,0.28 +1988-08-29,52.00,52.50,51.75,52.13,35033600,0.28 +1988-08-26,50.75,51.75,50.75,51.38,24451200,0.28 +1988-08-25,50.25,51.50,50.00,50.75,72633600,0.27 +1988-08-24,49.50,51.63,49.25,51.50,102585600,0.28 +1988-08-23,48.25,49.75,47.75,49.38,88313600,0.27 +1988-08-22,50.25,50.50,47.75,48.00,110172800,0.26 +1988-08-19,52.75,53.00,50.25,50.50,67376000,0.27 +1988-08-18,52.75,53.25,52.50,52.75,32025600,0.29 +1988-08-17,52.50,53.88,51.38,52.50,59110400,0.28 +1988-08-16,50.50,52.75,50.25,52.50,90876800,0.28 +1988-08-15,52.00,52.25,50.00,50.75,41081600,0.27 +1988-08-12,51.75,52.25,51.50,52.00,58262400,0.28 +1988-08-11,51.00,52.00,50.00,51.75,123104000,0.28 +1988-08-10,51.25,51.75,50.00,50.50,113168000,0.27 +1988-08-09,53.00,53.25,51.00,51.75,138828800,0.28 +1988-08-08,53.75,53.75,52.75,53.25,148320000,0.29 +1988-08-05,55.50,55.50,51.75,53.50,201600000,0.29 +1988-08-04,56.25,56.50,55.50,55.50,53494400,0.30 +1988-08-03,57.25,57.50,55.50,56.25,91987200,0.30 +1988-08-02,58.50,58.75,56.75,57.50,65475200,0.31 +1988-08-01,59.75,60.00,58.50,58.50,51824000,0.32 +1988-07-29,58.50,60.00,58.25,59.50,59385600,0.32 +1988-07-28,57.50,58.50,57.00,58.25,57945600,0.32 +1988-07-27,58.25,59.00,57.50,57.63,68140800,0.31 +1988-07-26,58.00,59.00,56.75,58.00,228960000,0.31 +1988-07-25,62.00,62.50,60.25,60.50,52704000,0.33 +1988-07-22,60.75,62.50,60.50,61.75,68816000,0.33 +1988-07-21,63.75,64.00,60.50,61.00,128937600,0.33 +1988-07-20,66.50,66.50,63.75,64.00,111094400,0.35 +1988-07-19,67.25,67.50,65.75,66.00,36460800,0.36 +1988-07-18,67.25,67.75,67.00,67.50,20102400,0.37 +1988-07-15,67.00,67.25,66.25,67.00,31577600,0.36 +1988-07-14,66.75,67.00,66.00,67.00,34848000,0.36 +1988-07-13,65.50,66.75,65.00,66.75,57427200,0.36 +1988-07-12,67.00,67.25,64.75,65.62,90000000,0.36 +1988-07-11,68.75,68.75,66.75,66.75,65763200,0.36 +1988-07-08,68.00,68.75,67.75,68.50,40089600,0.37 +1988-07-07,68.25,69.00,67.75,68.75,68428800,0.37 +1988-07-06,69.75,70.50,68.50,68.75,89379200,0.37 +1988-07-05,67.50,69.75,67.00,69.62,48096000,0.38 +1988-07-01,67.00,68.00,66.75,68.00,42940800,0.37 +1988-06-30,66.25,67.00,66.00,67.00,31548800,0.36 +1988-06-29,66.00,66.50,65.50,65.75,49808000,0.36 +1988-06-28,64.00,66.00,63.75,65.75,32140800,0.36 +1988-06-27,65.25,65.25,64.00,64.00,23628800,0.35 +1988-06-24,66.00,66.25,65.00,65.25,28553600,0.35 +1988-06-23,67.00,67.25,65.75,66.00,41052800,0.36 +1988-06-22,65.00,67.50,64.37,67.00,127324800,0.36 +1988-06-21,62.50,64.00,62.50,64.00,39715200,0.35 +1988-06-20,62.75,63.00,62.00,62.75,28137600,0.34 +1988-06-17,63.50,64.25,62.75,63.00,42105600,0.34 +1988-06-16,63.25,63.75,63.00,63.50,73712000,0.34 +1988-06-15,62.75,64.00,62.50,64.00,51033600,0.35 +1988-06-14,63.00,63.50,62.75,63.00,60377600,0.34 +1988-06-13,62.50,63.00,62.25,62.38,31116800,0.34 +1988-06-10,61.75,62.75,61.25,62.25,45014400,0.34 +1988-06-09,62.25,62.88,61.63,61.75,69264000,0.33 +1988-06-08,60.75,62.50,60.75,62.00,66281600,0.34 +1988-06-07,61.00,62.00,60.38,61.00,82166400,0.33 +1988-06-06,59.50,61.00,59.25,60.75,81747200,0.33 +1988-06-03,59.00,59.75,58.75,59.50,34832000,0.32 +1988-06-02,59.50,60.00,58.75,59.00,63228800,0.32 +1988-06-01,58.25,60.00,57.75,59.25,95788800,0.32 +1988-05-31,55.50,58.25,55.25,58.00,44048000,0.31 +1988-05-27,56.25,56.25,55.50,55.50,33148800,0.30 +1988-05-26,56.00,57.00,55.75,56.13,43385600,0.30 +1988-05-25,56.50,57.00,55.50,55.75,53580800,0.30 +1988-05-24,55.00,56.75,54.75,56.75,55324800,0.31 +1988-05-23,56.25,56.50,54.50,55.00,50227200,0.30 +1988-05-20,57.25,57.75,56.00,56.25,42521600,0.30 +1988-05-19,56.00,57.25,55.75,57.00,57728000,0.31 +1988-05-18,58.00,58.38,56.50,56.75,81372800,0.31 +1988-05-17,59.00,59.25,58.00,58.00,70428800,0.31 +1988-05-16,56.75,58.88,56.75,58.25,59788800,0.32 +1988-05-13,56.50,57.00,56.25,56.75,17913600,0.31 +1988-05-12,55.75,56.50,55.50,56.00,26409600,0.30 +1988-05-11,56.50,56.50,55.00,55.75,59484800,0.30 +1988-05-10,57.25,57.63,56.25,57.00,46828800,0.31 +1988-05-09,57.25,58.25,56.75,57.25,34790400,0.31 +1988-05-06,56.75,58.00,56.75,57.25,43977600,0.31 +1988-05-05,56.75,57.25,56.25,57.00,24883200,0.31 +1988-05-04,56.75,57.75,56.00,57.13,75152000,0.31 +1988-05-03,55.25,57.00,55.25,56.50,62739200,0.31 +1988-05-02,54.50,55.25,53.50,55.00,49260800,0.30 +1988-04-29,55.00,55.00,54.25,54.50,64771200,0.30 +1988-04-28,55.50,55.75,55.00,55.38,28467200,0.30 +1988-04-27,55.75,56.00,54.25,55.50,47894400,0.30 +1988-04-26,55.75,56.50,55.25,55.75,46454400,0.30 +1988-04-25,55.25,55.75,54.75,55.13,23385600,0.30 +1988-04-22,54.50,55.75,54.50,55.25,33926400,0.30 +1988-04-21,55.00,55.50,53.75,54.38,63977600,0.29 +1988-04-20,54.25,55.00,53.75,54.50,65404800,0.30 +1988-04-19,54.75,57.00,54.00,54.25,75772800,0.29 +1988-04-18,54.00,55.25,53.75,54.75,48051200,0.30 +1988-04-15,53.25,55.00,52.75,54.25,114220800,0.29 +1988-04-14,55.50,56.50,52.75,53.00,110028800,0.29 +1988-04-13,56.00,57.00,55.50,57.00,42204800,0.31 +1988-04-12,57.25,57.75,55.00,55.75,52444800,0.30 +1988-04-11,58.50,58.50,57.00,57.50,40406400,0.31 +1988-04-08,57.50,58.50,57.13,58.00,57974400,0.31 +1988-04-07,58.25,58.75,57.25,57.25,74921600,0.31 +1988-04-06,56.00,58.25,55.75,58.13,75296000,0.31 +1988-04-05,55.50,56.00,54.50,56.00,41760000,0.30 +1988-04-04,56.00,56.50,54.50,55.25,47721600,0.30 +1988-03-31,54.50,56.50,54.50,56.50,50256000,0.31 +1988-03-30,56.75,57.00,54.25,54.75,100713600,0.30 +1988-03-29,57.25,58.25,56.25,56.50,80710400,0.31 +1988-03-28,55.50,57.00,55.00,56.88,67145600,0.31 +1988-03-25,56.75,57.63,55.75,56.13,47331200,0.30 +1988-03-24,58.75,58.75,55.75,56.50,159840000,0.31 +1988-03-23,61.75,62.38,58.75,59.00,151200000,0.32 +1988-03-22,58.75,60.75,58.75,60.25,115833600,0.33 +1988-03-21,58.50,58.75,56.75,58.75,198720000,0.32 +1988-03-18,63.75,64.00,58.25,58.25,169920000,0.32 +1988-03-17,65.00,65.50,63.75,63.88,125308800,0.35 +1988-03-16,62.75,64.75,62.00,64.75,54547200,0.35 +1988-03-15,63.75,63.75,62.25,62.50,43760000,0.34 +1988-03-14,62.25,63.75,61.50,63.63,46281600,0.34 +1988-03-11,62.50,63.00,61.00,62.50,84297600,0.34 +1988-03-10,64.25,65.00,62.38,62.75,97948800,0.34 +1988-03-09,63.50,64.50,63.25,64.00,81734400,0.35 +1988-03-08,63.00,64.75,62.75,63.88,96896000,0.35 +1988-03-07,61.00,62.75,60.75,62.63,78003200,0.34 +1988-03-04,61.00,61.25,59.75,60.75,68355200,0.33 +1988-03-03,60.00,61.50,59.75,61.00,83664000,0.33 +1988-03-02,59.00,60.75,58.75,59.50,67894400,0.32 +1988-03-01,59.75,60.00,58.50,59.00,43299200,0.32 +1988-02-29,58.50,59.50,58.00,59.38,39324800,0.32 +1988-02-26,58.25,58.75,57.25,58.25,29923200,0.32 +1988-02-25,59.75,60.50,57.88,58.13,61558400,0.31 +1988-02-24,59.50,60.75,59.50,59.88,79558400,0.32 +1988-02-23,58.75,60.00,58.75,59.50,91728000,0.32 +1988-02-22,58.75,59.00,58.00,58.75,52227200,0.32 +1988-02-19,58.25,58.75,57.75,58.75,53164800,0.32 +1988-02-18,57.25,59.00,57.00,58.00,84153600,0.31 +1988-02-17,58.00,58.75,57.25,57.50,101318400,0.31 +1988-02-16,55.00,57.75,54.50,57.50,67334400,0.31 +1988-02-12,54.75,56.25,54.50,55.25,80220800,0.30 +1988-02-11,54.00,54.75,53.75,54.75,69436800,0.30 +1988-02-10,53.00,54.00,52.50,53.75,77024000,0.29 +1988-02-09,52.25,53.00,52.00,52.75,49939200,0.29 +1988-02-08,50.75,52.50,50.75,51.75,72876800,0.28 +1988-02-05,52.00,53.50,51.25,51.50,94102400,0.28 +1988-02-04,53.00,53.25,49.75,51.00,114710400,0.28 +1988-02-03,55.75,55.75,52.25,52.75,75801600,0.29 +1988-02-02,55.25,56.00,54.75,55.75,60752000,0.30 +1988-02-01,56.75,57.00,55.00,55.25,48729600,0.30 +1988-01-29,56.50,57.00,54.50,55.75,66700800,0.30 +1988-01-28,56.00,56.75,56.00,56.50,29318400,0.31 +1988-01-27,54.75,56.25,54.75,55.75,100409600,0.30 +1988-01-26,55.00,55.88,54.25,54.50,43558400,0.30 +1988-01-25,54.25,56.25,54.25,55.75,75497600,0.30 +1988-01-22,55.63,56.13,52.75,53.88,75296000,0.29 +1988-01-21,54.25,56.25,54.25,55.00,125107200,0.30 +1988-01-20,56.75,57.25,52.50,54.00,208800000,0.29 +1988-01-19,56.00,58.25,55.75,57.25,47417600,0.31 +1988-01-18,58.00,58.00,56.25,57.25,30038400,0.31 +1988-01-15,59.00,59.25,57.75,57.75,92172800,0.31 +1988-01-14,57.25,58.00,56.00,56.25,40608000,0.30 +1988-01-13,56.00,58.50,54.75,56.75,96147200,0.31 +1988-01-12,58.00,58.50,54.25,56.75,168480000,0.31 +1988-01-11,55.75,58.00,54.75,57.88,143568000,0.31 +1988-01-08,60.25,61.75,55.63,56.00,145440000,0.30 +1988-01-07,58.00,60.63,57.50,60.50,90675200,0.33 +1988-01-06,57.25,59.75,57.00,58.50,121680000,0.32 +1988-01-05,57.25,58.00,56.50,57.00,155520000,0.31 +1988-01-04,54.75,56.50,54.50,56.00,110345600,0.30 +1987-12-31,55.25,55.75,53.75,54.25,61545600,0.29 +1987-12-30,54.50,56.00,54.25,55.75,70704000,0.30 +1987-12-29,51.25,55.00,50.50,54.50,79459200,0.30 +1987-12-28,53.00,53.25,50.00,51.25,50716800,0.28 +1987-12-24,53.25,53.75,53.00,53.25,12672000,0.29 +1987-12-23,53.25,53.75,52.25,53.25,60710400,0.29 +1987-12-22,51.50,53.00,50.00,52.50,41772800,0.28 +1987-12-21,52.50,53.50,50.75,51.50,51161600,0.28 +1987-12-18,52.50,53.75,52.00,52.00,52486400,0.28 +1987-12-17,54.75,54.75,51.75,52.00,94016000,0.28 +1987-12-16,50.50,54.75,50.25,54.25,105536000,0.29 +1987-12-15,51.25,51.88,50.00,51.25,112217600,0.28 +1987-12-14,48.00,51.00,47.75,50.75,95110400,0.27 +1987-12-11,47.75,48.50,46.75,48.00,72473600,0.26 +1987-12-10,45.50,49.50,44.25,47.50,165600000,0.26 +1987-12-09,47.25,48.25,46.00,46.25,83792000,0.25 +1987-12-08,43.25,47.50,43.00,47.50,112521600,0.26 +1987-12-07,43.00,43.75,42.25,43.25,66211200,0.23 +1987-12-04,40.25,42.38,40.00,42.00,121750400,0.23 +1987-12-03,44.25,44.75,40.25,40.38,127670400,0.22 +1987-12-02,43.50,44.75,42.75,44.00,68515200,0.24 +1987-12-01,44.50,45.75,43.00,43.75,73539200,0.24 +1987-11-30,44.25,45.00,40.50,44.75,164160000,0.24 +1987-11-27,46.00,46.25,45.00,45.25,18316800,0.25 +1987-11-25,47.50,47.75,46.00,46.00,32153600,0.25 +1987-11-24,48.50,49.00,45.50,47.50,72230400,0.26 +1987-11-23,47.25,48.75,47.00,47.75,44640000,0.26 +1987-11-20,45.50,47.75,44.75,47.50,82467200,0.26 +1987-11-19,48.25,48.50,46.00,46.25,75024000,0.25 +1987-11-18,47.50,48.00,45.00,48.00,89308800,0.26 +1987-11-17,46.75,47.50,45.25,46.75,69321600,0.25 +1987-11-16,48.75,49.75,47.50,47.75,59472000,0.26 +1987-11-13,50.00,50.25,48.25,48.25,58492800,0.26 +1987-11-12,50.75,52.00,49.00,50.00,99171200,0.27 +1987-11-11,47.50,49.25,47.25,49.00,54617600,0.27 +1987-11-10,46.50,48.50,45.50,47.00,91164800,0.25 +1987-11-09,46.75,47.50,45.50,47.00,86585600,0.25 +1987-11-06,50.25,50.50,47.00,47.50,75353600,0.26 +1987-11-05,49.00,51.25,48.75,50.50,81430400,0.27 +1987-11-04,47.00,50.75,46.00,48.75,95340800,0.26 +1987-11-03,49.25,50.00,43.75,48.00,116150400,0.26 +1987-11-02,49.25,51.00,48.50,50.25,84771200,0.27 +1987-10-30,49.75,52.25,48.50,49.75,168480000,0.27 +1987-10-29,41.25,48.75,41.25,47.75,167040000,0.26 +1987-10-28,40.00,42.50,38.50,41.25,149760000,0.22 +1987-10-27,40.75,43.00,39.25,41.25,234720000,0.22 +1987-10-26,46.50,48.00,37.25,39.25,148320000,0.21 +1987-10-23,52.50,53.00,47.50,48.25,112764800,0.26 +1987-10-22,56.75,58.00,51.00,53.25,223200000,0.29 +1987-10-21,51.75,60.50,50.00,56.63,262080000,0.31 +1987-10-20,46.00,52.00,43.00,48.00,324000000,0.26 +1987-10-19,61.50,63.50,45.00,45.25,146880000,0.25 +1987-10-16,70.50,74.50,64.25,64.75,210240000,0.35 +1987-10-15,70.50,72.75,70.00,70.50,128822400,0.38 +1987-10-14,73.25,74.75,70.75,71.25,114220800,0.39 +1987-10-13,72.25,74.00,71.00,73.25,96809600,0.40 +1987-10-12,72.00,73.00,69.00,71.50,117187200,0.39 +1987-10-09,72.25,75.25,71.75,71.75,93888000,0.39 +1987-10-08,73.25,74.25,69.50,72.00,96940800,0.39 +1987-10-07,74.00,75.25,71.50,73.00,125638400,0.40 +1987-10-06,79.00,79.25,73.37,73.75,203040000,0.40 +1987-10-05,73.50,79.00,73.50,79.00,184320000,0.43 +1987-10-02,69.00,72.75,68.75,72.50,131644800,0.39 +1987-10-01,66.25,68.75,66.00,68.50,127222400,0.37 +1987-09-30,64.00,66.62,64.00,66.25,85680000,0.36 +1987-09-29,64.50,65.25,63.63,64.25,57411200,0.35 +1987-09-28,62.00,65.25,61.75,64.00,95542400,0.35 +1987-09-25,61.50,65.00,61.25,62.00,82454400,0.34 +1987-09-24,60.00,63.25,60.00,61.25,118438400,0.33 +1987-09-23,57.75,60.38,57.75,60.25,107696000,0.33 +1987-09-22,53.50,57.75,53.00,57.25,82006400,0.31 +1987-09-21,53.50,57.25,53.00,53.50,85548800,0.29 +1987-09-18,116.00,116.00,114.00,115.00,31651200,0.31 +1987-09-17,117.00,117.50,113.75,116.00,69436800,0.31 +1987-09-16,118.00,120.00,116.75,116.75,57715200,0.32 +1987-09-15,119.50,119.50,116.25,117.87,39052800,0.32 +1987-09-14,116.50,120.00,116.50,119.25,94464000,0.32 +1987-09-11,114.50,116.50,114.00,116.25,41040000,0.31 +1987-09-10,113.25,115.75,113.00,114.50,58176000,0.31 +1987-09-09,112.00,114.00,111.50,112.75,60710400,0.31 +1987-09-08,111.75,112.00,108.25,111.50,96336000,0.30 +1987-09-04,115.25,115.50,111.75,112.00,48355200,0.30 +1987-09-03,116.25,117.75,113.75,115.25,70934400,0.31 +1987-09-02,112.50,115.25,112.25,115.00,78393600,0.31 +1987-09-01,118.00,118.75,113.00,113.50,93859200,0.31 +1987-08-31,119.75,120.25,116.75,118.75,84326400,0.32 +1987-08-28,116.00,121.25,116.00,120.25,114796800,0.33 +1987-08-27,115.50,116.25,114.25,115.75,72432000,0.31 +1987-08-26,114.75,118.00,114.25,115.50,114105600,0.31 +1987-08-25,112.75,116.75,111.50,114.75,185961600,0.31 +1987-08-24,107.00,112.25,105.50,111.75,97747200,0.30 +1987-08-21,105.00,108.25,105.00,107.00,68976000,0.29 +1987-08-20,102.50,105.75,102.50,105.25,82051200,0.29 +1987-08-19,102.50,102.75,100.50,102.50,48902400,0.28 +1987-08-18,103.50,104.00,101.50,102.50,46944000,0.28 +1987-08-17,103.50,104.25,103.00,104.25,33667200,0.28 +1987-08-14,103.00,103.75,102.50,103.50,50832000,0.28 +1987-08-13,100.00,104.50,100.00,103.00,80640000,0.28 +1987-08-12,101.50,101.75,100.00,100.00,42364800,0.27 +1987-08-11,104.00,104.50,101.00,101.50,68544000,0.27 +1987-08-10,103.75,104.00,102.50,103.50,56448000,0.28 +1987-08-07,101.00,104.50,100.75,103.50,171014400,0.28 +1987-08-06,97.50,101.62,97.50,101.00,152553600,0.27 +1987-08-05,94.00,98.50,93.75,97.25,211190400,0.26 +1987-08-04,91.75,93.75,91.75,93.75,135072000,0.25 +1987-08-03,94.00,94.50,91.25,91.75,116352000,0.25 +1987-07-31,96.50,96.50,92.00,94.00,186624000,0.25 +1987-07-30,99.25,99.25,96.00,97.00,55555200,0.26 +1987-07-29,99.50,99.75,97.75,99.25,27676800,0.27 +1987-07-28,100.25,101.75,99.25,99.50,38160000,0.27 +1987-07-27,98.50,99.75,97.00,99.75,41817600,0.27 +1987-07-24,98.00,99.50,97.75,98.50,57744000,0.27 +1987-07-23,100.00,100.00,94.00,97.75,148492800,0.26 +1987-07-22,99.25,100.50,98.50,100.00,53366400,0.27 +1987-07-21,99.50,101.00,98.50,99.25,36547200,0.27 +1987-07-20,102.00,102.00,99.25,99.50,42019200,0.27 +1987-07-17,102.00,104.00,101.75,102.25,51264000,0.28 +1987-07-16,102.50,103.00,100.00,102.00,72979200,0.28 +1987-07-15,105.00,105.75,102.25,102.25,96768000,0.28 +1987-07-14,100.00,105.25,99.50,105.00,152812800,0.28 +1987-07-13,97.00,99.50,96.00,99.25,48326400,0.27 +1987-07-10,95.25,97.50,94.00,97.00,75830400,0.26 +1987-07-09,93.75,98.00,93.25,95.75,92707200,0.26 +1987-07-08,91.00,94.75,88.50,93.25,193449600,0.25 +1987-07-07,97.25,97.25,89.50,90.25,197078400,0.24 +1987-07-06,99.75,101.00,97.00,97.50,65491200,0.26 +1987-07-02,102.75,102.75,98.75,100.00,56880000,0.27 +1987-07-01,101.75,103.25,101.50,102.50,21945600,0.28 +1987-06-30,104.50,104.75,101.75,102.00,38332800,0.28 +1987-06-29,104.75,104.75,102.50,104.25,25632000,0.28 +1987-06-26,104.75,105.25,103.75,104.75,21945600,0.28 +1987-06-25,104.50,105.00,103.50,104.50,44035200,0.28 +1987-06-24,103.25,106.00,103.25,104.75,82684800,0.28 +1987-06-23,103.75,103.75,100.50,102.75,100771200,0.28 +1987-06-22,105.00,105.00,103.00,103.75,87436800,0.28 +1987-06-19,105.25,106.25,104.00,104.50,40809600,0.28 +1987-06-18,103.50,105.00,102.00,104.87,56188800,0.28 +1987-06-17,100.75,104.00,100.75,103.75,71078400,0.28 +1987-06-16,98.25,101.50,98.00,100.25,73526400,0.27 +1987-06-15,98.25,99.75,96.25,98.25,125222400,0.27 +1987-06-12,97.50,101.50,97.25,98.25,196156800,0.27 +1987-06-11,105.25,105.75,97.25,97.50,268704000,0.26 +1987-06-10,109.00,109.50,101.25,103.50,176256000,0.28 +1987-06-09,109.75,110.00,108.50,109.00,25833600,0.30 +1987-06-08,109.25,110.00,107.50,109.75,111571200,0.30 +1987-06-05,112.50,113.00,107.00,109.25,59270400,0.30 +1987-06-04,113.25,113.25,111.75,112.50,20390400,0.30 +1987-06-03,113.00,114.75,113.00,113.25,21628800,0.31 +1987-06-02,113.00,114.75,111.00,112.50,51552000,0.30 +1987-06-01,115.25,115.25,113.00,113.00,30326400,0.31 +1987-05-29,116.25,118.25,115.00,115.25,80380800,0.31 +1987-05-28,109.50,116.50,109.25,116.25,108662400,0.31 +1987-05-27,109.50,112.00,109.00,109.50,48758400,0.30 +1987-05-26,108.25,110.00,108.00,109.50,46886400,0.30 +1987-05-22,111.50,112.00,107.75,108.25,64627200,0.29 +1987-05-21,109.75,112.75,109.75,111.50,93312000,0.30 +1987-05-20,110.75,110.75,107.25,109.50,228355200,0.30 +1987-05-19,115.25,115.25,111.25,111.25,78336000,0.30 +1987-05-18,119.25,119.25,112.00,115.25,172598400,0.31 +1987-05-15,122.50,122.50,119.25,119.25,84326400,0.32 +1987-05-14,121.75,125.00,121.75,122.75,59961600,0.33 +1987-05-13,119.50,122.25,119.50,121.75,73382400,0.33 +1987-05-12,123.00,124.25,117.00,118.75,148464000,0.32 +1987-05-11,126.50,126.50,122.87,123.00,127382400,0.33 +1987-05-08,118.50,128.25,118.50,126.50,150048000,0.34 +1987-05-07,113.00,118.50,112.25,118.25,289699200,0.32 +1987-05-06,115.75,116.75,112.50,113.00,153504000,0.31 +1987-05-05,107.25,115.75,107.25,115.75,110995200,0.31 +1987-05-04,105.00,107.75,104.50,107.00,34531200,0.29 +1987-05-01,104.00,105.25,102.75,105.00,37843200,0.28 +1987-04-30,103.25,106.25,101.75,104.00,88041600,0.28 +1987-04-29,106.25,109.00,103.25,103.25,85161600,0.28 +1987-04-28,99.00,106.50,98.00,106.25,111081600,0.29 +1987-04-27,99.00,99.75,97.25,99.00,53107200,0.27 +1987-04-24,98.50,99.50,97.25,99.00,54172800,0.27 +1987-04-23,98.50,99.50,97.00,98.50,48326400,0.27 +1987-04-22,97.25,98.75,97.25,98.50,74678400,0.27 +1987-04-21,95.75,98.00,93.75,97.25,113184000,0.26 +1987-04-20,98.50,99.50,95.50,95.75,100310400,0.26 +1987-04-16,96.00,100.50,95.75,98.50,188092800,0.27 +1987-04-15,94.75,97.00,94.75,96.00,95961600,0.26 +1987-04-14,92.50,95.50,91.00,94.00,87379200,0.25 +1987-04-13,95.50,95.50,92.00,92.50,50256000,0.25 +1987-04-10,95.00,95.75,94.75,95.62,43372800,0.26 +1987-04-09,96.75,96.75,94.25,95.00,71568000,0.26 +1987-04-08,94.00,97.75,94.00,96.75,106214400,0.26 +1987-04-07,99.25,99.25,94.00,94.00,73728000,0.25 +1987-04-06,99.75,100.00,97.50,99.25,98956800,0.27 +1987-04-03,95.00,100.25,95.00,99.75,155606400,0.27 +1987-04-02,92.50,97.00,92.50,95.00,159955200,0.26 +1987-04-01,96.75,98.75,90.50,91.00,259430400,0.25 +1987-03-31,95.50,99.00,95.50,96.75,125337600,0.26 +1987-03-30,91.75,96.75,88.50,96.75,186134400,0.26 +1987-03-27,89.75,93.75,89.75,91.75,120873600,0.25 +1987-03-26,89.87,90.00,89.00,89.25,33379200,0.24 +1987-03-25,90.25,90.75,89.25,89.87,33840000,0.24 +1987-03-24,87.50,90.75,87.50,90.25,69609600,0.24 +1987-03-23,90.25,91.50,88.75,89.62,67478400,0.24 +1987-03-20,91.25,91.25,89.75,90.25,38246400,0.24 +1987-03-19,89.50,91.25,88.00,91.25,62812800,0.25 +1987-03-18,85.50,90.25,85.50,89.50,119347200,0.24 +1987-03-17,82.25,85.50,82.00,85.00,54547200,0.23 +1987-03-16,82.50,82.50,79.75,82.25,88473600,0.22 +1987-03-13,85.87,86.50,81.00,82.75,105120000,0.22 +1987-03-12,85.50,86.50,83.50,85.87,71337600,0.23 +1987-03-11,85.50,86.00,84.50,85.50,43862400,0.23 +1987-03-10,81.75,85.25,81.50,84.25,74102400,0.23 +1987-03-09,83.25,83.50,81.25,81.75,38275200,0.22 +1987-03-06,83.50,84.00,81.25,83.25,63561600,0.23 +1987-03-05,79.75,85.25,79.75,83.50,128188800,0.23 +1987-03-04,74.50,80.00,74.25,79.75,98179200,0.22 +1987-03-03,74.50,75.25,73.50,74.50,81100800,0.20 +1987-03-02,76.75,76.75,74.00,74.50,79516800,0.20 +1987-02-27,77.25,77.75,75.50,76.75,37555200,0.21 +1987-02-26,74.50,79.50,73.00,77.25,145209600,0.21 +1987-02-25,75.75,77.12,74.00,74.50,65001600,0.20 +1987-02-24,72.25,76.00,72.25,75.75,120816000,0.21 +1987-02-23,68.00,73.25,66.50,72.25,125913600,0.20 +1987-02-20,68.75,68.75,67.00,68.00,87897600,0.18 +1987-02-19,71.50,71.50,68.00,68.75,317750400,0.19 +1987-02-18,76.50,77.75,71.50,71.75,128592000,0.19 +1987-02-17,76.00,76.75,74.25,76.50,70732800,0.21 +1987-02-13,76.75,77.75,74.25,76.00,81763200,0.21 +1987-02-12,71.75,77.12,71.75,76.75,185731200,0.21 +1987-02-11,68.75,71.75,68.75,71.75,60307200,0.19 +1987-02-10,68.25,68.50,66.75,68.50,44668800,0.19 +1987-02-09,68.75,68.75,67.87,68.25,136080000,0.18 +1987-02-06,71.50,71.87,68.50,68.87,45619200,0.19 +1987-02-05,72.00,72.50,70.75,71.50,42652800,0.19 +1987-02-04,71.75,72.25,71.00,72.00,31737600,0.19 +1987-02-03,73.00,73.75,70.50,71.75,59328000,0.19 +1987-02-02,73.12,74.50,73.00,73.00,46915200,0.20 +1987-01-30,68.75,73.25,67.75,73.12,104169600,0.20 +1987-01-29,71.75,72.50,67.25,68.75,79228800,0.19 +1987-01-28,71.50,72.75,69.50,71.75,76723200,0.19 +1987-01-27,68.75,72.50,68.75,71.50,114105600,0.19 +1987-01-26,68.00,69.50,65.75,68.75,116553600,0.19 +1987-01-23,74.50,77.50,67.50,67.50,317894400,0.18 +1987-01-22,67.75,74.75,65.75,74.50,116035200,0.20 +1987-01-21,65.00,69.50,63.75,67.75,108489600,0.18 +1987-01-20,64.00,66.50,63.75,65.00,95760000,0.18 +1987-01-19,61.75,64.00,60.50,64.00,88243200,0.17 +1987-01-16,63.25,63.25,60.50,61.75,65433600,0.17 +1987-01-15,60.00,64.75,60.00,63.25,117014400,0.17 +1987-01-14,60.00,60.25,58.75,60.00,69465600,0.16 +1987-01-13,61.25,61.25,59.00,60.00,76320000,0.16 +1987-01-12,58.00,62.25,57.50,61.75,128793600,0.17 +1987-01-09,55.75,58.25,55.50,58.00,63705600,0.16 +1987-01-08,54.25,56.25,54.25,55.75,61488000,0.15 +1987-01-07,51.25,54.00,51.25,54.00,60998400,0.15 +1987-01-06,50.50,51.50,50.25,51.25,40032000,0.14 +1987-01-05,47.75,51.00,47.50,50.50,48499200,0.14 +1987-01-02,48.25,48.75,47.50,47.75,12643200,0.13 +1986-12-31,47.75,49.00,47.75,48.25,23356800,0.13 +1986-12-30,47.25,48.00,46.75,47.75,25401600,0.13 +1986-12-29,49.25,49.75,47.25,47.25,41702400,0.13 +1986-12-26,49.38,49.75,49.25,49.25,3715200,0.13 +1986-12-24,49.50,49.50,49.25,49.38,7027200,0.13 +1986-12-23,49.00,49.50,49.00,49.50,23788800,0.13 +1986-12-22,48.50,49.50,48.50,49.00,18316800,0.13 +1986-12-19,47.50,49.00,47.50,48.50,56592000,0.13 +1986-12-18,47.00,47.50,46.75,47.38,12672000,0.13 +1986-12-17,46.50,47.25,46.50,47.00,23356800,0.13 +1986-12-16,46.25,47.25,46.25,46.50,77299200,0.13 +1986-12-15,47.25,47.50,45.25,46.00,50774400,0.12 +1986-12-12,49.00,49.00,47.25,47.25,25286400,0.13 +1986-12-11,48.63,49.25,48.50,49.00,11635200,0.13 +1986-12-10,48.25,48.75,47.75,48.63,27590400,0.13 +1986-12-09,48.50,48.75,48.00,48.25,16099200,0.13 +1986-12-08,49.00,49.50,47.75,48.50,22665600,0.13 +1986-12-05,49.25,49.50,49.00,49.00,107510400,0.13 +1986-12-04,48.63,49.75,48.25,49.25,42508800,0.13 +1986-12-03,49.00,49.50,48.50,48.63,35164800,0.13 +1986-12-02,49.00,50.00,49.00,49.00,28771200,0.13 +1986-12-01,49.75,50.00,48.50,48.75,40291200,0.13 +1986-11-28,50.50,50.75,49.25,49.75,41328000,0.13 +1986-11-26,51.00,51.25,50.50,50.50,38793600,0.14 +1986-11-25,50.50,51.25,50.25,51.00,95788800,0.14 +1986-11-24,46.75,50.75,45.25,50.50,173836800,0.14 +1986-11-21,45.50,47.25,45.50,46.75,91065600,0.13 +1986-11-20,42.00,45.25,42.00,45.25,98179200,0.12 +1986-11-19,40.50,42.25,40.50,42.00,48729600,0.11 +1986-11-18,42.75,43.00,40.50,40.50,59673600,0.11 +1986-11-17,42.50,43.25,42.00,42.75,24307200,0.12 +1986-11-14,42.13,42.50,41.25,42.50,18720000,0.12 +1986-11-13,42.75,43.00,42.00,42.13,30211200,0.11 +1986-11-12,42.75,43.75,42.25,42.75,34156800,0.12 +1986-11-11,42.75,43.25,42.75,42.75,11894400,0.12 +1986-11-10,44.25,44.25,42.25,42.50,28684800,0.12 +1986-11-07,44.50,44.75,43.50,44.25,44323200,0.12 +1986-11-06,43.50,45.50,43.25,44.50,72576000,0.12 +1986-11-05,41.00,43.75,40.75,43.50,45100800,0.12 +1986-11-04,39.50,41.00,39.50,41.00,54403200,0.11 +1986-11-03,39.00,39.75,39.00,39.50,42192000,0.11 +1986-10-31,39.25,39.75,38.50,38.75,63734400,0.10 +1986-10-30,38.50,39.75,38.25,39.25,44380800,0.11 +1986-10-29,39.63,39.75,38.00,38.50,53222400,0.10 +1986-10-28,38.75,40.25,38.75,39.63,142646400,0.11 +1986-10-27,37.75,38.75,37.75,38.75,125654400,0.10 +1986-10-24,37.75,37.75,36.50,37.50,101376000,0.10 +1986-10-23,37.75,38.00,37.38,37.75,70444800,0.10 +1986-10-22,37.75,38.13,37.50,37.75,54576000,0.10 +1986-10-21,36.50,37.75,36.50,37.75,112377600,0.10 +1986-10-20,36.00,36.75,35.25,36.25,43545600,0.10 +1986-10-17,35.00,36.25,35.00,36.00,124444800,0.10 +1986-10-16,35.00,35.25,34.75,35.00,21859200,0.09 +1986-10-15,33.50,35.25,33.50,35.00,63532800,0.09 +1986-10-14,33.25,33.75,33.25,33.50,12873600,0.09 +1986-10-13,34.50,34.50,33.00,33.00,27129600,0.09 +1986-10-10,33.00,35.25,32.50,34.50,76752000,0.09 +1986-10-09,32.00,33.75,32.00,33.00,92563200,0.09 +1986-10-08,31.12,32.38,30.75,32.00,119606400,0.09 +1986-10-07,30.50,31.75,30.50,31.12,59788800,0.08 +1986-10-06,29.00,31.00,29.00,30.50,85334400,0.08 +1986-10-03,28.00,28.50,28.00,28.25,14716800,0.08 +1986-10-02,28.00,28.50,27.75,28.00,22723200,0.08 +1986-10-01,28.25,28.75,27.50,28.00,32428800,0.08 +1986-09-30,28.25,28.75,28.25,28.25,5184000,0.08 +1986-09-29,29.00,29.00,28.25,28.25,6192000,0.08 +1986-09-26,29.00,29.25,28.75,29.00,2332800,0.08 +1986-09-25,29.62,29.75,29.00,29.00,5155200,0.08 +1986-09-24,30.00,30.00,29.50,29.62,4780800,0.08 +1986-09-23,29.50,30.25,29.50,30.00,5961600,0.08 +1986-09-22,29.75,29.75,29.50,29.50,4492800,0.08 +1986-09-19,29.75,30.00,29.50,29.75,2505600,0.08 +1986-09-18,29.50,30.25,29.50,29.75,5356800,0.08 +1986-09-17,28.75,30.00,28.50,29.50,8035200,0.08 +1986-09-16,28.75,29.00,28.25,28.75,5184000,0.08 +1986-09-15,28.25,28.75,27.75,28.75,22492800,0.08 +1986-09-12,29.00,29.25,28.25,28.25,24451200,0.08 +1986-09-11,30.25,30.50,29.00,29.00,35654400,0.08 +1986-09-10,30.75,31.00,30.25,30.25,10886400,0.08 +1986-09-09,30.25,31.50,30.25,30.75,37526400,0.08 +1986-09-08,30.50,30.75,30.25,30.25,9619200,0.08 +1986-09-05,29.25,30.50,29.00,30.50,26352000,0.08 +1986-09-04,27.50,29.25,27.50,29.25,39427200,0.08 +1986-09-03,27.50,27.50,26.25,27.00,18316800,0.07 +1986-09-02,28.50,28.50,27.37,27.75,5212800,0.08 +1986-08-29,29.25,29.50,28.00,28.50,25430400,0.08 +1986-08-28,29.25,29.50,29.25,29.25,3427200,0.08 +1986-08-27,29.25,29.50,29.00,29.25,9532800,0.08 +1986-08-26,29.50,29.50,29.25,29.25,10857600,0.08 +1986-08-25,29.50,29.50,29.00,29.50,2419200,0.08 +1986-08-22,30.00,30.25,29.00,29.50,5760000,0.08 +1986-08-21,30.00,30.50,30.00,30.00,49536000,0.08 +1986-08-20,30.25,30.25,30.00,30.00,20764800,0.08 +1986-08-19,30.25,30.37,29.75,30.25,20390400,0.08 +1986-08-18,30.62,30.75,30.25,30.25,12787200,0.08 +1986-08-15,30.50,30.75,30.25,30.62,6105600,0.08 +1986-08-14,29.75,30.75,29.75,30.50,20131200,0.08 +1986-08-13,29.50,29.75,29.25,29.75,6883200,0.08 +1986-08-12,28.75,29.50,28.75,29.50,9993600,0.08 +1986-08-11,28.25,29.00,28.25,28.75,7948800,0.08 +1986-08-08,27.50,28.25,27.50,27.75,4147200,0.08 +1986-08-07,27.75,28.00,27.25,27.50,3657600,0.07 +1986-08-06,28.00,28.25,27.25,27.75,18316800,0.08 +1986-08-05,28.25,28.50,28.00,28.00,2822400,0.08 +1986-08-04,28.25,28.25,27.50,28.25,12441600,0.08 +1986-08-01,28.50,28.75,28.00,28.25,12902400,0.08 +1986-07-31,28.75,29.00,28.50,28.50,15638400,0.08 +1986-07-30,29.75,29.75,27.75,28.75,26409600,0.08 +1986-07-29,30.50,30.75,29.25,29.75,14054400,0.08 +1986-07-28,31.25,31.25,30.50,30.50,11808000,0.08 +1986-07-25,31.00,31.50,31.00,31.25,20448000,0.08 +1986-07-24,30.50,31.50,30.50,31.00,14140800,0.08 +1986-07-23,30.75,31.25,30.00,30.00,20793600,0.08 +1986-07-22,29.75,30.75,29.75,30.75,10512000,0.08 +1986-07-21,29.75,30.25,29.75,29.75,3513600,0.08 +1986-07-18,29.50,30.00,28.75,29.75,12326400,0.08 +1986-07-17,29.00,29.50,28.75,29.50,6940800,0.08 +1986-07-16,28.25,29.00,28.25,29.00,9360000,0.08 +1986-07-15,27.62,28.50,27.25,28.00,13190400,0.08 +1986-07-14,27.25,28.25,27.25,27.62,28598400,0.07 +1986-07-11,27.25,28.50,27.25,28.00,17395200,0.08 +1986-07-10,28.00,28.25,26.00,27.25,46886400,0.07 +1986-07-09,29.25,29.25,27.75,28.00,46137600,0.08 +1986-07-08,30.00,30.00,29.00,29.25,14256000,0.08 +1986-07-07,31.25,31.25,30.00,30.00,14054400,0.08 +1986-07-03,31.00,31.50,31.00,31.25,14140800,0.08 +1986-07-02,30.75,30.75,30.50,30.75,52617600,0.08 +1986-07-01,30.75,30.75,30.50,30.75,47577600,0.08 +1986-06-30,29.75,31.50,29.50,30.75,62352000,0.08 +1986-06-27,30.00,30.25,29.50,29.75,10396800,0.08 +1986-06-26,31.00,31.25,30.00,30.00,19152000,0.08 +1986-06-25,31.50,31.75,31.00,31.00,15235200,0.08 +1986-06-24,31.75,32.00,31.25,31.50,14572800,0.09 +1986-06-23,31.37,31.75,30.75,31.75,46195200,0.09 +1986-06-20,31.25,31.50,31.25,31.37,3801600,0.08 +1986-06-19,31.50,31.75,31.00,31.25,8467200,0.08 +1986-06-18,31.75,31.75,31.00,31.50,4348800,0.09 +1986-06-17,31.50,32.25,31.50,31.75,13075200,0.09 +1986-06-16,31.50,31.75,31.00,31.25,9590400,0.08 +1986-06-13,31.50,31.75,31.25,31.50,7891200,0.09 +1986-06-12,32.75,32.75,31.25,31.50,13708800,0.09 +1986-06-11,32.75,32.75,32.25,32.75,2304000,0.09 +1986-06-10,32.75,32.75,32.25,32.75,3427200,0.09 +1986-06-09,34.25,34.25,32.75,32.75,12672000,0.09 +1986-06-06,34.25,34.25,33.75,34.25,3427200,0.09 +1986-06-05,33.75,34.25,33.50,34.25,13708800,0.09 +1986-06-04,34.00,34.25,33.50,33.75,4723200,0.09 +1986-06-03,34.00,34.00,33.50,34.00,5011200,0.09 +1986-06-02,35.00,35.00,34.00,34.00,19728000,0.09 +1986-05-30,34.00,35.50,34.00,35.00,27072000,0.09 +1986-05-29,33.00,34.25,32.75,33.75,45676800,0.09 +1986-05-28,32.00,33.00,32.00,33.00,15523200,0.09 +1986-05-27,31.00,32.00,31.00,32.00,13881600,0.09 +1986-05-23,31.00,31.50,31.00,31.00,4089600,0.08 +1986-05-22,31.00,31.25,31.00,31.00,4406400,0.08 +1986-05-21,31.50,31.75,31.00,31.00,8092800,0.08 +1986-05-20,31.75,31.75,31.25,31.50,61977600,0.09 +1986-05-19,32.25,32.25,31.50,31.75,11001600,0.09 +1986-05-16,32.00,33.00,32.00,32.25,11952000,0.09 +1986-05-15,32.00,32.50,32.00,32.00,3801600,0.09 +1986-05-14,32.25,32.25,32.00,32.00,9302400,0.09 +1986-05-13,32.00,32.50,32.00,32.25,3830400,0.09 +1986-05-12,31.75,32.75,31.75,32.00,10483200,0.09 +1986-05-09,32.00,32.00,31.75,31.75,6076800,0.09 +1986-05-08,31.75,32.00,31.50,32.00,3542400,0.09 +1986-05-07,31.75,32.00,31.25,31.75,5155200,0.09 +1986-05-06,31.75,32.25,31.75,31.75,9734400,0.09 +1986-05-05,31.75,31.75,31.50,31.50,3254400,0.09 +1986-05-02,31.75,32.25,31.50,31.75,20246400,0.09 +1986-05-01,32.25,32.25,31.25,31.75,54345600,0.09 +1986-04-30,33.00,33.25,31.50,32.25,30902400,0.09 +1986-04-29,34.00,34.00,32.75,33.00,30326400,0.09 +1986-04-28,33.75,34.25,33.50,34.00,28886400,0.09 +1986-04-25,32.00,35.13,32.00,33.75,85795200,0.09 +1986-04-24,28.87,32.25,28.75,31.75,62352000,0.09 +1986-04-23,28.75,29.00,28.50,28.87,15609600,0.08 +1986-04-22,29.25,29.25,28.75,28.75,15552000,0.08 +1986-04-21,29.25,29.50,28.50,29.25,22924800,0.08 +1986-04-18,30.25,30.25,29.00,29.25,21628800,0.08 +1986-04-17,30.00,30.25,30.00,30.25,22003200,0.08 +1986-04-16,29.00,30.25,28.75,30.00,31910400,0.08 +1986-04-15,29.00,29.00,28.00,29.00,9302400,0.08 +1986-04-14,28.75,29.25,28.75,29.00,12153600,0.08 +1986-04-11,28.50,29.25,28.50,28.75,17222400,0.08 +1986-04-10,28.00,28.50,27.50,28.25,13881600,0.08 +1986-04-09,27.50,28.25,27.50,28.00,12153600,0.08 +1986-04-08,27.25,28.00,27.25,27.50,10252800,0.07 +1986-04-07,27.75,28.00,26.75,27.25,16560000,0.07 +1986-04-04,27.75,28.00,27.75,27.75,26582400,0.08 +1986-04-03,27.75,28.50,27.75,27.75,23040000,0.08 +1986-04-02,27.25,28.00,27.25,27.50,27014400,0.07 +1986-04-01,27.50,27.50,27.25,27.25,11088000,0.07 +1986-03-31,27.75,27.75,27.00,27.50,12873600,0.07 +1986-03-27,27.25,27.75,27.25,27.75,16848000,0.08 +1986-03-26,26.50,27.50,26.25,27.25,22752000,0.07 +1986-03-25,26.00,26.50,25.75,26.50,32083200,0.07 +1986-03-24,26.75,26.75,25.75,26.00,65289600,0.07 +1986-03-21,27.50,28.00,26.25,26.75,59990400,0.07 +1986-03-20,28.25,28.25,27.25,27.50,58435200,0.07 +1986-03-19,28.75,29.00,28.00,28.25,47894400,0.08 +1986-03-18,29.50,29.75,28.50,28.75,67766400,0.08 +1986-03-17,29.00,29.75,29.00,29.50,133171200,0.08 +1986-03-14,28.00,29.50,28.00,29.00,308160000,0.08 +1986-03-13,25.50,29.25,25.50,28.00,1031788800,0.08 diff --git a/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm b/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm new file mode 100644 index 000000000..b8611250a --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm @@ -0,0 +1,1377 @@ + + + + + Market Depth + + + + + + + + + +
Market Depth
+ +
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
All values in MWh except for IMBALNGC which is in MW. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Settlement DayPeriodIMBALNGCOffer VolumeBid VolumeAccepted Offer VolAccepted Bid VolUAOVUABVPAOVPABV
2014-01-141877.00052378.500-53779.500348.200-654.3740.0000.000348.200-654.374
2014-01-142196.00052598.000-53559.500349.601-310.8620.0000.000316.701-310.862
2014-01-143-190.00052575.000-53283.500186.183-2.4260.0000.000162.767-1.917
2014-01-144-61.00052576.000-53454.50018.000-24.1580.0000.00018.000-24.158
2014-01-14519.00052574.500-53456.5000.000-106.9380.0000.0000.000-106.938
2014-01-146-215.00052624.500-53456.500150.185-89.9730.0000.000127.054-89.447
2014-01-147-246.00052611.500-53246.000161.167-78.6670.0000.000161.167-78.667
2014-01-1486.00052603.500-53178.00054.667-124.5420.0000.00054.667-119.833
2014-01-149210.00052556.500-53157.0000.000-221.7840.0000.0000.000-220.792
2014-01-1410260.00052554.000-53159.0000.000-244.3910.0000.0000.000-244.391
2014-01-141154.00052101.000-52635.00082.250-93.9810.0000.00059.500-92.900
2014-01-1412434.00052022.000-52980.500281.067-497.5060.0000.000281.067-494.810
2014-01-1413777.00051718.000-53476.500310.124-352.8600.0000.000283.602-344.852
2014-01-14141966.00050533.500-53758.50044.624-440.9410.0000.00044.624-440.898
2014-01-14152161.00048853.500-54056.500197.428-470.4510.0000.000196.865-470.169
2014-01-14161611.00047771.500-54012.500216.303-90.7580.0000.000206.209-90.566
2014-01-14172026.00047665.500-54155.500102.792-100.1830.0000.000100.572-99.983
2014-01-14182414.00047572.500-54285.50017.317-181.7100.0000.00014.592-181.068
2014-01-14191853.00047624.500-54081.50010.926-277.2890.0000.00010.925-276.789
2014-01-14201542.00047622.000-54076.5000.044-321.2050.0000.0000.000-320.705
2014-01-14211533.00047637.500-54079.0000.000-438.6230.0000.0000.000-390.798
2014-01-14221333.00047645.000-54085.0000.001-538.7230.0000.0000.000-504.548
2014-01-14231250.00047648.000-54088.0000.000-566.7670.0000.0000.000-503.017
2014-01-14241303.00047647.500-54088.0000.000-536.2690.0000.0000.000-487.769
2014-01-1425941.00047779.500-54082.0004.001-442.8100.0000.0000.000-394.310
2014-01-1426903.00047850.500-53869.0000.000-374.7330.0000.0000.000-339.925
2014-01-1427967.00047955.500-53403.5000.120-476.0580.0000.0000.000-437.175
2014-01-14281140.00047957.500-53333.00033.646-585.8120.0000.00033.146-585.670
2014-01-14291262.00047840.000-53358.50084.100-607.1130.0000.00084.100-606.780
2014-01-14301712.00047814.500-53572.00014.602-841.1640.0000.00014.500-840.664
2014-01-14311683.00047816.000-53581.00029.667-820.0750.0000.00022.167-819.676
2014-01-14321485.00047861.000-53820.00028.000-563.7860.0000.0007.000-563.369
2014-01-14332240.00047583.500-54518.50028.762-595.8830.0000.00027.417-593.557
2014-01-14342009.00047316.500-54528.00029.008-644.0110.0000.00029.008-642.994
2014-01-1435529.00047267.500-54563.00048.265-753.4800.0000.00016.993-734.230
2014-01-1436648.00047330.000-54560.50011.331-764.3150.0000.0000.000-712.231
2014-01-1437478.00047337.500-54845.0001.192-641.0650.0000.0000.000-634.736
2014-01-1438373.00047345.500-54807.50052.242-549.2150.0000.00037.992-548.632
2014-01-1439-282.00048244.500-54799.500150.948-305.4670.0000.000133.733-304.790
2014-01-1440-607.00048721.500-54460.000331.752-411.5290.0000.000318.152-380.824
2014-01-1441-758.00049503.500-54168.000422.222-273.4230.0000.000404.932-264.290
2014-01-1442-854.00049695.500-53782.000469.662-231.0350.0000.000453.912-228.359
2014-01-1443-549.00050145.000-53777.500485.421-411.7270.0000.000445.170-367.060
2014-01-1444-147.00050494.500-53757.500458.384-605.4140.0000.000458.383-487.373
2014-01-1445-577.00051342.500-53756.000585.867-562.5230.0000.000568.700-396.482
2014-01-1446-719.00052187.000-53756.000630.794-482.8690.0000.000626.260-213.749
2014-01-1447-532.00052132.500-53650.000646.699-571.6480.0000.000646.699-543.648
2014-01-1448-153.00052136.500-53585.000542.045-649.6910.0000.000542.045-515.614
2014-01-151-532.00052630.000-53817.000614.098-473.7990.0000.000614.098-351.307
2014-01-152-516.00052628.000-53685.500587.654-424.1600.0000.000587.654-251.393
2014-01-153-586.00052625.000-53685.500603.613-260.2240.0000.000603.613-1.399
2014-01-154-252.00052897.500-53563.000395.845-277.0720.0000.000395.845-34.542
2014-01-155-434.00052919.000-52762.000281.085-251.5430.0000.000281.085-9.043
2014-01-156-525.00052904.500-52392.500252.475-242.7370.0000.000252.4750.000
2014-01-157-597.00052912.000-52163.500376.584-273.4490.0000.000376.443-19.865
2014-01-158-332.00052911.000-52134.000377.338-272.1420.0000.000377.338-150.258
2014-01-159-235.00053017.000-52056.500404.050-329.0110.0000.000403.551-208.658
2014-01-1510268.00053003.500-51954.000252.430-386.4460.0000.000251.917-266.445
2014-01-1511-138.00052427.500-52192.500351.485-309.1930.0000.000328.631-308.027
2014-01-1512627.00052215.000-52643.500355.554-767.9120.0000.000354.274-766.379
2014-01-1513420.00051841.000-53516.500696.494-939.9120.0000.000696.494-939.345
2014-01-1514-5.00051268.500-53745.000633.599-672.5620.0000.000632.891-672.560
2014-01-1515-153.00050304.500-54009.500442.444-505.3180.0000.000438.694-450.789
2014-01-151667.00048759.500-53998.500426.233-391.7740.0000.000380.341-38.159
2014-01-1517460.00048219.500-58586.000352.783-352.7110.0000.000351.952-105.607
2014-01-1518446.00048170.000-58561.500294.959-281.6940.0000.000294.767-34.452
2014-01-1519-119.00048174.500-58553.500403.738-291.5290.0000.000403.737-51.508
2014-01-1520-549.00048173.000-58548.500427.907-291.5040.0000.000407.879-51.500
2014-01-1521-484.00048180.500-58547.500488.450-294.7250.0000.000454.442-54.725
2014-01-1522-445.00048179.500-58547.500395.488-362.0500.0000.000395.400-122.050
2014-01-1523-694.00048190.500-58542.500416.615-340.8420.0000.000404.615-100.842
2014-01-1524-506.00048193.000-58542.500363.602-364.2250.0000.000363.602-133.051
2014-01-1525-674.00048188.500-58555.000405.008-418.4490.0000.000405.000-197.949
2014-01-1526-663.00048189.500-58554.500368.259-437.9710.0000.000339.259-215.164
2014-01-1527-803.00048185.500-58553.500361.790-400.9840.0000.000350.401-224.989
2014-01-1528-826.00047835.000-58553.500351.617-468.6010.0000.000351.251-313.367
2014-01-1529-861.00047835.500-58623.000489.776-504.2320.0000.000435.314-360.321
2014-01-1530-267.00047836.500-58628.000436.238-612.7720.0000.000416.833-533.416
2014-01-1531477.00047838.000-58628.000441.848-930.8850.0000.000390.243-845.421
2014-01-1532203.00047775.000-58558.000524.048-893.5320.0000.000517.516-830.402
2014-01-1533473.00047497.500-58412.000429.994-833.9130.0000.000426.238-829.935
2014-01-1534-374.00047284.000-58426.500543.487-555.8630.0000.000481.780-555.863
2014-01-1535-887.00047232.000-58458.500509.125-607.7330.0000.000508.667-492.733
2014-01-1536-465.00047304.000-58458.500535.682-790.1410.0000.000502.000-665.224
2014-01-1537-449.00047338.000-58424.500732.630-658.4640.0000.000657.222-567.297
2014-01-1538-315.00047353.500-58424.500339.577-332.1430.0000.000319.736-322.857
2014-01-1539-597.00048043.000-58408.000381.742-117.4080.0000.000380.967-115.591
2014-01-1540-101.00048253.500-58408.000347.763-241.4300.0000.000346.722-186.638
2014-01-1541127.00048789.000-58408.000318.131-313.7070.0000.000247.281-309.907
2014-01-1542-23.00049234.500-57982.500359.194-30.0350.0000.000358.694-30.023
2014-01-1543-222.00049630.000-57808.500335.952-128.3840.0000.000306.787-123.008
2014-01-154496.00049924.500-57804.000308.002-369.9880.0000.000279.468-369.988
2014-01-1545365.00050758.000-57799.000      
2014-01-1546189.00051561.500-57824.500      
2014-01-1547-153.00051726.000-57773.500      
2014-01-1548-13.00051731.500-57778.500      
2014-01-161-69.000        
2014-01-16256.000        
2014-01-163-169.000        
2014-01-164224.000        
+
+ + diff --git a/tests/FSharp.Data.Core.Tests/Data/Nested.json b/tests/FSharp.Data.Core.Tests/Data/Nested.json new file mode 100644 index 000000000..0216aeddc --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Nested.json @@ -0,0 +1,8 @@ +{ + "main": { + "firstName": "John", + "lastName": "Doe", + "age": 25, + "isCool": true + } +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/NuGet.html b/tests/FSharp.Data.Core.Tests/Data/NuGet.html new file mode 100644 index 000000000..877707f30 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/NuGet.html @@ -0,0 +1,725 @@ + + + + + + + + + + + + + + + + + + NuGet Gallery + | FSharp.Data 2.0.1 + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ +
+ + + +
+ + +
+
+

6,699

+

+ Downloads

+
+
+

44

+

+ Downloads of v 2.0.1

+
+
+

2014-03-14

+

+ Last published

+
+
+ + + + + +
+
+ +
+
+

FSharp.Data

+

2.0.1

+
+

The FSharp.Data package (FSharp.Data.dll) implements everything you need to access data +

+

in your F# applications and scripts. It implements F# type providers for working with +

+

structured file formats (CSV, JSON and XML) and for accessing the WorldBank and Freebase +

+

data. It also includes helpers for parsing JSON and CSV files and for sending HTTP requests.

+ +

+ To install FSharp.Data, run the following command in the + Package Manager Console +

+
+

+ PM> Install-Package FSharp.Data +

+
+
+ +
+
+ +

Release Notes

+

* Fixed Freebase provider throwing exceptions in the absence of network connectivity even when not used.

+ +

Owners

+ + +
+

Authors

+

+ Tomas Petricek, Gustavo Guerra +

+
+

Copyright

+

Copyright 2014

+

Tags

+ +

Dependencies

+
    +
  • +

    .NETFramework 4.0

    +
      +
    • + No dependencies. +
    • +
    +
  • +
  • +

    Portable Class Library (.NETFramework 4.0, Silverlight 5.0, WindowsPhone 8.0, Windows 8.0)

    + +
  • +
  • +

    Portable Class Library (.NETFramework 4.5, Windows 8.0)

    + +
  • +
+

Version History

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Version + + Downloads + + Last updated +
+ + FSharp.Data + 2.0.0 + + 193 + Monday, March 10 2014 +
+ + FSharp.Data + 2.0.0-beta3 + + 32 + Tuesday, March 04 2014 +
+ + FSharp.Data + 2.0.0-beta2 + + 46 + Thursday, February 27 2014 +
+ + FSharp.Data + 2.0.0-beta + + 20 + Monday, February 24 2014 +
+ + FSharp.Data + 2.0.0-alpha7 + + 27 + Thursday, February 20 2014 +
+ + FSharp.Data + 2.0.0-alpha6 + + 64 + Tuesday, February 04 2014 +
+ + FSharp.Data + 2.0.0-alpha5 + + 1 + Monday, February 03 2014 +
+ + FSharp.Data + 2.0.0-alpha4 + + 11 + Thursday, January 30 2014 +
+ + FSharp.Data + 2.0.0-alpha3 + + 73 + Monday, December 30 2013 +
+ + FSharp.Data + 2.0.0-alpha2 + + 6 + Tuesday, December 24 2013 +
+ + FSharp.Data + 2.0.0-alpha + + 34 + Sunday, December 15 2013 +
+ + FSharp.Data + 1.1.10 + + 2974 + Thursday, September 12 2013 +
+ + FSharp.Data + 1.1.9 + + 892 + Sunday, July 21 2013 +
+ + FSharp.Data + 1.1.8 + + 237 + Monday, July 01 2013 +
+ + FSharp.Data + 1.1.7 + + 30 + Monday, July 01 2013 +
+ + FSharp.Data + 1.1.6 + + 50 + Sunday, June 30 2013 +
+ + FSharp.Data + 1.1.5 + + 569 + Monday, May 13 2013 +
+ + FSharp.Data + 1.1.4 + + 253 + Saturday, April 13 2013 +
+ + FSharp.Data + 1.1.3 + + 70 + Monday, April 08 2013 +
+ + FSharp.Data + 1.1.2 + + 68 + Saturday, March 30 2013 +
+ + FSharp.Data + 1.1.1 + + 330 + Monday, February 18 2013 +
+ + FSharp.Data + 1.1.0 + + 55 + Monday, February 18 2013 +
+ + FSharp.Data + 1.0.13 + + 166 + Wednesday, January 16 2013 +
+ + FSharp.Data + 1.0.12 + + 37 + Monday, January 14 2013 +
+ + FSharp.Data + 1.0.11 + + 32 + Monday, January 14 2013 +
+ + FSharp.Data + 1.0.10 + + 54 + Sunday, January 06 2013 +
+ + FSharp.Data + 1.0.9 + + 40 + Friday, January 04 2013 +
+ + FSharp.Data + 1.0.8 + + 34 + Friday, January 04 2013 +
+ + FSharp.Data + 1.0.6 + + 56 + Sunday, December 23 2012 +
+ + FSharp.Data + 1.0.5 + + 39 + Thursday, December 20 2012 +
+ + FSharp.Data + 1.0.4 + + 42 + Monday, December 17 2012 +
+ + FSharp.Data + 1.0.2 + + 48 + Friday, December 14 2012 +
+ + FSharp.Data + 1.0.1 + + 35 + Friday, December 14 2012 +
+ + FSharp.Data + 1.0.0 + + 37 + Thursday, December 13 2012 +
+
+ +
+ +
+ + +
+
+ +
+ + + + + +
+ + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/OptionValues.json b/tests/FSharp.Data.Core.Tests/Data/OptionValues.json new file mode 100644 index 000000000..35e753c22 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/OptionValues.json @@ -0,0 +1 @@ +{ "authors": [{ "name": "Steffen", "age": 29 }, { "name": "Tomas" }]} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml b/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml new file mode 100644 index 000000000..db8feb252 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml b/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml new file mode 100644 index 000000000..723a758f2 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml @@ -0,0 +1,45 @@ + + + South Central US + South Central US + + Compute + Storage + + + + A5 + A6 + Standard_D3 + Standard_D4 + + + A5 + A6 + Standard_D3 + Standard_D4 + + + + + Central US + Central US + + Compute + Storage + PersistentVMRole + HighMemory + + + + A5 + A6 + A7 + + + A5 + A6 + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Simple.json b/tests/FSharp.Data.Core.Tests/Data/Simple.json new file mode 100644 index 000000000..61e8f1478 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Simple.json @@ -0,0 +1,6 @@ +{ + "firstName": "John", + "lastName": "Doe", + "age": 25, + "isCool": true +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json b/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json new file mode 100644 index 000000000..38ff01cbe --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json @@ -0,0 +1 @@ +{ "items": [{ "id": "Open"}, {"id": "Pause"}]} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html new file mode 100644 index 000000000..40dc78051 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html @@ -0,0 +1,28 @@ + + + +
+
+
Count
+
1
+
2
+
Dates
+
01/01/2014
+
02/02/2014
+
Decimals
+
1.23
+
2.23
+
Missing
+
Foobar
+
+
+
+
+
    +
  • 1
  • +
  • 2
  • +
  • 3
  • +
+
+ + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html new file mode 100644 index 000000000..30522d4bd --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MonthSavings
Sum$180
January$100
February$80
+ +

Tip: The thead, tbody, and tfoot elements will not affect the layout of the table by default. However, you can use CSS to style these elements.

+ + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html new file mode 100644 index 000000000..d3082e81f --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html @@ -0,0 +1,43 @@ + + + +
+ + + + + + + + + + + + + + + + +
Column1Column6Column3
True13
yes21.92
+
+
+ + + + + + + + + + + + + + + + +
DateCptyIdValue
01/01/201213
01/02/201221.92
+
+ + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv b/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv new file mode 100644 index 000000000..aaa011759 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv @@ -0,0 +1,4 @@ +Name, Distance (metre),Time (s) +First, 50.0,3.7 +Second, 100.0,5.2 +Third, 150.0,6.4 diff --git a/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv b/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv new file mode 100644 index 000000000..1abc2aef2 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv @@ -0,0 +1,5 @@ +user_000001 2009-05-04T23:08:57Z f1b1cf71-bd35-4e99-8624-24a6e15f133a Deep Dish Fuck Me Im Famous (Pacha Ibiza)-09-28-2007 +user_000001 2009-05-04T13:54:10Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Composition 0919 (Live_2009_4_15) +user_000001 2009-05-04T13:52:04Z 坂本龍一 Mc2 (Live_2009_4_15) +user_000001 2009-05-04T13:42:52Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Hibari (Live_2009_4_15) +user_000001 2009-05-04T13:42:11Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Mc1 (Live_2009_4_15) diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv new file mode 100644 index 000000000..e9aa3f774 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv @@ -0,0 +1,2 @@ +positiveWithDayWithFraction,positiveWithoutDayWithoutFraction,negativeWithDayWithFraction,timespanOneTickGreaterThanMaxValue,timespanOneTickLessThanMinValue +1:3:16:50.5,00:30:00,-1:3:16:50.5,10675199.02:48:05.4775808,-10675199.02:48:05.4775809 \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json new file mode 100644 index 000000000..64ff81d56 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json @@ -0,0 +1,7 @@ +{ + "positiveWithDayWithFraction": "1:3:16:50.5", + "positiveWithoutDayWithoutFraction": "00:30:00", + "negativeWithDayWithFraction": "-1:3:16:50.5", + "timespanOneTickGreaterThanMaxValue": "10675199.02:48:05.4775808", + "timespanOneTickLessThanMinValue": "-10675199.02:48:05.4775809" +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml new file mode 100644 index 000000000..6f165602a --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml @@ -0,0 +1,7 @@ + + 1:3:16:50.5 + 00:30:00 + -1:3:16:50.5 + 10675199.02:48:05.4775808 + -10675199.02:48:05.4775809 + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Titanic.csv b/tests/FSharp.Data.Core.Tests/Data/Titanic.csv new file mode 100644 index 000000000..5cc466e97 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Titanic.csv @@ -0,0 +1,892 @@ +PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked +1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S +2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C +3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S +4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S +5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S +6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q +7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S +8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S +9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S +10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C +11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S +12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S +13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S +14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S +15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S +16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S +17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q +18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S +19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S +20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C +21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S +22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S +23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q +24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S +25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S +26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S +27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C +28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S +29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q +30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S +31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C +32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C +33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q +34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S +35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C +36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S +37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C +38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S +39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S +40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C +41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S +42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S +43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C +44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C +45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q +46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S +47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q +48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q +49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C +50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S +51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S +52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S +53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C +54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S +55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C +56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S +57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S +58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C +59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S +60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S +61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C +62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28, +63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S +64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S +65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C +66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C +67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S +68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S +69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S +70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S +71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S +72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S +73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S +74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C +75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S +76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S +77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S +78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S +79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S +80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S +81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S +82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S +83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q +84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S +85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S +86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S +87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S +88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S +89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S +90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S +91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S +92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S +93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S +94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S +95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S +96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S +97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C +98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C +99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S +100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S +101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S +102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S +103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S +104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S +105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S +106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S +107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S +108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S +109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S +110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q +111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S +112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C +113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S +114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S +115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C +116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S +117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q +118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S +119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C +120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S +121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S +122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S +123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C +124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S +125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S +126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C +127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q +128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S +129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C +130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S +131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C +132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S +133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S +134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S +135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S +136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C +137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S +138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S +139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S +140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C +141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C +142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S +143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S +144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q +145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S +146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S +147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S +148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S +149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S +150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S +151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S +152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S +153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S +154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S +155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S +156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C +157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q +158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S +159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S +160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S +161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S +162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S +163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S +164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S +165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S +166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S +167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S +168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S +169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S +170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S +171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S +172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q +173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S +174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S +175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C +176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S +177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S +178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C +179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S +180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S +181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S +182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C +183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S +184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S +185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S +186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S +187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q +188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S +189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q +190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S +191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S +192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S +193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S +194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S +195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C +196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C +197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q +198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S +199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q +200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S +201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S +202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S +203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S +204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C +205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S +206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S +207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S +208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C +209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q +210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C +211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S +212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S +213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S +214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S +215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q +216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C +217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S +218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S +219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C +220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S +221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S +222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S +223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S +224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S +225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S +226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S +227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S +228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S +229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S +230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S +231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S +232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S +233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S +234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S +235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S +236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S +237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S +238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S +239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S +240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S +241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C +242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q +243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S +244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S +245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C +246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q +247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S +248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S +249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S +250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S +251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S +252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S +253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S +254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S +255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S +256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C +257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C +258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S +259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C +260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S +261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q +262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S +263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S +264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S +265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q +266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S +267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S +268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S +269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S +270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S +271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S +272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S +273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S +274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C +275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q +276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S +277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S +278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S +279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q +280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S +281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q +282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S +283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S +284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S +285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S +286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C +287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S +288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S +289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S +290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q +291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S +292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C +293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C +294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S +295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S +296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C +297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C +298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S +299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S +300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C +301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q +302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q +303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S +304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q +305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S +306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S +307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C +308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C +309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C +310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C +311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C +312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C +313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S +314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S +315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S +316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S +317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S +318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S +319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S +320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C +321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S +322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S +323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q +324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S +325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S +326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C +327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S +328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S +329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S +330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C +331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q +332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S +333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S +334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S +335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S +336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S +337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S +338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C +339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S +340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S +341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S +342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S +343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S +344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S +345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S +346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S +347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S +348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S +349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S +350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S +351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S +352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S +353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C +354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S +355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C +356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S +357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S +358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S +359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q +360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q +361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S +362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C +363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C +364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S +365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q +366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S +367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C +368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C +369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q +370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C +371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C +372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S +373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S +374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C +375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S +376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C +377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S +378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C +379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C +380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S +381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C +382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C +383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S +384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S +385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S +386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S +387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S +388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S +389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q +390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C +391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S +392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S +393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S +394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C +395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S +396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S +397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S +398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S +399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S +400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S +401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S +402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S +403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S +404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S +405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S +406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S +407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S +408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S +409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S +410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S +411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S +412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q +413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q +414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S +415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S +416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S +417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S +418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S +419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S +420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S +421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C +422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q +423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S +424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S +425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S +426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S +427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S +428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S +429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q +430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S +431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S +432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S +433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S +434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S +435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S +436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S +437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S +438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S +439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S +440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S +441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S +442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S +443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S +444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S +445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S +446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S +447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S +448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S +449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C +450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S +451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S +452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S +453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C +454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C +455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S +456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C +457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S +458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S +459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S +460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q +461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S +462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S +463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S +464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S +465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S +466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S +467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S +468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S +469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q +470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C +471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S +472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S +473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S +474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C +475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S +476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S +477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S +478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S +479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S +480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S +481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S +482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S +483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S +484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S +485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C +486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S +487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S +488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C +489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S +490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S +491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S +492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S +493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S +494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C +495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S +496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C +497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C +498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S +499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S +500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S +501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S +502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q +503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q +504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S +505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S +506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C +507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S +508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S +509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S +510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S +511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q +512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S +513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S +514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C +515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S +516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S +517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S +518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q +519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S +520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S +521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S +522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S +523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C +524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C +525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C +526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q +527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S +528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S +529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S +530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S +531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S +532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C +533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C +534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C +535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S +536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S +537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S +538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C +539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S +540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C +541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S +542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S +543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S +544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S +545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C +546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S +547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S +548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C +549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S +550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S +551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C +552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S +553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q +554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C +555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S +556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S +557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C +558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C +559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S +560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S +561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q +562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S +563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S +564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S +565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S +566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S +567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S +568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S +569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C +570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S +571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S +572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S +573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S +574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q +575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S +576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S +577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S +578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S +579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C +580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S +581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S +582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C +583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S +584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C +585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C +586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S +587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S +588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C +589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S +590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S +591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S +592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C +593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S +594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q +595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S +596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S +597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S +598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S +599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C +600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C +601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S +602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S +603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S +604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S +605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C +606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S +607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S +608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S +609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C +610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S +611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S +612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S +613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q +614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q +615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S +616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S +617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S +618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S +619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S +620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S +621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C +622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S +623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C +624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S +625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S +626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S +627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q +628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S +629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S +630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q +631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S +632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S +633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C +634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S +635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S +636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S +637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S +638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S +639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S +640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S +641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S +642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C +643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S +644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S +645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C +646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C +647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S +648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C +649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S +650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S +651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S +652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S +653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S +654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q +655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q +656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S +657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S +658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q +659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S +660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C +661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S +662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C +663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S +664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S +665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S +666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S +667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S +668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S +669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S +670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S +671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S +672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S +673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S +674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S +675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S +676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S +677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S +678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S +679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S +680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C +681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q +682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C +683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S +684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S +685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S +686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C +687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S +688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S +689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S +690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S +691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S +692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C +693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S +694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C +695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S +696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S +697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S +698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q +699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C +700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S +701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C +702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S +703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C +704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q +705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S +706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S +707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S +708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S +709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S +710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C +711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C +712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S +713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S +714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S +715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S +716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S +717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C +718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S +719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q +720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S +721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S +722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S +723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S +724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S +725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S +726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S +727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S +728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q +729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S +730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S +731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S +732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C +733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S +734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S +735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S +736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S +737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S +738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C +739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S +740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S +741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S +742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S +743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C +744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S +745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S +746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S +747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S +748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S +749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S +750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q +751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S +752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S +753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S +754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S +755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S +756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S +757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S +758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S +759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S +760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S +761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S +762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S +763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C +764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S +765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S +766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S +767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C +768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q +769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q +770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S +771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S +772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S +773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S +774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C +775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S +776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S +777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q +778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S +779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q +780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S +781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C +782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S +783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S +784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S +785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S +786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S +787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S +788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q +789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S +790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C +791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q +792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S +793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S +794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C +795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S +796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S +797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S +798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S +799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C +800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S +801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S +802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S +803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S +804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C +805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S +806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S +807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S +808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S +809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S +810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S +811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S +812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S +813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S +814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S +815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S +816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S +817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S +818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C +819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S +820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S +821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S +822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S +823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S +824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S +825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S +826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q +827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S +828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C +829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q +830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28, +831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C +832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S +833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C +834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S +835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S +836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C +837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S +838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S +839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S +840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C +841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S +842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S +843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C +844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C +845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S +846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S +847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S +848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C +849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S +850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C +851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S +852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S +853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C +854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S +855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S +856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S +857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S +858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S +859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C +860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C +861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S +862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S +863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S +864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S +865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S +866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S +867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C +868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S +869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S +870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S +871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S +872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S +873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S +874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S +875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C +876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C +877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S +878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S +879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S +880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C +881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S +882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S +883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S +884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S +885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S +886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q +887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S +888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S +889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S +890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C +891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q diff --git a/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json b/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json new file mode 100644 index 000000000..d0fda8d6f --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json @@ -0,0 +1,32 @@ +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464901771265,"id_str":"333297464901771265","text":"RT @melaniesdx3: Why a sudden change","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701626206,"id_str":"701626206","name":"Devin Garcia","screen_name":"D_garcia620","location":"","url":null,"description":"Soccer \u26bd ,Gemini \/ Honduran \nRevere ,MA","protected":false,"followers_count":274,"friends_count":284,"listed_count":0,"created_at":"Tue Jul 17 19:26:32 +0000 2012","favourites_count":420,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":1931,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3637342214\/7503c92c6021bb5bb88e148827d18a18_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3637342214\/7503c92c6021bb5bb88e148827d18a18_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701626206\/1361147700","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:06:01 +0000 2013","id":333296957198065665,"id_str":"333296957198065665","text":"Why a sudden change","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100294356,"id_str":"100294356","name":"Melanie Dubon","screen_name":"melaniesdx3","location":"Revere, MA","url":null,"description":"Work hard, stay humble \u2653. IG: melaniedubon","protected":false,"followers_count":471,"friends_count":130,"listed_count":1,"created_at":"Tue Dec 29 18:57:01 +0000 2009","favourites_count":1659,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":18930,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/406066644\/16.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/406066644\/16.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3610897492\/d3eaecb3f3fbc2e9757bf4a29f0a775a_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3610897492\/d3eaecb3f3fbc2e9757bf4a29f0a775a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100294356\/1357083082","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"melaniesdx3","name":"Melanie Dubon","id":100294356,"id_str":"100294356","indices":[3,15]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464914345985,"id_str":"333297464914345985","text":"RT @Zondi_Elihle: Xa u Mampintsha enxiba o skinny mna ndilinde nton?! Ninyile shame!","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":738737929,"id_str":"738737929","name":"\u2665Kay Lisa G\u2665","screen_name":"MsKay_lisa","location":"PE and Durban (SA)","url":"http:\/\/facebook.com\/kaykayakazi.s.gqabe","description":"I'm a gorgeous Young,Tall,Freckled,developing model and a God fearing woman ;)\u2665","protected":false,"followers_count":138,"friends_count":160,"listed_count":0,"created_at":"Sun Aug 05 15:10:53 +0000 2012","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2447,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3636658560\/98a27500d068435e3d01f0087a10b8ee_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3636658560\/98a27500d068435e3d01f0087a10b8ee_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:03:47 +0000 2013","id":333296392787333120,"id_str":"333296392787333120","text":"Xa u Mampintsha enxiba o skinny mna ndilinde nton?! Ninyile shame!","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62256266,"id_str":"62256266","name":"Sbonda Sgantsontso","screen_name":"Zondi_Elihle","location":"Cape Town","url":"http:\/\/thebaconbastard.wordpress.com","description":"This just got awkward too fast.","protected":false,"followers_count":636,"friends_count":449,"listed_count":0,"created_at":"Sun Aug 02 13:03:15 +0000 2009","favourites_count":154,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":24499,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3639563764\/e917cc8b1abb3c7070229adbcdde0d73_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3639563764\/e917cc8b1abb3c7070229adbcdde0d73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62256266\/1368097635","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"tl"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Zondi_Elihle","name":"Sbonda Sgantsontso","id":62256266,"id_str":"62256266","indices":[3,16]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931123200,"id_str":"333297464931123200","text":null,"source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151075779,"id_str":"151075779","name":"\u2665Querida\u2665","screen_name":"ChiviiCuello","location":"","url":null,"description":"Por un 2013 LLENO de d\u00edas MEMORABLES \r\n 03-03-13\r\n (= Jonatica-Lovatica-Directioner =)\r\nS\u00ed, estoy bien http:\/\/t.co\/vp9Df4uSDB","protected":false,"followers_count":81,"friends_count":224,"listed_count":1,"created_at":"Wed Jun 02 14:59:41 +0000 2010","favourites_count":753,"utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"verified":false,"statuses_count":7806,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"232326","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/860104536\/be4d0c6dd42bf1ded4aaf68239bd1571.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/860104536\/be4d0c6dd42bf1ded4aaf68239bd1571.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3566269061\/7410259b10a34f7af7822ad81f728de0_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3566269061\/7410259b10a34f7af7822ad81f728de0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151075779\/1363746727","profile_link_color":"14BEE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9696EB","profile_text_color":"403939","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:51:21 +0000 2013","id":333293263937236992,"id_str":"333293263937236992","text":"http:\/\/t.co\/CBwIb4aCGJ @ChiviiCuello :D","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117382488,"id_str":"117382488","name":"Una Sacapuntas\u2665 ","screen_name":"leilazarate","location":"argentina","url":null,"description":"I'm in Love with you -\r\n1 Irlandes y 4 Britanicos se robaron mi corazon - One Direction \u2665","protected":false,"followers_count":403,"friends_count":787,"listed_count":2,"created_at":"Thu Feb 25 11:37:06 +0000 2010","favourites_count":6330,"utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"verified":false,"statuses_count":9582,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/813613794\/04e17a8ded6e932f4f1b54dc47dccac6.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/813613794\/04e17a8ded6e932f4f1b54dc47dccac6.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3379315360\/66374a61fece9b8e07d4c9ac5a30644b_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3379315360\/66374a61fece9b8e07d4c9ac5a30644b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117382488\/1363189058","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/CBwIb4aCGJ","expanded_url":"http:\/\/www.youtube.com\/watch?feature=player_embedded&v=7c2zn7hVRtY","display_url":"youtube.com\/watch?feature=\u2026","indices":[0,22]}],"user_mentions":[{"screen_name":"ChiviiCuello","name":"\u2665Querida\u2665","id":151075779,"id_str":"151075779","indices":[23,36]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/CBwIb4aCGJ","expanded_url":"http:\/\/www.youtube.com\/watch?feature=player_embedded&v=7c2zn7hVRtY","display_url":"youtube.com\/watch?feature=\u2026","indices":[17,39]}],"user_mentions":[{"screen_name":"leilazarate","name":"Una Sacapuntas\u2665 ","id":117382488,"id_str":"117382488","indices":[3,15]},{"screen_name":"ChiviiCuello","name":"\u2665Querida\u2665","id":151075779,"id_str":"151075779","indices":[40,53]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931131392,"id_str":"333297464931131392","text":"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107879573,"id_str":"107879573","name":"Royce\u26a1\u264c","screen_name":"RozaayRoycee","location":"\u2708\u270c","url":null,"description":"Loui V bag, tatts on ya arm, high heel shoes make you six feet tall, everybody wants you, you can have them all.","protected":false,"followers_count":786,"friends_count":609,"listed_count":2,"created_at":"Sun Jan 24 02:26:39 +0000 2010","favourites_count":38,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":16351,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/293451856\/super_star_status_pnk.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/293451856\/super_star_status_pnk.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3628992192\/fa559727d9b9baa1640199339c0151db_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3628992192\/fa559727d9b9baa1640199339c0151db_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107879573\/1355362781","profile_link_color":"20E6E6","profile_sidebar_border_color":"E9F5F5","profile_sidebar_fill_color":"11151F","profile_text_color":"D117D1","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 15:18:46 +0000 2013","id":333239769192607744,"id_str":"333239769192607744","text":"A #Leos Mindset: I am good at giving myself everything that I need.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125786481,"id_str":"125786481","name":"ZodiacFact","screen_name":"ZodiacFacts","location":"South Florida","url":"http:\/\/zodiacfacts.blogspot.com\/","description":"I give you information on all Zodiac Signs that are researched. Email me at ZodiacFact@Gmail.com for any business. Co-Owner of the page @The12Signs","protected":false,"followers_count":1604352,"friends_count":4547,"listed_count":11640,"created_at":"Tue Mar 23 21:40:41 +0000 2010","favourites_count":1178,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":62176,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/813051433\/8f770aad16db8e70f3b9c76cb144645b.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/813051433\/8f770aad16db8e70f3b9c76cb144645b.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3420833131\/273096a4bb4989daf4c2054fe09bb4ab_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3420833131\/273096a4bb4989daf4c2054fe09bb4ab_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":444,"favorite_count":152,"entities":{"hashtags":[{"text":"Leos","indices":[2,7]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Leos","indices":[19,24]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"ZodiacFacts","name":"ZodiacFact","id":125786481,"id_str":"125786481","indices":[3,15]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464939524097,"id_str":"333297464939524097","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224556084,"id_str":"224556084","name":"Mark Bullock","screen_name":"Bully5HVFC","location":"Newcastle upon Tyne","url":null,"description":"Current Hazlerigg VFC Gaffa, HJFC Chairman, Junior Football Coach, Partial to any sport, Football, Cricket & Rugby mainly! \n\n#KebabsbeforeAbs","protected":false,"followers_count":435,"friends_count":428,"listed_count":6,"created_at":"Thu Dec 09 08:52:30 +0000 2010","favourites_count":80,"utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"verified":false,"statuses_count":15156,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2218593729\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2218593729\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224556084\/1352576290","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:25:24 +0000 2013","id":333286736446779392,"id_str":"333286736446779392","text":"I tell you what, I bet the 3 players in the #MCFC squad that actually care are feeling pretty low right now.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360472623,"id_str":"360472623","name":"Arsene's Eyes","screen_name":"Arsenes_Eyes","location":"London","url":null,"description":"Mainly Arsenal, all sport. I will try to make you laugh. I hope to occasionally succeed.","protected":false,"followers_count":27655,"friends_count":551,"listed_count":316,"created_at":"Tue Aug 23 08:04:11 +0000 2011","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3127,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1509491546\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1509491546\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360472623\/1353194765","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":32,"favorite_count":7,"entities":{"hashtags":[{"text":"MCFC","indices":[44,49]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MCFC","indices":[62,67]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Arsenes_Eyes","name":"Arsene's Eyes","id":360472623,"id_str":"360472623","indices":[3,16]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926945280,"id_str":"333297464926945280","text":"RT @bbcdoctorwho: Want more #DoctorWho? Catch the gripping prequel to next week's finale on Red Button or right here: http:\/\/t.co\/SfwD7h9TNj","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066725972,"id_str":"1066725972","name":"chris chadwick","screen_name":"ChristophChad","location":"","url":null,"description":"I've become quite fond of the internet. It's maybe why I'm always on it?","protected":false,"followers_count":6,"friends_count":53,"listed_count":0,"created_at":"Sun Jan 06 21:19:50 +0000 2013","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3423054066\/c109db91b805206189c2172ec6697903_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3423054066\/c109db91b805206189c2172ec6697903_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1066725972\/1358108420","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:46:05 +0000 2013","id":333291942173609985,"id_str":"333291942173609985","text":"Want more #DoctorWho? Catch the gripping prequel to next week's finale on Red Button or right here: http:\/\/t.co\/SfwD7h9TNj","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237670274,"id_str":"237670274","name":"Doctor Who Official","screen_name":"bbcdoctorwho","location":"","url":"http:\/\/www.bbc.co.uk\/doctorwho","description":"The official Twitter feed for the BBC's popular drama, Doctor Who.","protected":false,"followers_count":466360,"friends_count":0,"listed_count":3446,"created_at":"Thu Jan 13 10:45:49 +0000 2011","favourites_count":0,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":true,"statuses_count":1056,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110201","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/830949886\/037028861bdd1f7631ffc84b0c372eb2.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/830949886\/037028861bdd1f7631ffc84b0c372eb2.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3462766123\/1e29b9d3a50165dad2f5243f6a2c9380_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3462766123\/1e29b9d3a50165dad2f5243f6a2c9380_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237670274\/1364839640","profile_link_color":"FCBC5A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"00304C","profile_text_color":"FFFFFF","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":188,"favorite_count":119,"entities":{"hashtags":[{"text":"DoctorWho","indices":[10,20]}],"symbols":[],"urls":[{"url":"http:\/\/t.co\/SfwD7h9TNj","expanded_url":"http:\/\/bbc.in\/12oYg2Y","display_url":"bbc.in\/12oYg2Y","indices":[100,122]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DoctorWho","indices":[28,38]}],"symbols":[],"urls":[{"url":"http:\/\/t.co\/SfwD7h9TNj","expanded_url":"http:\/\/bbc.in\/12oYg2Y","display_url":"bbc.in\/12oYg2Y","indices":[118,140]}],"user_mentions":[{"screen_name":"bbcdoctorwho","name":"Doctor Who Official","id":237670274,"id_str":"237670274","indices":[3,16]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464905965568,"id_str":"333297464905965568","text":"\u60e1\u306e\u83ef\u306e\u4ef2\u6751\u3055\u3093\u30d0\u30fc\u30b8\u30e7\u30f3\u306eOP\u304c\u3084\u3070\u3044\u3000\u4f5c\u696d\u7528BGM\u306b\u3057\u305f\u3044\u306e\u3067CD\u306f\u3088","source":"\u003ca href=\"https:\/\/chrome.google.com\/extensions\/detail\/encaiiljifbdbjlphpgpiimidegddhic\" rel=\"nofollow\"\u003eSilver Bird\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63504914,"id_str":"63504914","name":"\u4e9c\u9ebb\u4e43\u6f84","screen_name":"kai_ogre","location":"\u30a8\u30eb\u30d5\u30fc\u30f3\u306e\u7fa4\u308c\u306e\u4e2d","url":"http:\/\/www.pixiv.net\/member.php?id=541510","description":"\u3048\u308b\u3075\u30fc\u3093\u3082\u3075\u3082\u3075\u3000\u3075\u3049\u3063\u3053\u3082\u3075\u3082\u3075\u3000\u30a8\u30eb\u30d5\u30fc\u30f3\u2640\u30ec\u30d9\u30eb1\u81c6\u75c5\u306b\u5bbf\u308a\u6728\u306716\u30bf\u30fc\u30f3\u304b\u3051\u3066\u6bba\u3055\u308c\u305f\u3044","protected":false,"followers_count":75,"friends_count":77,"listed_count":4,"created_at":"Thu Aug 06 18:49:02 +0000 2009","favourites_count":89,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":21208,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3550952888\/913e1b41baa4d3db0264a846f0238841_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3550952888\/913e1b41baa4d3db0264a846f0238841_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63504914\/1351171479","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"ja"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918548481,"id_str":"333297464918548481","text":"RT @mo_mo_k1: \u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647 \u0623\u0646\u0647\u0627 \u062a\u062d\u064a\u0641\u0647\n\n#\u062c\u0639\u0644\u0647 \u064a\u0633\u0642\u0649\n\n\u064a\u0648\u0645 \u0641\u0631\u0642\u0627\u0643\u0645 \u0639\u0644\u0649 \u062e\u064a\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":779614712,"id_str":"779614712","name":"( \u0646\u0635\u0631\u0646\u062a\u0648\u0633 1)","screen_name":"fsfdd212","location":"\u0627\u0644\u0631\u064a\u0627\u0636 ","url":null,"description":"\u0641\u0647\u0640\u0640\u062f( \u0627\u0628\u0648 \u0633\u0639\u0648\u062f ) \u0627\u0644\u0635\u062f\u0642 \u0648\u0627\u0644\u0635\u0631\u0627\u062d\u0647 \u0642\u0644\u064a\u0644 \u0627\u0644\u0645\u062a\u0635\u0641 \u0628\u0647\u0627 \u0644\u0630\u0644\u0643 \u0627\u062d\u0628 \u0627\u0644\u0645\u062a\u0635\u0641\u064a\u0646 \u0628\u0647\u0627 \u0648\u0647\u0645 \u0642\u0644\u064a\u0644\u0648\u0646","protected":false,"followers_count":1881,"friends_count":999,"listed_count":1,"created_at":"Sat Aug 25 05:17:19 +0000 2012","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12508,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3207618439\/c99621ba6f8add24da99ad9be64e0f3d_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3207618439\/c99621ba6f8add24da99ad9be64e0f3d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779614712\/1366718809","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:07:14 +0000 2013","id":333297262090391552,"id_str":"333297262090391552","text":"\u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647 \u0623\u0646\u0647\u0627 \u062a\u062d\u064a\u0641\u0647\n\n#\u062c\u0639\u0644\u0647 \u064a\u0633\u0642\u0649\n\n\u064a\u0648\u0645 \u0641\u0631\u0642\u0627\u0643\u0645 \u0639\u0644\u0649 \u062e\u064a\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1317160658,"id_str":"1317160658","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u0631\u064a\u0639\u0631","screen_name":"mo_mo_k1","location":"","url":null,"description":"\u0628\u0633\u0645\u0643 \u0627\u0644\u0644\u0647\u0645 \u0646\u062d\u064a\u0627 \u0648 \u0646\u0645\u0648\u062a \u0648 \u0628\u0641\u0636\u0644\u0643 \u0645\u0627\u0646\u062d\u0646\u062a \u0631\u0624\u0633\u0646\u0627 \u0644\u063a\u064a\u0631\u0643","protected":false,"followers_count":187,"friends_count":126,"listed_count":0,"created_at":"Sat Mar 30 20:48:42 +0000 2013","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3516378668\/e02d37af2371d1b495f8c7a3f5ffd8e1_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3516378668\/e02d37af2371d1b495f8c7a3f5ffd8e1_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u0639\u0644\u0647","indices":[22,27]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ar"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u0639\u0644\u0647","indices":[36,41]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"mo_mo_k1","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u0631\u064a\u0639\u0631","id":1317160658,"id_str":"1317160658","indices":[3,12]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918556672,"id_str":"333297464918556672","text":"RT @GetFUTfree: We verloten Nani via http:\/\/t.co\/gjiK2ZvtEA dus het is totaal willekeurig! Maar daarbij moet je natuurlijk wel promoten wan\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1122502326,"id_str":"1122502326","name":"#NoScam #Verloting","screen_name":"FUTVERLOTING45","location":"","url":null,"description":"promoting! 1x = 300 coins 2x = 500 coins 5x = 1K 10x = 2K 1 maand elke dag 10x = 10K 1 maand elke dag 20x = 25K ik geef ook advies voor je team!","protected":false,"followers_count":312,"friends_count":274,"listed_count":1,"created_at":"Sat Jan 26 16:39:33 +0000 2013","favourites_count":116,"utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":false,"verified":false,"statuses_count":6314,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3643899854\/1cf77b8eae4cb781d840658478af55c3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3643899854\/1cf77b8eae4cb781d840658478af55c3_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:07:01 +0000 2013","id":333297206381662208,"id_str":"333297206381662208","text":"We verloten Nani via http:\/\/t.co\/gjiK2ZvtEA dus het is totaal willekeurig! Maar daarbij moet je natuurlijk wel promoten want wij kiezen 1\/2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1418019500,"id_str":"1418019500","name":"GetFUTfree","screen_name":"GetFUTfree","location":"Playstation 3","url":null,"description":"Wij geven spelers weg, zijn bereid te handelen voor je en we scammen niet.","protected":false,"followers_count":56,"friends_count":140,"listed_count":0,"created_at":"Fri May 10 12:41:59 +0000 2013","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":163,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3639860173\/08602318c76cab2369ffbc96ba1e1d97_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3639860173\/08602318c76cab2369ffbc96ba1e1d97_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/gjiK2ZvtEA","expanded_url":"http:\/\/www.random.org","display_url":"random.org","indices":[21,43]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/gjiK2ZvtEA","expanded_url":"http:\/\/www.random.org","display_url":"random.org","indices":[37,59]}],"user_mentions":[{"screen_name":"GetFUTfree","name":"GetFUTfree","id":1418019500,"id_str":"1418019500","indices":[3,14]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464914354176,"id_str":"333297464914354176","text":"@Loki_Charmed Ciao. Be Well, stay crazy","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":333296578766991360,"in_reply_to_status_id_str":"333296578766991360","in_reply_to_user_id":1389356078,"in_reply_to_user_id_str":"1389356078","in_reply_to_screen_name":"Loki_Charmed","user":{"id":1107141967,"id_str":"1107141967","name":"Spoon Media","screen_name":"SpoonMedia_yyz","location":"","url":null,"description":"Technology advocates, enthusiasts, developers. We value innovation, transparency, and expansion of technological frontiers for the betterment of humankind.","protected":false,"followers_count":14,"friends_count":52,"listed_count":0,"created_at":"Sun Jan 20 19:47:57 +0000 2013","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":230,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"380C22","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/768975100\/da3fab7196724d7e76cbf11ad5d56ad5.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/768975100\/da3fab7196724d7e76cbf11ad5d56ad5.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3136305800\/616c98ef7e82aca7c8dfea20d51e3ad1_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3136305800\/616c98ef7e82aca7c8dfea20d51e3ad1_normal.jpeg","profile_link_color":"342045","profile_sidebar_border_color":"D4D9D9","profile_sidebar_fill_color":"89BDBF","profile_text_color":"275278","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Loki_Charmed","name":"Loki Laufeyson","id":1389356078,"id_str":"1389356078","indices":[0,13]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926928896,"id_str":"333297464926928896","text":"RT @bar8_rt: \u26a0\u270b\u0627\u0639\u0644\u0627\u0646 \n\n\u0644\u0645\u062f\u0629 \u062b\u0644\u0627\u062b \u0633\u0627\u0639\u0627\u062a \u060c \u0636\u064a\u0641\u0646\u064a \u0648\u0627\u0636\u064a\u0641\u0643 \u0645\u0628\u0627\u0634\u0631\u0629\n\n\u0648\u0627\u0644\u0644\u064a \u0645\u0627\u0636\u0641\u062a\u0647 \u064a\u0646\u0628\u0647\u0646\u064a","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1272315504,"id_str":"1272315504","name":" .. r\u0455\u043c\u03c4\u03ba *\u0323","screen_name":"fares_852","location":"\u0627\u0644\u0631\u064a\u0627\u0636 ","url":null,"description":"\u062c\u0645\u064a\u0639 \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \ufedf\u0622 \u062a\u0639\u0628\u0631 \u0639\u0646 \u062d\u064a\u0627\u0627\ufb60\u064a \u0628\u0644 \u0645\u062c\u0631\u062f \u0633\u0637\u0648\u0631 \u0631\u0627\u0642\u062a \ufedf\u064a\u0651 \u0641\u062d\u064a\u0627\u062a\u064a \ufedf\u0622 \u062a\u0646\u0637\u0631\u062d \u0627\u0645\u0627\u0645 \u0627\u0644\u062c\u0645\u064a\u0639","protected":false,"followers_count":1079,"friends_count":1051,"listed_count":1,"created_at":"Sat Mar 16 13:26:29 +0000 2013","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4257,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3635440351\/e30850dd6baf635b7dd08f701f9232f2_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3635440351\/e30850dd6baf635b7dd08f701f9232f2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1272315504\/1368105956","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:07:56 +0000 2013","id":333282338115035136,"id_str":"333282338115035136","text":"\u26a0\u270b\u0627\u0639\u0644\u0627\u0646 \n\n\u0644\u0645\u062f\u0629 \u062b\u0644\u0627\u062b \u0633\u0627\u0639\u0627\u062a \u060c \u0636\u064a\u0641\u0646\u064a \u0648\u0627\u0636\u064a\u0641\u0643 \u0645\u0628\u0627\u0634\u0631\u0629\n\n\u0648\u0627\u0644\u0644\u064a \u0645\u0627\u0636\u0641\u062a\u0647 \u064a\u0646\u0628\u0647\u0646\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844120118,"id_str":"844120118","name":"\u0627\u0644\u0628\u0631\u0642 \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 +RT","screen_name":"bar8_rt","location":"\u0627\u0644\u0645\u0646\u0634\u0646","url":null,"description":"\u274c\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0646\u0633\u0627\u0626\u064a\u0629 \u0648\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629 \u0644\u064a\u0633 \u0644\u0647\u0627 \u0631\u064a\u062a\u0648\u064a\u062a\u274c \u0641\u0648\u0644\u0648 \u0645\u064a =\u0641\u0648\u0644\u0648\u0628\u0627\u0643 \u0648\u0627\u0644\u0623\u0646\u0641\u0648\u0644\u0648\u0628\u0645\u062b\u0644\u0647 \u0644\u0644\u0641\u0648\u0644\u0648\u0628\u0627\u0643 \u0627\u0646\u062a\u0638\u0631\u0662\u0664 \u0633\u0627\u0639\u0629 \u0625\u0630\u0627\u062f\u062e\u0644\u062a \u0627\u0644\u0628\u0627\u064a\u0648 \u0642\u0644(\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645)","protected":false,"followers_count":86652,"friends_count":77935,"listed_count":133,"created_at":"Mon Sep 24 19:05:41 +0000 2012","favourites_count":79,"utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"verified":false,"statuses_count":57787,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3411084987\/10ea482c041374d6e07bc0e6d77c2933_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3411084987\/10ea482c041374d6e07bc0e6d77c2933_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844120118\/1368267487","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":43,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ar"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"bar8_rt","name":"\u0627\u0644\u0628\u0631\u0642 \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 +RT","id":844120118,"id_str":"844120118","indices":[3,11]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464901763072,"id_str":"333297464901763072","text":"Ya estoy acostumbrado a un amor desechable (8)","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96430804,"id_str":"96430804","name":"Alexis ","screen_name":"alexiscastroman","location":"","url":null,"description":"A&A 3 22\/12\/12","protected":false,"followers_count":433,"friends_count":548,"listed_count":0,"created_at":"Sat Dec 12 22:23:13 +0000 2009","favourites_count":1553,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36990,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3643256110\/ffcf6db63e2c17b4bcada8364d00b7a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3643256110\/ffcf6db63e2c17b4bcada8364d00b7a7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96430804\/1367237956","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"es"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926957568,"id_str":"333297464926957568","text":"Peluuuuuk RT @mimiiww20: Dinging bgttttttt zzzzz :&&","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220575843,"id_str":"220575843","name":"Rissa Bella Revita A","screen_name":"rissarevitaaa","location":"","url":null,"description":"Skype\/Line: rissarevita . Bahagia bersama senyuman, tertawa sebanyak kamu bernapas, dan cinta selama kamu hidup \u2665 @adityaiping","protected":false,"followers_count":1043,"friends_count":329,"listed_count":0,"created_at":"Sun Nov 28 05:36:00 +0000 2010","favourites_count":1,"utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":12325,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFE3BA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/845655518\/dd60d2b4e921913b6976ded9b35ff877.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/845655518\/dd60d2b4e921913b6976ded9b35ff877.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3622330096\/4c453703a8a8cdb19dcc4baae4923d73_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3622330096\/4c453703a8a8cdb19dcc4baae4923d73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220575843\/1368190348","profile_link_color":"FF386A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"291C0D","profile_text_color":"53AB8D","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"mimiiww20","name":"Ismi husna hidayah","id":92212858,"id_str":"92212858","indices":[13,23]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"id"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931127297,"id_str":"333297464931127297","text":"#directionersandbeliebersfollowparty\n1)RT This\n2)Follow The Believers And The Directioners\n3)Follow Me I'll Follow You Back\n4)See The Magic","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954009091,"id_str":"954009091","name":"\u262fLouis Tommo Gravy\u262f","screen_name":"LorenaM_1D","location":"Directioner Land!","url":null,"description":"|Louis Tomlinson Girl | Stalker Alert | @tomandrewsmusi @realmandyrain @Jadagrace @ItsMidnightRed @RealKiddSmyllz @LilDope Followed me | 0\/5 |","protected":false,"followers_count":2337,"friends_count":2353,"listed_count":1,"created_at":"Sat Nov 17 17:35:19 +0000 2012","favourites_count":57,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1309,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/859556344\/415f2c0357810913ae70db7f6593f129.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/859556344\/415f2c0357810913ae70db7f6593f129.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3609676736\/621dc1bb05bb976d9b781def8fb181fc_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3609676736\/621dc1bb05bb976d9b781def8fb181fc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954009091\/1367683120","profile_link_color":"DF7A18","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"07D892","profile_text_color":"D26019","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"741e21eeea82f00a","url":"http:\/\/api.twitter.com\/1\/geo\/id\/741e21eeea82f00a.json","place_type":"city","name":"Joliet","full_name":"Joliet, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-88.280125,41.456794],[-88.280125,41.587475],[-87.990778,41.587475],[-87.990778,41.456794]]]},"attributes":{}},"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"directionersandbeliebersfollowparty","indices":[0,36]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464910159873,"id_str":"333297464910159873","text":"[K-Drama Foods] Unstoppable High Kick and Yun Ho\u2019s Cake http:\/\/t.co\/04lIZwh8Ne (v: soompi)","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130083802,"id_str":"130083802","name":"\uc548\ub2c8\uc0ac","screen_name":"abluensj","location":"JongWoon's Ass =\u00de","url":"http:\/\/ahn-nisa.tumblr.com\/","description":"Just ELF\u2192 EverLastingFriend, EverLastingFamily, EverLastingFangirl, EverLastingFan of \uc288\ud37c\uc8fc\ub2c8\uc5b4. SU-GEN HATERS! #Shadows16 #BlockB. Pickyfollow. That's me. Problem?","protected":false,"followers_count":1333,"friends_count":865,"listed_count":7,"created_at":"Tue Apr 06 07:39:27 +0000 2010","favourites_count":428,"utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"verified":false,"statuses_count":178305,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"92C3EB","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/664504361\/00ae509414fbd012b6f3e5cacbffe048.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/664504361\/00ae509414fbd012b6f3e5cacbffe048.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781933792\/c904fa35a4efcc089617a7a0081a1391_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781933792\/c904fa35a4efcc089617a7a0081a1391_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130083802\/1348140067","profile_link_color":"333399","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"051824","profile_text_color":"CDE0FA","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/04lIZwh8Ne","expanded_url":"http:\/\/bit.ly\/13O1bUA","display_url":"bit.ly\/13O1bUA","indices":[56,78]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"medium","lang":"en"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464939532289,"id_str":"333297464939532289","text":"That impressionist was so funny! I love him! #bgt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192976676,"id_str":"192976676","name":"Becky Hollis","screen_name":"BeckyHollis_","location":"East Sussex, United Kingdom","url":null,"description":"instagram: beckyhollis_","protected":false,"followers_count":236,"friends_count":221,"listed_count":0,"created_at":"Mon Sep 20 17:24:10 +0000 2010","favourites_count":69,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":5063,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3560239667\/6056ed684738481a11069e987763c376_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3560239667\/6056ed684738481a11069e987763c376_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192976676\/1366398981","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bgt","indices":[45,49]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464922750977,"id_str":"333297464922750977","text":"@cietyjezyk no co Ty !!!","source":"web","truncated":false,"in_reply_to_status_id":333297261528375296,"in_reply_to_status_id_str":"333297261528375296","in_reply_to_user_id":175701464,"in_reply_to_user_id_str":"175701464","in_reply_to_screen_name":"cietyjezyk","user":{"id":389110184,"id_str":"389110184","name":"Ma\u0142go\u015b Q","screen_name":"MalgosiaQbacka","location":"Gdynia","url":"http:\/\/emkaaa.cba.pl","description":"http:\/\/emkaaa.cba.pl","protected":false,"followers_count":56,"friends_count":121,"listed_count":0,"created_at":"Tue Oct 11 21:39:29 +0000 2011","favourites_count":228,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"verified":false,"statuses_count":595,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3480749499\/2bff156e7ac5e5a317c3e24319e4a08a_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3480749499\/2bff156e7ac5e5a317c3e24319e4a08a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389110184\/1365889409","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5ad0e80f1878dc65","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5ad0e80f1878dc65.json","place_type":"admin","name":"Gdynia","full_name":"Gdynia, Pomorskie","country_code":"PL","country":"Polska","bounding_box":{"type":"Polygon","coordinates":[[[18.357961,54.422728],[18.357961,54.58437],[18.569357999999998,54.58437],[18.569357999999998,54.422728]]]},"attributes":{}},"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"cietyjezyk","name":"Ula \u015aw.","id":175701464,"id_str":"175701464","indices":[0,11]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"pl"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464910163968,"id_str":"333297464910163968","text":"RT @v3rny: Getting ready to DJ with @SimonWebbe1 TONIGHT\n@Club195\nwith @AntonyCosta\n@NickdaFunk\n@DarrellPrivett1\n@ClubbinCouture http:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251675430,"id_str":"251675430","name":"Avital Karmi ","screen_name":"avitalkarmi","location":"The Netherlands ","url":null,"description":"20, I love singing, good music and writing. #Blue2013 Believe in yourself, #ProudBlueFan since 2002. I can I will I know I can \u2665\u2665\u2665\u2665 http:\/\/t.co\/QtfYThaikg","protected":false,"followers_count":956,"friends_count":1979,"listed_count":1,"created_at":"Sun Feb 13 16:40:52 +0000 2011","favourites_count":15409,"utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":105947,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0EB8","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/670755617\/67a811162a2221bb2a88d1bd56c630d6.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/670755617\/67a811162a2221bb2a88d1bd56c630d6.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3129073709\/9e7ada7fb67decc4f857bbcdfee76842_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3129073709\/9e7ada7fb67decc4f857bbcdfee76842_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251675430\/1366032101","profile_link_color":"138CC4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF9959","profile_text_color":"E1E763","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:21:07 +0000 2013","id":333285658682589184,"id_str":"333285658682589184","text":"Getting ready to DJ with @SimonWebbe1 TONIGHT\n@Club195\nwith @AntonyCosta\n@NickdaFunk\n@DarrellPrivett1\n@ClubbinCouture http:\/\/t.co\/c2PO2NGZzU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":130539245,"in_reply_to_user_id_str":"130539245","in_reply_to_screen_name":"Club195","user":{"id":20612775,"id_str":"20612775","name":"DJ Vernon James","screen_name":"v3rny","location":"Book: info@WorldWideDJmgt.com","url":"http:\/\/www.VernonJames.com","description":"Pro London & Essex DJ \u260a with 10+ years of domestic & international experience. Resident: @FunkyMojoe @FunkyBuddhaClub @SugarHut & @SwitchBarLondon","protected":false,"followers_count":5107,"friends_count":2467,"listed_count":13,"created_at":"Wed Feb 11 19:10:26 +0000 2009","favourites_count":62,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":5299,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/67932768\/Board.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/67932768\/Board.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3480019693\/0f6595d55f04d39a36089c541e42a3c9_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3480019693\/0f6595d55f04d39a36089c541e42a3c9_normal.jpeg","profile_link_color":"FF00C4","profile_sidebar_border_color":"030003","profile_sidebar_fill_color":"000000","profile_text_color":"FCFCFC","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"simonwebbe1","name":"Simon Webbe","id":50200114,"id_str":"50200114","indices":[25,37]},{"screen_name":"Club195","name":"Club 195","id":130539245,"id_str":"130539245","indices":[46,54]},{"screen_name":"AntonyCosta","name":"Antony Costa","id":125968046,"id_str":"125968046","indices":[60,72]},{"screen_name":"NickdaFunk","name":"NICK da FUNK","id":78013652,"id_str":"78013652","indices":[73,84]},{"screen_name":"DarrellPrivett1","name":"Darrell Privett","id":28425975,"id_str":"28425975","indices":[85,101]},{"screen_name":"ClubbinCouture","name":"Couture","id":309715745,"id_str":"309715745","indices":[102,117]}],"media":[{"id":333197010687635456,"id_str":"333197010687635456","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/BJ_A6nZCMAAy_0S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BJ_A6nZCMAAy_0S.jpg","url":"http:\/\/t.co\/c2PO2NGZzU","display_url":"pic.twitter.com\/c2PO2NGZzU","expanded_url":"http:\/\/twitter.com\/v3rny\/status\/333197010679246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":472,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":737,"h":1024,"resize":"fit"},"medium":{"w":600,"h":834,"resize":"fit"}},"source_status_id":333197010679246848,"source_status_id_str":"333197010679246848"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"v3rny","name":"DJ Vernon James","id":20612775,"id_str":"20612775","indices":[3,9]},{"screen_name":"simonwebbe1","name":"Simon Webbe","id":50200114,"id_str":"50200114","indices":[36,48]},{"screen_name":"Club195","name":"Club 195","id":130539245,"id_str":"130539245","indices":[57,65]},{"screen_name":"AntonyCosta","name":"Antony Costa","id":125968046,"id_str":"125968046","indices":[71,83]},{"screen_name":"NickdaFunk","name":"NICK da FUNK","id":78013652,"id_str":"78013652","indices":[84,95]},{"screen_name":"DarrellPrivett1","name":"Darrell Privett","id":28425975,"id_str":"28425975","indices":[96,112]},{"screen_name":"ClubbinCouture","name":"Couture","id":309715745,"id_str":"309715745","indices":[113,128]}]},"favorited":false,"retweeted":false,"filter_level":"low"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918564864,"id_str":"333297464918564864","text":"My Girlfriend Be Loyal, And I Just Don't Know How To Behave Myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353450519,"id_str":"353450519","name":"May15\u2661\u2665\u2661","screen_name":"ijusbecoolin","location":"","url":null,"description":"#teamjesus #teamsaved,daying daily for a chance to live foever :)","protected":false,"followers_count":195,"friends_count":293,"listed_count":0,"created_at":"Fri Aug 12 02:51:03 +0000 2011","favourites_count":174,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":2054,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/759726873\/363698b2fb4ad1a3071be7513981aaba.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/759726873\/363698b2fb4ad1a3071be7513981aaba.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3101868342\/d4d91eb98e541fcdc3a0f62dc5c69da5_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3101868342\/d4d91eb98e541fcdc3a0f62dc5c69da5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353450519\/1357765714","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} +{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926945281,"id_str":"333297464926945281","text":"\u0443 \u043d\u0430\u0441 \u0442\u0443\u0442 \u0430\u0444\u0442\u0430\u043f\u0430\u0442\u0438 \u0438 \u044f \u0447\u0443\u0432\u0441\u0442\u0432\u0443\u044e \u0447\u0442\u043e \u043f\u0438\u0437\u0434\u0435\u0446","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352513325,"id_str":"352513325","name":"\u0430\u0445\u0443\u0435\u043d\u043d\u0430\u044f \u043b\u043e\u0448\u0430\u0434\u044c","screen_name":"poltaryhina","location":"","url":null,"description":"\u043d\u0438\u0447\u0435\u0433\u043e \u043b\u0438\u0447\u043d\u043e\u0433\u043e","protected":false,"followers_count":74,"friends_count":34,"listed_count":0,"created_at":"Wed Aug 10 18:41:14 +0000 2011","favourites_count":42,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6914,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/783334960\/dc536fc6fd93d491addd514cc2aa26fd.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/783334960\/dc536fc6fd93d491addd514cc2aa26fd.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3450433568\/e7cce5f66473e31ab0e237beaf0a5128_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3450433568\/e7cce5f66473e31ab0e237beaf0a5128_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"ru"} +{ + "delete": { + "status": { + "id": 333297439769522176, + "user_id": 378065731, + "id_str": "333297439769522176", + "user_id_str": "378065731" + } + } +} +{"delete":{"status":{"id":50918460506636288,"user_id":61086951,"id_str":"50918460506636288","user_id_str":"61086951"}}} + diff --git a/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json b/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json new file mode 100644 index 000000000..f0d73a1f8 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json @@ -0,0 +1,96 @@ +{"in_reply_to_status_id_str":null,"text":"I hate this stupid bumper on my iPhone. I want a new case waahhhhh","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656791552","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"C0DEED","location":"Portland, Oregon.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782994666\/db3c2083f2a8840f6e76e9069bfaea61_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"16 & I talk to myself.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/446688343\/1351200744","favourites_count":444,"screen_name":"MsHaileyMary","profile_sidebar_border_color":"C0DEED","id_str":"446688343","verified":false,"lang":"en","statuses_count":2774,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782994666\/db3c2083f2a8840f6e76e9069bfaea61_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Mon Dec 26 01:51:32 +0000 2011","profile_text_color":"333333","name":"Hailey","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":199,"url":null,"id":446688343,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"profile_link_color":"0084B4","followers_count":221},"id":263290764656791552,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"The blues havin blues #NP","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973570","entities":{"user_mentions":[],"hashtags":[{"text":"NP","indices":[22,25]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"709397","location":"Sector 2814","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2651084006\/21ec3f4b10efef83c5a7e851bd7e87b0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"A0C5C7","description":"Nobody, just a guy who loves to write and play his role as a radio personality","favourites_count":6,"screen_name":"glenius","profile_sidebar_border_color":"86A4A6","id_str":"61529198","verified":false,"lang":"en","statuses_count":10600,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2651084006\/21ec3f4b10efef83c5a7e851bd7e87b0_normal.jpeg","listed_count":5,"geo_enabled":false,"created_at":"Thu Jul 30 16:25:21 +0000 2009","profile_text_color":"36A38B","name":"Glen Sahetapy","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme6\/bg.gif","friends_count":241,"url":"http:\/\/www.editorjournal.blogspot.com","id":61529198,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif","utc_offset":25200,"profile_link_color":"36AD9B","followers_count":338},"id":263290764660973570,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"queria muuuuito que a sora n\u00e3o fosse a aula hj . (yn ' nada contra a mae dela q ta doente , mais ngm q matem\u00e1tica hj","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764656771072","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"948D87","location":"Brasil","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2631736632\/88db098ed6e11c1589634d0240cbedd1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FAFAFA","description":"Quem nasceu pra ser figurante nunca vai roubar a cena. \u266b \/ http:\/\/ask.fm\/Rocheler","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/164432967\/1351285156","favourites_count":43,"screen_name":"falobesteira_","profile_sidebar_border_color":"FFFFFF","id_str":"164432967","verified":false,"lang":"pt","statuses_count":15849,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2631736632\/88db098ed6e11c1589634d0240cbedd1_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Thu Jul 08 21:41:46 +0000 2010","profile_text_color":"33F2E2","name":"q issu chelynha ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/694685386\/5acee8c4a14af6d05b4969aacd415444.jpeg","friends_count":132,"url":null,"id":164432967,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/694685386\/5acee8c4a14af6d05b4969aacd415444.jpeg","utc_offset":-14400,"profile_link_color":"0D0C0D","followers_count":188},"id":263290764656771072,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Wonder If Creshawna Smoking .","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660969473","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"","location":"With My Love KENNY .","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2764601408\/89b2c2799396d5c2190f48a4f47d9e28_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Fuck Ah BIO ' Just Follow ME . ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/739055311\/1349564626","favourites_count":91,"screen_name":"2TiGhT_4YoU","profile_sidebar_border_color":"fff","id_str":"739055311","verified":false,"lang":"en","statuses_count":10363,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2764601408\/89b2c2799396d5c2190f48a4f47d9e28_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Aug 05 18:55:18 +0000 2012","profile_text_color":"333333","name":"BabyDOLL : )","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/692115804\/971d7409058ddbbecf73cee376f9bb75.jpeg","friends_count":313,"url":null,"id":739055311,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/692115804\/971d7409058ddbbecf73cee376f9bb75.jpeg","utc_offset":null,"profile_link_color":"51B342","followers_count":372},"id":263290764660969473,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Finally home","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656783360","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","location":"Indiana","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2677750991\/48fc178f342a03f6d1f5cbe6685806bf_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"I have my own story just like everyone else. Want to know it just ask. ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/16125023\/1349296534","favourites_count":15,"screen_name":"karmennoe","profile_sidebar_border_color":"C0DEED","id_str":"16125023","verified":false,"lang":"en","statuses_count":456,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2677750991\/48fc178f342a03f6d1f5cbe6685806bf_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Thu Sep 04 04:14:52 +0000 2008","profile_text_color":"333333","name":"Karmen Noe","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":66,"url":null,"id":16125023,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"profile_link_color":"0084B4","followers_count":38},"id":263290764656783360,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"im so bored. someone please post a video on youtube so i can watch...","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665171969","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Gadsden (Gtown) Alabama","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2780220820\/f33bb55ff32624debebc413a8dffc5c6_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"HOLLA AT ME!! streetaisedent@gmail.com..Bomb! Bomb!","favourites_count":0,"screen_name":"TrumanHughes1","profile_sidebar_border_color":"C0DEED","id_str":"842621592","verified":false,"lang":"en","statuses_count":16,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2780220820\/f33bb55ff32624debebc413a8dffc5c6_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Sep 24 00:04:42 +0000 2012","profile_text_color":"333333","name":"Truman Hughes","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":96,"url":null,"id":842621592,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":4},"id":263290764665171969,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u5927\u91d1\u6255\u3063\u3066\u904a\u3070\u3057\u3066\u3082\u3089\u3046\u3002\u3082\u3046\u3053\u306e\u4e0a\u306a\u3044\u8d05\u6ca2\u3002\u3067\u3082\uff0c\u5b9f\u969b\u306b\u306f\u305d\u306e\u8d05\u6ca2\u306e\u672c\u8cea\u3092\u6e80\u55ab\u3067\u304d\u308b\u4eba\u306f\u9650\u3089\u308c\u3066\u308b\u3002\u305d\u3053\u306b\u76ee\u306b\u898b\u3048\u306a\u3044\u968e\u5c64\u304c\u3042\u308b\u3068\u304a\u3082\u3046\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686155776","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"FFFFFF","location":"Kodaira Tokyo Japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"17451B","description":"KS(Green62)\/WasedaUniv.(Schl Adv Sci\/Eng)\/SynBio\/ChronoBio\/iGEM2010-2012\/Travel\/Airplane\/ \u5bfa\u30fb\u5ead\u3081\u3050\u308a","favourites_count":17,"screen_name":"Merlin_wand","profile_sidebar_border_color":"000000","id_str":"94788486","verified":false,"lang":"ja","statuses_count":8641,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","listed_count":31,"geo_enabled":true,"created_at":"Sat Dec 05 13:07:32 +0000 2009","profile_text_color":"000000","name":"Marin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","friends_count":629,"url":null,"id":94788486,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","utc_offset":32400,"profile_link_color":"ADADAD","followers_count":426},"id":263290764686155776,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"!!\n\n\n\u0645\u0646 \u0639\u0627\u0634 \u0645\u0631\u0636\u064a \u0631\u0628\u0647 \u0648\u0648\u0627\u0644\u062f\u064a\u0646\u0647\n[\u0645\u0627\u0647\u0645\u062a\u0647 \u062f\u0646\u064a\u0627\u0647 \u0648\u0644\u0627\u0647\u0645\u0647 \u0627\u0644\u0646\u0627\u0633 ]\n\n\u0645\u0627\u062f\u0627\u0645\u0647 \u0627\u0644\u0644\u064a \u0635\u0627\u0646 \u0646\u0641\u0633\u0647 \u0628\u062f\u064a\u0646\u0647\n[\u064a\u0628\u0642\u0649 \u0639\u0632\u064a\u0632 \u0648\u0639\u064a\u0634\u062a\u0647 \u062a\u0631\u0641\u0639 \u0627\u0644\u0631\u0627\u0633]\n\n\n!!","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764694540289","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \/ \u062f\u0628\u064a","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2755157729\/ea552dc45f6d6f14767e371ecca35eb2_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"!! \u0643\u064f\u0644 \u0643\u0644\u0645\u0629 \u062a\u062e\u0631\u062c \u0645\u0646 \u0641\u0645\u0643 \u0644\u0646 \u062a\u0639\u0648\u062f \u0641\u062a\u062e\u064a\u0651\u0631 \u0643\u0644\u0645\u0627\u062a\u0643 \u062c\u064a\u062f\u0627\u064b !! (( \u0645\u062a\u0630\u0648\u0642 \u0644\u0644\u0634\u0639\u0631 \u0648\u0644\u0633\u062a \u0634\u0627\u0639\u0631 ))\n\u30c4\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/550736167\/1350079237","favourites_count":5,"screen_name":"humood3766","profile_sidebar_border_color":"C0DEED","id_str":"550736167","verified":false,"lang":"ar","statuses_count":1344,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2755157729\/ea552dc45f6d6f14767e371ecca35eb2_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 11 05:51:17 +0000 2012","profile_text_color":"333333","name":"\u062d\u0645\u0648\u062f \u0628\u0646 \u0646\u0627\u0635\u0631 \u0627\u0644\u0643\u0639\u0628\u064a","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":41,"url":null,"id":550736167,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":64},"id":263290764694540289,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u4e0a\u7d1a\u5546\u6cd5\u3067\u305d\u308d\u305d\u308d\u5f53\u3066\u3089\u308c\u305d\u3046\u306a\u6c17\u304c\u3057\u3066\u6016\u3044","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677763073","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"Tokyo","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1100497469\/ST340002002001_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u90fd\u5185\u306e\u67d0\u30ed\u30fc\u30b9\u30af\u30fc\u30eb\uff12\u5e74\u306e\u7537\u5b50\u5b66\u751f\u3002\u30d9\u30a4\u30b9\u30bf\u30fc\u30ba\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u3002\u3061\u306a\u307f\u306b\u30a2\u30a4\u30b3\u30f3\u306f\u30c9\u30ec\u30b9\u30c7\u30f3\u306e\u8857\u304b\u3089\u898b\u305f\u30a8\u30eb\u30d9\u5ddd\u3002","favourites_count":57,"screen_name":"akirayama0714","profile_sidebar_border_color":"C0DEED","id_str":"177113350","verified":false,"lang":"ja","statuses_count":2575,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1100497469\/ST340002002001_normal.jpg","listed_count":5,"geo_enabled":false,"created_at":"Wed Aug 11 08:09:45 +0000 2010","profile_text_color":"333333","name":"Akira Y.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":648,"url":null,"id":177113350,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":232},"id":263290764677763073,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"1 prob = 1 box of tartlets #CostFatcounting","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681965568","entities":{"user_mentions":[],"hashtags":[{"text":"CostFatcounting","indices":[27,43]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"ACDED6","location":"+62","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2770853520\/f636a4dca20a4487b51877dd8e2b380c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F6F6F6","description":"I faked my birth certificate","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/35099458\/1350364896","favourites_count":97,"screen_name":"RistieTartini","profile_sidebar_border_color":"EEEEEE","id_str":"35099458","verified":false,"lang":"en","statuses_count":25950,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2770853520\/f636a4dca20a4487b51877dd8e2b380c_normal.jpeg","listed_count":6,"geo_enabled":true,"created_at":"Sat Apr 25 01:07:41 +0000 2009","profile_text_color":"333333","name":"Ristie Tartini W.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme18\/bg.gif","friends_count":497,"url":null,"id":35099458,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","utc_offset":25200,"profile_link_color":"038543","followers_count":583},"id":263290764681965568,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u3010\u5b9a\u671f\u3011\u30a2\u30e1\u30d6\u30ed\u3084\u3063\u3066\u307e\u3059\u3002\u826f\u304b\u3063\u305f\u3089http:\/\/t.co\/8mSwdH5k","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003Etwittbot.net\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961474","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/profile.ameba.jp\/kiryulove-0324\/","indices":[19,39],"display_url":"profile.ameba.jp\/kiryulove-0324\/","url":"http:\/\/t.co\/8mSwdH5k"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"C0DEED","location":"\u9ad8\u5c3e\u3063\u3071\u3044\u306e\u8c37\u9593\u306e\u9593","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2754561029\/86181ba159eb44ef31db0ebaa30c24b5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u9ad8\u5c3e\u30af\u30e9\u30b9\u30bf\u3055\u3093\u3067\u3059\/\/\/\/\/\/\uff3c\u3066\u3089\u3057\u30fc\u30e9\u30d6\u30c3!\uff0f\u4ed6\u306b\u306f\u3001\u305f\u3063\u3064\u3093\u3068\u795e\u8c37\u3055\u3093\u3068\u304b\u597d\u304d\u3067\u3059\u3063!!\u30a4\u30e9\u30b9\u30c8\u3092\u63cf\u304f\u306e\u304c\u597d\u304d(*\u00b4\u2200\uff40*)\u898f\u5236\u57a2@kannna2525\u3000\u4e95\u53e3\u88d5\u9999\u3055\u3093\u30e1\u30a4\u30f3\u3067\u58f0\u771f\u4f3c\u3092\u3057\u3066\u307e\u3059\u3002\u30b5\u30d6\u3067\u5c0f\u5009\u552f\u3055\u3093\u3068\u65e9\u898b\u6c99\u7e54\u3055\u3093\u3084\u3063\u3066\u307e\u3059\u3002\u3053\u307f\u3085\u306b\u3066\u3043\u30fc\u306f\u4f11\u6b62\u4e2d..\u3002\u51f8\u5c02\u3057\u3066\u307e\u3059\u3002","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/612998890\/1350997595","favourites_count":183,"screen_name":"kannnaduki2525","profile_sidebar_border_color":"FFFFFF","id_str":"612998890","verified":false,"lang":"ja","statuses_count":9398,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2754561029\/86181ba159eb44ef31db0ebaa30c24b5_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Wed Jun 20 00:49:09 +0000 2012","profile_text_color":"333333","name":"\u3068\u306a\u308a\u306e\u795e\u7121\u304f\u3093\u2661\u30fb\u00b0 ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/691319974\/77e26fcac6c23258ca124b2fefd185dd.gif","friends_count":236,"url":"http:\/\/com.nicovideo.jp\/community\/co1677889","id":612998890,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/691319974\/77e26fcac6c23258ca124b2fefd185dd.gif","utc_offset":32400,"profile_link_color":"FF66CC","followers_count":252},"id":263290764681961474,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u3042\u3063\u305f\u307e\u3063\u305f\u3089\u7de9\u548c\u3055\u308c\u308b\u304b\u306a\uff5e\u3068\u601d\u3063\u3066\u98a8\u5442\u5165\u3063\u305f\u3051\u3069\u7b4b\u8089\u75db\u3058\u3083\u3042\u308b\u307e\u3044\u3057\u610f\u5473\u306a\u304b\u3063\u305f\u308f","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003EJanetter\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686131200","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Osaka","profile_background_color":"0099B9","location":"\u30db\u30e2\u306e\u3042\u308b\u3068\u3053\u308d","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2453147720\/5pblq49eyz45b335fdk7_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"95E8EC","description":"\u9ed2\u5b50\u53d7\u3068\u30e2\u30f3\u30cf\u30f3","favourites_count":2217,"screen_name":"a_somi","profile_sidebar_border_color":"5ED4DC","id_str":"122627808","verified":false,"lang":"ja","statuses_count":80887,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2453147720\/5pblq49eyz45b335fdk7_normal.png","listed_count":17,"geo_enabled":false,"created_at":"Sat Mar 13 10:15:35 +0000 2010","profile_text_color":"3C3940","name":"\u3042\u305d\u307f\u305d\u6c41","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/609482983\/58l0gi5bnp8lvjihpuxf.png","friends_count":120,"url":null,"id":122627808,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/609482983\/58l0gi5bnp8lvjihpuxf.png","utc_offset":32400,"profile_link_color":"0099B9","followers_count":103},"id":263290764686131200,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"http:\/\/t.co\/oUxXm7cb","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758977","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1JaRZ31K3","indices":[0,20],"display_url":"fb.me\/1JaRZ31K3","url":"http:\/\/t.co\/oUxXm7cb"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"LiberdadeCoruja","profile_sidebar_border_color":"C0DEED","id_str":"403509683","verified":false,"lang":"pt","statuses_count":11608,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Nov 02 16:06:15 +0000 2011","profile_text_color":"333333","name":"Liberdade ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":0,"url":null,"id":403509683,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":2},"id":263290764677758977,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u30ac\u30a4\u30ad\u30c1\u306a\u30ec\u30dd\u30fc\u30c8\u306a\u3075","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764677763072","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1921454796\/___normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"sigma2525","profile_sidebar_border_color":"C0DEED","id_str":"531999373","verified":false,"lang":"ja","statuses_count":154,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1921454796\/___normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Mar 21 07:15:32 +0000 2012","profile_text_color":"333333","name":"\u3057\u3050\u307e...\uff8c\uff6b\uff9b\uff8a\uff9e100\uff8a\uff9f\uff70","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":71,"url":null,"id":531999373,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":46},"id":263290764677763072,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u0623\u0631\u0642\u0627\u0645 \u062a\u0647\u0645\u0643 :\n\n\u0628\u0644\u063a \u0639\u062f\u062f \u0627\u0644\u0648\u0642\u064a\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u0635\u0631\u064a\u064a\u0646 \u0641\u064a \u062b\u0648\u0631\u0647 \u064a\u0646\u0627\u064a\u0631 \u0648\u0645\u0627 \u062a\u0628\u0639\u0647\u0627 \u062d\u0648\u0627\u0644\u064a 1000 \u0645\u0635\u0631\u064a\n\u0628\u0644\u063a \u0639\u062f\u062f \u0627\u0644\u0648\u0641\u064a\u0627\u062a \u0641\u064a \u0627\u062d\u062f\u0627\u062b... http:\/\/t.co\/O3jbvi8I","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673564672","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1E4rhrE1L","indices":[112,132],"display_url":"fb.me\/1E4rhrE1L","url":"http:\/\/t.co\/O3jbvi8I"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"9AE4E8","location":"Egypt","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1347033358\/195426_100000114956098_1110937_n_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E0FF92","description":"","favourites_count":2,"screen_name":"mo3taz","profile_sidebar_border_color":"87BC44","id_str":"8374212","verified":false,"lang":"en","statuses_count":3304,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1347033358\/195426_100000114956098_1110937_n_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Thu Aug 23 03:39:04 +0000 2007","profile_text_color":"000000","name":"Moutaz Adel","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":654,"url":"http:\/\/www.facebook.com\/moutaz.adel","id":8374212,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-14400,"profile_link_color":"0000FF","followers_count":581},"id":263290764673564672,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\uff11\u6642\u534a\u306b\u306f\u5bdd\u305f\u3044\u306a","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665171968","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"\u3072\u3087\u3046\u3054","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2724849893\/eb432548d837b5b2e077b28b8c2240a7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u8da3\u5473\u3067\u751f\u304d\u3066\u307e\u3059\u3001\u305f\u3060\u3081\u3093\u3069\u304f\u3055\u304c\u308a\u3002 \u597d\u304d\u306a\u3082\u306e\u3068\u305d\u308c\u4ee5\u5916\u306e\u5dee\u304c\u6fc0\u3057\u3044\u3067\u3059(`\u30fb\u03c9\u30fb\u00b4) Love\uff0aKAT-TUN\/\u99ac\u5834\u5fb9\/\u5de1\u97f3\u30eb\u30ab\/\u6b4c\u3044\u624b\u3055\u3093(nero\/\u3010\u84ee\u3011\/\u308a\u3076\/\u5b9f\u8c37\u306a\u306a\/\u82b1\u305f\u3093etc)\/\u30a2\u30cb\u30e1\/\u58f0\u512aetc","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/365538534\/1350308466","favourites_count":383,"screen_name":"Mi_rosa2541","profile_sidebar_border_color":"C0DEED","id_str":"365538534","verified":false,"lang":"ja","statuses_count":12530,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2724849893\/eb432548d837b5b2e077b28b8c2240a7_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Wed Aug 31 16:15:27 +0000 2011","profile_text_color":"333333","name":"\u307f \u307b","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":202,"url":null,"id":365538534,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":131},"id":263290764665171968,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u3069\u3084\u3063","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003E\u3064\u3044\u3063\u3077\u308b\/twipple\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673568769","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"FF6699","location":"\u5927\u962a\u306e\u3069\u3063\u304b","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784911802\/77864eec4fdf358aa80a195fb34b48f7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F5DCE4","description":"\u25bc\u6b4c\u3068\u7d75\u3068\u97f3\u697d\u304c\u3059\u304d\u3067\u3059 \u25bd\u8a73\u3057\u304f\u306f http:\/\/twpf.jp\/mahiru_0718 \u25bcicon\uff1a\u3042\u3044\u304b\u308f\u304f\u3093(ihrpen)\u304b\u3089 \u25bd\u898f\u5236\u57a2\u3010@mhr_ksi\u3011","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/279850797\/1348227627","favourites_count":956,"screen_name":"mahiru_0718","profile_sidebar_border_color":"FFFFFF","id_str":"279850797","verified":false,"lang":"ja","statuses_count":44116,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784911802\/77864eec4fdf358aa80a195fb34b48f7_normal.jpeg","listed_count":18,"geo_enabled":false,"created_at":"Sun Apr 10 04:19:03 +0000 2011","profile_text_color":"B3AFB3","name":"\u307e\u3072\u308b\uff20\u5ddd\u6f84\u9ed2\u5b50\u5145","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665414400\/8c87956eb3ccad94914427b264d2df82.jpeg","friends_count":397,"url":"http:\/\/com.nicovideo.jp\/community\/co1102173","id":279850797,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665414400\/8c87956eb3ccad94914427b264d2df82.jpeg","utc_offset":32400,"profile_link_color":"F08BAD","followers_count":358},"id":263290764673568769,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"Cc @MrSanDelaT http:\/\/t.co\/LnomfIIG","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973571","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"MrSanDelaT","id_str":"171122809","name":"Mr San De La T","id":171122809}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/geology.com\/hurricanes\/hurricane-names.shtml","indices":[15,35],"display_url":"geology.com\/hurricanes\/hur\u2026","url":"http:\/\/t.co\/LnomfIIG"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"642D8B","location":"Bogot\u00e1","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2664324460\/d902d1796f993f12f459e8add3c800a0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Siempre con una bella sorrisa.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/144354321\/1347984202","favourites_count":38,"screen_name":"tahuers","profile_sidebar_border_color":"65B0DA","id_str":"144354321","verified":false,"lang":"es","statuses_count":2475,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2664324460\/d902d1796f993f12f459e8add3c800a0_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Sun May 16 02:14:23 +0000 2010","profile_text_color":"3D1957","name":"andrea huertas ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/423708359\/02.jpg","friends_count":312,"url":null,"id":144354321,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/423708359\/02.jpg","utc_offset":-21600,"profile_link_color":"622B87","followers_count":157},"id":263290764660973571,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263287528923226112","text":"@a_ayk_bright \u3084\u3070\u304b\u3063\u305f\u3002\u305d\u3057\u3066\u3084\u3070\u304f\u3057\u305f(\u7b11)","in_reply_to_user_id_str":"512874215","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677742593","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"a_ayk_bright","id_str":"512874215","name":"\u3042\u3084\u3081\u308d\u3093\n","id":512874215}],"hashtags":[],"urls":[]},"in_reply_to_user_id":512874215,"in_reply_to_status_id":263287528923226112,"place":null,"coordinates":null,"in_reply_to_screen_name":"a_ayk_bright","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2748935901\/84f0a7b02c4b954cccba437306c770ef_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Azione prima delle parole","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/553706398\/1350743588","favourites_count":18,"screen_name":"ayamenmei","profile_sidebar_border_color":"C0DEED","id_str":"553706398","verified":false,"lang":"ja","statuses_count":1119,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2748935901\/84f0a7b02c4b954cccba437306c770ef_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sat Apr 14 17:36:37 +0000 2012","profile_text_color":"333333","name":"mei","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":31,"url":null,"id":553706398,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":33},"id":263290764677742593,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Datanya banyak teing meeb ,ngga tau make yg mana RT @lfikran: Belom,aku gak ngerti meebRT @adamyassar @lfikran @amekkun pr uda belom meeb?","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973569","entities":{"user_mentions":[{"indices":[53,61],"screen_name":"lfikran","id_str":"570384856","name":"fikranlukman","id":570384856},{"indices":[91,102],"screen_name":"adamyassar","id_str":"304852150","name":"Adam Yassar Afzal","id":304852150},{"indices":[103,111],"screen_name":"lfikran","id_str":"570384856","name":"fikranlukman","id":570384856},{"indices":[112,120],"screen_name":"amekkun","id_str":"81303125","name":"radit!","id":81303125}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2721617746\/53918b64d961fea5d7d96579ffe1e844_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000405","description":"","favourites_count":0,"screen_name":"adamyassar","profile_sidebar_border_color":"FFFFFF","id_str":"304852150","verified":false,"lang":"en","statuses_count":3185,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2721617746\/53918b64d961fea5d7d96579ffe1e844_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed May 25 06:42:08 +0000 2011","profile_text_color":"FFFFFF","name":"Adam Yassar Afzal","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/689315091\/b30071d337333d42fb0748049c914e9d.jpeg","friends_count":128,"url":null,"id":304852150,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/689315091\/b30071d337333d42fb0748049c914e9d.jpeg","utc_offset":25200,"profile_link_color":"132D85","followers_count":129},"id":263290764660973569,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"What that mouf do doe RT @lovelyjess_22: 2 of my followers almost made me cuss but nope wont catch me slipping","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003ETweetlogix\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686147584","entities":{"user_mentions":[{"indices":[25,39],"screen_name":"lovelyjess_22","id_str":"545577218","name":"Jessica ","id":545577218}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"140C0A","location":"Nik's world ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2735895121\/e2d82164763370a8d34aa55dc12a57a9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"Silly ass who likes 2 flirt,don't take my tweets seriously cuz I don't \nGot ur moms on my iPhone ;) \nCrushing softly on @msjonez88\n@ReeMUA my twife","favourites_count":23,"screen_name":"NonchalantNik3","profile_sidebar_border_color":"EB0000","id_str":"104362512","verified":false,"lang":"en","statuses_count":91952,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2735895121\/e2d82164763370a8d34aa55dc12a57a9_normal.jpeg","listed_count":8,"geo_enabled":false,"created_at":"Wed Jan 13 03:16:24 +0000 2010","profile_text_color":"AD0505","name":"Nik Da Jerk","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/362707402\/music.jpg","friends_count":505,"url":null,"id":104362512,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/362707402\/music.jpg","utc_offset":-21600,"profile_link_color":"EDDAE5","followers_count":697},"id":263290764686147584,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290057480339456","text":"@nuriesmaismail_ mksud kau?","in_reply_to_user_id_str":"620596575","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656795649","entities":{"user_mentions":[{"indices":[0,16],"screen_name":"nuriesmaismail_","id_str":"620596575","name":"\u2665UAF\u30c4","id":620596575}],"hashtags":[],"urls":[]},"in_reply_to_user_id":620596575,"in_reply_to_status_id":263290057480339456,"place":null,"coordinates":null,"in_reply_to_screen_name":"nuriesmaismail_","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"96E8EB","location":"Tweetland","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2686962582\/830adeb1dc70f85c1bf91720b3a09bab_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2FC1E6","description":"Islam | 13 | \u02e9\u03c3\u03ba\u043c\u03b1\u0438\u03b9\u03b1\u0438 | #TeamPBS | \u028b\u01a8\u025b \u028f\u03c3\u028b\u044f '\u044f\u025b\u03b1\u2113-\u025b\u028f\u025b\u01a8' \u0442\u03c3 \u044f\u025b\u03b1\u2113\u03b9\u0293\u025b \u0442\u043d\u025b \u044f\u025b\u03b1\u2113-\u2113\u03b9\u025b\u01a8 \u30c5","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/630647504\/1349528657","favourites_count":94,"screen_name":"Rahmann_","profile_sidebar_border_color":"FFFFFF","id_str":"630647504","verified":false,"lang":"en","statuses_count":2717,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2686962582\/830adeb1dc70f85c1bf91720b3a09bab_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon Jul 09 00:40:35 +0000 2012","profile_text_color":"000000","name":"\u024c\u03b1\u0570\u028d\u03b1\u019e\u30c5","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677937399\/0b0cf58eab6fb47e78036a93f5831698.jpeg","friends_count":103,"url":null,"id":630647504,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677937399\/0b0cf58eab6fb47e78036a93f5831698.jpeg","utc_offset":28800,"profile_link_color":"0084B4","followers_count":78},"id":263290764656795649,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Mom: I dont think there's gonna be school tomorrow and even if there is I dont want u to go, no complaining. Me: HELL YESSSS","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677771264","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Atlantic Time (Canada)","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782514334\/8f2e886ca4a7b31a2a16aaf2f75648f0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":258,"screen_name":"Cally_Peterson","profile_sidebar_border_color":"C0DEED","id_str":"802687681","verified":false,"lang":"en","statuses_count":489,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782514334\/8f2e886ca4a7b31a2a16aaf2f75648f0_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Sep 04 15:53:09 +0000 2012","profile_text_color":"333333","name":"Cally Peterson","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":118,"url":null,"id":802687681,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-14400,"profile_link_color":"0084B4","followers_count":65},"id":263290764677771264,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Uhuk*RT@syifatooz: Ternyata msh ada co yg sangat sabar, baik, setia n mau berkorban. So sweet (\u0283\u01aa\u2665\ufeec\u2665)\"","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961472","entities":{"user_mentions":[{"indices":[7,17],"screen_name":"syifatooz","id_str":"350674024","name":"Syifa \u2022\u2323\u0308\u2022","id":350674024}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Bangkok","profile_background_color":"C0DEED","location":"Jakarta-utara","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2735734197\/cf4f85a9cc0f1eb9829d1a426aae7958_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"STMT Trisakti Manajemen Transport Laut. hidup laut! \u263a ","favourites_count":0,"screen_name":"nurkholifaaaah","profile_sidebar_border_color":"C0DEED","id_str":"574199493","verified":false,"lang":"id","statuses_count":2638,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2735734197\/cf4f85a9cc0f1eb9829d1a426aae7958_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue May 08 01:49:29 +0000 2012","profile_text_color":"333333","name":"Nur Kholifah \u263a\u2665 ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":125,"url":null,"id":574199493,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":25200,"profile_link_color":"0084B4","followers_count":88},"id":263290764681961472,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290648092893184","text":"@catballneko \u3068\u3066\u3082\u5f31\u3044\u7cfb","in_reply_to_user_id_str":"399744168","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660981760","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"catballneko","id_str":"399744168","name":"\u306d\u3053\u306a\u3093\u3068\u304b\u306e\u3042\u308c","id":399744168}],"hashtags":[],"urls":[]},"in_reply_to_user_id":399744168,"in_reply_to_status_id":263290648092893184,"place":null,"coordinates":null,"in_reply_to_screen_name":"catballneko","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"1A1B1F","location":"Gunmer\u62f3 Kill you\u6b7b","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2535003734\/3_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"252429","description":"Gunmer\u570f\u3078\u3088\u3046\u3053\u305d\u3002\u4e09\u4e09\u4e09( \u055e\u0679\u055e)\uff7c\uff6d\uff70\uff9d!!!!!!\u8d85!!!!!!!!!!!\uff74\uff77\uff7b\uff72\uff6f\uff83\uff68\uff9d!!!!!!!!!!\u306aHouse\u304c\u5927\u597d\u7269\u306e\u81ea\u79f0DJ\u306e\u3088\u3046\u306a\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u307d\u3044\u4f55\u304b\u3002\u305d\u3053\u306f\u304b\u3068\u306a\u304f\u65cf\u9577\u3001\u30d7\u30ea\u30ad\u30e5\u30a2\u306b\u306a\u308a\u305f\u3044\u300cautumn-grass\u300d\u306e\u3057\u3085\u3055\u3044(\u307c\u3063\u3061)\u3002\/TELEXISTENCE\/\u7d9a\u304d\u306fWeb\u3067","favourites_count":27708,"screen_name":"crussfire","profile_sidebar_border_color":"FFFFFF","id_str":"116627106","verified":false,"lang":"ja","statuses_count":153670,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2535003734\/3_normal.jpg","listed_count":137,"geo_enabled":false,"created_at":"Tue Feb 23 03:37:36 +0000 2010","profile_text_color":"666666","name":"\u3061\u3087\u308d\u3059","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","friends_count":476,"url":"http:\/\/autumn-grass.jimdo.com\/","id":116627106,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":32400,"profile_link_color":"2FC2EF","followers_count":720},"id":263290764660981760,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290286124453889","text":"@izaizan_ que mios :C. n\u00e3o sei , porque neim comprei o convite ainda :C vou ver c da pra compra hoje aushauhs.","in_reply_to_user_id_str":"320492282","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665176064","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"izaizan_","id_str":"320492282","name":"izabela n","id":320492282}],"hashtags":[],"urls":[]},"in_reply_to_user_id":320492282,"in_reply_to_status_id":263290286124453889,"place":null,"coordinates":null,"in_reply_to_screen_name":"izaizan_","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"642D8B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782109812\/e2a7b7363c4e48b9646cec5dc3c84da6_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"\u2665 @pqpdoritos \u2665 \/ SOLTEIRA MEMO. ","favourites_count":240,"screen_name":"BiaMemo","profile_sidebar_border_color":"000","id_str":"520859712","verified":false,"lang":"pt","statuses_count":31005,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782109812\/e2a7b7363c4e48b9646cec5dc3c84da6_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sun Mar 11 00:26:22 +0000 2012","profile_text_color":"3D1957","name":"Beatriz Martins.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme10\/bg.gif","friends_count":387,"url":null,"id":520859712,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","utc_offset":-10800,"profile_link_color":"191a1a","followers_count":617},"id":263290764665176064,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"@tinaaPW tin, amb jadi beli plastik kau yo. Besok bawak ;)","in_reply_to_user_id_str":"268307821","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660994049","entities":{"user_mentions":[{"indices":[0,8],"screen_name":"tinaaPW","id_str":"268307821","name":"\u0394TNAP","id":268307821}],"hashtags":[],"urls":[]},"in_reply_to_user_id":268307821,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"tinaaPW","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","location":"LET'S VISIT BENGKULU,INDONESIA","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2712969760\/150d3e8c11d2402b7b007757715e1673_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"Official Daily activities and fangirl posting twitter account. Proud directioner who Addicted to tekwan,chocolate&the sims3. More? Check my favourites\u2665ZaynMalik","favourites_count":172,"screen_name":"PutriCS7","profile_sidebar_border_color":"EEEEEE","id_str":"92480686","verified":false,"lang":"en","statuses_count":19975,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2712969760\/150d3e8c11d2402b7b007757715e1673_normal.jpeg","listed_count":10,"geo_enabled":false,"created_at":"Wed Nov 25 08:47:44 +0000 2009","profile_text_color":"333333","name":"\u26651D_PutriCempakaSari","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/431576103\/Favim.com-36468.jpg","friends_count":536,"url":"http:\/\/theworldofpcs.tumblr.com","id":92480686,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/431576103\/Favim.com-36468.jpg","utc_offset":-28800,"profile_link_color":"0E0E0F","followers_count":676},"id":263290764660994049,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Missyou! :(","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669382656","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"FF6699","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2418735234\/mhnzxz13dtveusavpje1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E5507E","description":"Jamina Ly C. David \/\/ 14 \/\/ Junior student \/\/ Jamasura : instagram \/\/ Start loving, forget about Hating :)","favourites_count":14,"screen_name":"UbeJammm","profile_sidebar_border_color":"CC3366","id_str":"299655027","verified":false,"lang":"en","statuses_count":577,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2418735234\/mhnzxz13dtveusavpje1_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon May 16 13:34:50 +0000 2011","profile_text_color":"362720","name":"JamDavid ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme11\/bg.gif","friends_count":134,"url":null,"id":299655027,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme11\/bg.gif","utc_offset":-36000,"profile_link_color":"B40B43","followers_count":141},"id":263290764669382656,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"@AidaBarber Quan trobem algo li dire a Don Miguel que tooques les campanes!! jajajajajaj #ANIMOOO","in_reply_to_user_id_str":"361277138","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764656791553","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"AidaBarber","id_str":"361277138","name":"\u2661 A \u00a1 D A \u2661 :)","id":361277138}],"hashtags":[{"text":"ANIMOOO","indices":[90,98]}],"urls":[]},"in_reply_to_user_id":361277138,"in_reply_to_status_id":null,"place":{"country_code":"ES","attributes":{},"full_name":"Palma de Gand\u00eda, Valencia","place_type":"city","name":"Palma de Gand\u00eda","country":"Spain","id":"1cf74738bd6d37b9","url":"http:\/\/api.twitter.com\/1\/geo\/id\/1cf74738bd6d37b9.json","bounding_box":{"type":"Polygon","coordinates":[[[-0.2808945,38.9207246],[-0.1948057,38.9207246],[-0.1948057,38.9665145],[-0.2808945,38.9665145]]]}},"coordinates":null,"in_reply_to_screen_name":"AidaBarber","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"452B12","location":"Miramar","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2642924926\/dfc9ba926c8fe943a62930ffbe63be8e_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"BEC2B1","description":"Somriure dia a dia","favourites_count":2,"screen_name":"BrianaMir","profile_sidebar_border_color":"FFFFFF","id_str":"730765465","verified":false,"lang":"es","statuses_count":996,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2642924926\/dfc9ba926c8fe943a62930ffbe63be8e_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Aug 01 14:15:21 +0000 2012","profile_text_color":"AA825E","name":"Briana Serquera","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/668208971\/4f219d2c5a11d95ed8e334425e3212d9.png","friends_count":139,"url":null,"id":730765465,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/668208971\/4f219d2c5a11d95ed8e334425e3212d9.png","utc_offset":null,"profile_link_color":"DB6018","followers_count":150},"id":263290764656791553,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"En fin...","in_reply_to_user_id_str":null,"retweet_count":0,"geo":{"type":"Point","coordinates":[37.600738,-4.3180951]},"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673564673","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":{"country_code":"ES","place_type":"city","attributes":{},"full_name":"Baena, Cordova","name":"Baena","country":"Spain","id":"f24a02a93a40359e","url":"http:\/\/api.twitter.com\/1\/geo\/id\/f24a02a93a40359e.json","bounding_box":{"type":"Polygon","coordinates":[[[-4.4269893,37.5392279],[-4.1646598,37.5392279],[-4.1646598,37.8195711],[-4.4269893,37.8195711]]]}},"coordinates":{"type":"Point","coordinates":[-4.3180951,37.600738]},"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"baena","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2677307082\/5ab9c5331cfebbc30147e284686cb8ba_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"tobe_92","profile_sidebar_border_color":"C0DEED","id_str":"483207845","verified":false,"lang":"es","statuses_count":287,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2677307082\/5ab9c5331cfebbc30147e284686cb8ba_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Sat Feb 04 19:14:38 +0000 2012","profile_text_color":"333333","name":"Alberto Lara","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":146,"url":null,"id":483207845,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":72},"id":263290764673564673,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290470808039424","text":"@tara__nugent dunno catching up on sleep haha","in_reply_to_user_id_str":"554533412","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758978","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"tara__nugent","id_str":"554533412","name":"Tara Nugent","id":554533412}],"hashtags":[],"urls":[]},"in_reply_to_user_id":554533412,"in_reply_to_status_id":263290470808039424,"place":null,"coordinates":null,"in_reply_to_screen_name":"tara__nugent","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Dublin","profile_background_color":"131516","location":"Ireland","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2771956838\/8bb9149be63c553209c8ffbba3dbe916_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"","favourites_count":58,"screen_name":"EmmaHill_","profile_sidebar_border_color":"EEEEEE","id_str":"56695941","verified":false,"lang":"en","statuses_count":2432,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2771956838\/8bb9149be63c553209c8ffbba3dbe916_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Jul 14 13:41:39 +0000 2009","profile_text_color":"333333","name":"Emma Hill \u2661","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/630735375\/zswa3olxt01wa0jahiv8.png","friends_count":347,"url":null,"id":56695941,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/630735375\/zswa3olxt01wa0jahiv8.png","utc_offset":0,"profile_link_color":"009999","followers_count":268},"id":263290764677758978,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"262992950273916929","text":"@EffBeeee Emma Phil Claire and you. So all fabulous people. You staying over?","in_reply_to_user_id_str":"200263852","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673556480","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"EffBeeee","id_str":"200263852","name":"Francesca","id":200263852}],"hashtags":[],"urls":[]},"in_reply_to_user_id":200263852,"in_reply_to_status_id":262992950273916929,"place":null,"coordinates":null,"in_reply_to_screen_name":"EffBeeee","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1675382561\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"east london, cycling, racing cars, travel, hint of financial svcs, food booze and bois... all personal comments","favourites_count":1,"screen_name":"sanguine_andrew","profile_sidebar_border_color":"C0DEED","id_str":"52718193","verified":false,"lang":"en","statuses_count":351,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1675382561\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Wed Jul 01 13:00:08 +0000 2009","profile_text_color":"333333","name":"Andrew Strange","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":75,"url":null,"id":52718193,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":87},"id":263290764673556480,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290439224922114","text":"@ZachSoma ohhh hahahah, i gotchuuu.","in_reply_to_user_id_str":"586692351","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686135296","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"ZachSoma","id_str":"586692351","name":"Zach Soma","id":586692351}],"hashtags":[],"urls":[]},"in_reply_to_user_id":586692351,"in_reply_to_status_id":263290439224922114,"place":{"country_code":"US","place_type":"city","attributes":{},"full_name":"Southington, CT","name":"Southington","country":"United States","id":"f19f8cc1d91b38e3","url":"http:\/\/api.twitter.com\/1\/geo\/id\/f19f8cc1d91b38e3.json","bounding_box":{"type":"Polygon","coordinates":[[[-72.946348,41.544764],[-72.814188,41.544764],[-72.814188,41.655715],[-72.946348,41.655715]]]}},"coordinates":null,"in_reply_to_screen_name":"ZachSoma","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","location":"Southington, CT","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2767922514\/b42568f15e0031fd0d6f0302bdca32ae_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"Enjoy your youth, you'll never be younger than you are at this very moment;*","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/586936243\/1350178873","favourites_count":95,"screen_name":"marisaaaaaxo","profile_sidebar_border_color":"000000","id_str":"586936243","verified":false,"lang":"en","statuses_count":1378,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2767922514\/b42568f15e0031fd0d6f0302bdca32ae_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon May 21 22:27:20 +0000 2012","profile_text_color":"000000","name":"Marisa Caruso","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/666780656\/531f99e5d1eb37014a471cccacb9338e.jpeg","friends_count":91,"url":null,"id":586936243,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/666780656\/531f99e5d1eb37014a471cccacb9338e.jpeg","utc_offset":-18000,"profile_link_color":"F04684","followers_count":107},"id":263290764686135296,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Ngapa ? RT @SyifaMonica: *pantesan* RT @injiltambun: Gua udah rada2 gila dah -_-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686135297","entities":{"user_mentions":[{"indices":[11,23],"screen_name":"SyifaMonica","id_str":"530933014","name":"SM","id":530933014},{"indices":[39,51],"screen_name":"injiltambun","id_str":"562123216","name":"Sipit (\u0482'\u0300\u2323'\u0301)","id":562123216}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"477594","location":"In Heart JESUS","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784835538\/a34f112f2dcf579786675a568acf889a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"3A0C0F","description":"NiVefam's \u03b5\u02d8`) \u2022 Single \u2022 22091998 \u2022 Virgo girl \u2022 Be simple \u2022 Just call me injil \u2022 Mention for Followback (\u0283\u01aa\u2665o\u2665)","favourites_count":23,"screen_name":"injiltambun","profile_sidebar_border_color":"793050","id_str":"562123216","verified":false,"lang":"id","statuses_count":4128,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784835538\/a34f112f2dcf579786675a568acf889a_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Apr 24 15:40:50 +0000 2012","profile_text_color":"DD9C37","name":"Sipit (\u0482'\u0300\u2323'\u0301)","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/615689810\/x9jq7125abhm3plmbkwb.jpeg","friends_count":114,"url":"http:\/\/www.facebook.com\/injilya.tambun","id":562123216,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/615689810\/x9jq7125abhm3plmbkwb.jpeg","utc_offset":null,"profile_link_color":"60BDA6","followers_count":159},"id":263290764686135297,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @laurarivasvr: Arribaaa oye si tu..bendigo tu existir, no te rindas no estas solo! Levantate usa rojo o rosa y sonriele a la hermosa ...","in_reply_to_user_id_str":null,"retweet_count":19,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764694540288","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"laurarivasvr","id_str":"191935591","name":"Laura Rivas","id":191935591}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Arribaaa oye si tu..bendigo tu existir, no te rindas no estas solo! Levantate usa rojo o rosa y sonriele a la hermosa vida! Amanecio Bonito","in_reply_to_user_id_str":null,"retweet_count":19,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263257736110809088","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:35:10 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"642D8B","location":"Ubicad\u00edsima","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2224702951\/IMG01030-20120418-1750_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Vidente&Medium Escritora del libro Sue\u00f1os y Se\u00f1al\u00e9s creo en la Magia! Enamorada\u2665Tranquila Feliz y Acompa\u00f1ada \u2605Mam\u00e1 de @javosabio13","favourites_count":624,"screen_name":"laurarivasvr","profile_sidebar_border_color":"65B0DA","id_str":"191935591","verified":false,"lang":"es","statuses_count":24081,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2224702951\/IMG01030-20120418-1750_normal.jpg","listed_count":424,"geo_enabled":false,"created_at":"Fri Sep 17 19:02:18 +0000 2010","profile_text_color":"3D1957","name":"Laura Rivas","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/154590384\/Magia.jpg","friends_count":239,"url":"http:\/\/www.laurarivas.com.mx","id":191935591,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/154590384\/Magia.jpg","utc_offset":-21600,"profile_link_color":"FF0000","followers_count":47868},"id":263257736110809088,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2747975479\/ec46d404bd4f1d6828362a121d4f6ae7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Mama de 3 hermoso hijos,hermana,hija,es\r\nposa,buena amiga,divertida,y orgullosamente michoacana!! ","favourites_count":0,"screen_name":"CristinaDeAndaR","profile_sidebar_border_color":"C0DEED","id_str":"132978978","verified":false,"lang":"es","statuses_count":102,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2747975479\/ec46d404bd4f1d6828362a121d4f6ae7_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Apr 14 17:53:39 +0000 2010","profile_text_color":"333333","name":"Cristina De Anda R.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":29,"url":null,"id":132978978,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":6},"id":263290764694540288,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Cieeeeeee RT @santsantmor: hati siapa yang tau~ RT @Handriaaan Abisan kasmaran terus di TL haha RT @santsantmor: jangan sok t","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669374464","entities":{"user_mentions":[{"indices":[13,25],"screen_name":"santsantmor","id_str":"254584176","name":"santikamorinaginting","id":254584176},{"indices":[51,62],"screen_name":"Handriaaan","id_str":"407552665","name":"Handrian Apriyanto","id":407552665},{"indices":[99,111],"screen_name":"santsantmor","id_str":"254584176","name":"santikamorinaginting","id":254584176}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","location":"Medan|Sumatera Utara|Indonesia","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773614358\/410e4d014dc8fa4fd3de3f29d187051c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"842E9E","description":"Photographer | Owner Clothing Company Fight The World Est MMXII | Life Free And Enjoy | 30041994 | Humoris, Maybe.","favourites_count":3,"screen_name":"Handriaaan","profile_sidebar_border_color":"000","id_str":"407552665","verified":false,"lang":"en","statuses_count":21445,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773614358\/410e4d014dc8fa4fd3de3f29d187051c_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Nov 08 06:58:12 +0000 2011","profile_text_color":"FFFFFF","name":"Handrian Apriyanto","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697588660\/8411b7be5569a741ae5f6fa42982693b.png","friends_count":220,"url":"http:\/\/www.facebook.com\/profile.php?id=100000570107568","id":407552665,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697588660\/8411b7be5569a741ae5f6fa42982693b.png","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":500},"id":263290764669374464,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @goo_mgcl: \u30de\u30ea\u30fc\u3061\u3083\u3093\u306e\u30de\u30b9\u30af\u3092\u501f\u308a\u3066\u4e8c\u91cd\u306b\u30de\u30b9\u30af\u3092\u3064\u3051\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3001\u30b9\u30cd\u592b\u307f\u305f\u3044\u306b\u306a\u3063\u305f\u30b0\u30fc\u30d5\u30a3\u30fc http:\/\/t.co\/rTqKkTao","in_reply_to_user_id_str":null,"retweet_count":91,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669358080","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"goo_mgcl","id_str":"462917079","name":"m","id":462917079}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/twitpic.com\/b8rg1n","indices":[61,81],"display_url":"twitpic.com\/b8rg1n","url":"http:\/\/t.co\/rTqKkTao"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u30de\u30ea\u30fc\u3061\u3083\u3093\u306e\u30de\u30b9\u30af\u3092\u501f\u308a\u3066\u4e8c\u91cd\u306b\u30de\u30b9\u30af\u3092\u3064\u3051\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3001\u30b9\u30cd\u592b\u307f\u305f\u3044\u306b\u306a\u3063\u305f\u30b0\u30fc\u30d5\u30a3\u30fc http:\/\/t.co\/rTqKkTao","in_reply_to_user_id_str":null,"retweet_count":91,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetli.st\/\" rel=\"nofollow\"\u003ETweetList!\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263262998758563840","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/twitpic.com\/b8rg1n","indices":[47,67],"display_url":"twitpic.com\/b8rg1n","url":"http:\/\/t.co\/rTqKkTao"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:56:04 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2443139831\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u5171\u901a\u6301\u3061\/\u30b0\u30f2\u30bf\/\u30df\u30cb\u30fc\/\u30b0\u30df\u30cb\/\u89aa\u5b50\/\u72ac\u30b3\u30f3\u30d3\/\u30ac\u30fc\u30eb\u30ba\/\u30f4\u30a3\u30e9\u30f3\u30ba\/E\u30d1\u30ec\u3001\u30ef\u30f3\u30de\u30f3\u3001BBB\u3001\u30df\u30b7\u30ab\u3001\u6d77\u5e95\/\n\n\u3064\u3044\u306b\u9999\u6e2f\u30c7\u30a3\u30ba\u30cb\u30fc\u30c7\u30d3\u30e5\u30fc\u3057\u307e\u3057\u305f(\u00b4\u03c9\uff40)\u5922\u306f\u6d77\u5916\u30c7\u30a3\u30ba\u30cb\u30fc\u5236\u8987\uff01\n\u30d5\u30a9\u30ed\u30fc\u3001\u30ea\u30d7\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u266a","favourites_count":96,"screen_name":"goo_mgcl","profile_sidebar_border_color":"C0DEED","id_str":"462917079","verified":false,"lang":"ja","statuses_count":1757,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2443139831\/image_normal.jpg","listed_count":1,"geo_enabled":false,"created_at":"Fri Jan 13 14:25:33 +0000 2012","profile_text_color":"333333","name":"m","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":56,"url":null,"id":462917079,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":121},"id":263262998758563840,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2618901434\/mgt6i7h67uf4gcgd6kdb_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u306f\u3058\u3081\u3066\u307f\u307e\u3057\u305f\u3002 \u307e\u3060\u3088\u304f\u308f\u304b\u3063\u3066\u306a\u304f\u5931\u793c\u304c\u3042\u3063\u305f\u3089\u3054\u3081\u3093\u306a\u3055\u3044\uff01 \u30c7\u30a3\u30ba\u30cb\u30fc\u3084\u7279\u64ae(\u30b9\u30fc\u30d1\u30fc\u30d2\u30fc\u30ed\u30fc\u30bf\u30a4\u30e0)\u5927\u597d\u304d\u3067\u3059(*^\u03c9^*) \u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u3001\u306a\u3069 \u30dd\u30b1\u30e2\u30f3\u306f\u30a2\u30c1\u30e3\u30e2\u5927\u597d\u304d\u3067\u3059 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u266a \u30c7\u30a3\u30ba\u30cb\u30fcblog\u3092\u306f\u3058\u3081\u305f\u3070\u304b\u308a\u3067\u3059\u3002\u826f\u304b\u3063\u305f\u3089\u8997\u304d\u306b\u304d\u3066\u304f\u3060\u3055\u3044\uff01","favourites_count":0,"screen_name":"mayumilkchan","profile_sidebar_border_color":"C0DEED","id_str":"222582815","verified":false,"lang":"ja","statuses_count":483,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2618901434\/mgt6i7h67uf4gcgd6kdb_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Fri Dec 03 20:58:40 +0000 2010","profile_text_color":"333333","name":"\u221e\u307e\u3086\u3061\u3083\u3093\u221e","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":16,"url":"http:\/\/lovedisney8.blog.fc2.com\/","id":222582815,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":9},"id":263290764669358080,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @AstigGram: \"Taken ka nga.. Taken for granted naman.\" xD","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677742595","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"AstigGram","id_str":"599925580","name":"AstigGram Kowts","id":599925580}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\"Taken ka nga.. Taken for granted naman.\" xD","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290657836261376","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:59 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Arizona","profile_background_color":"FFFFFF","location":"Pilipinas kong mahal","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2539051470\/uo6lx8qolpxf79nc4tah_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Astig ka ba? Kung oo, ano pa hinihintay mo? hit mo na ang follow button, siguradong relate ka sa mga quotes namin :D #AstigGram ","favourites_count":339,"screen_name":"AstigGram","profile_sidebar_border_color":"FFFFFF","id_str":"599925580","verified":false,"lang":"en","statuses_count":13477,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2539051470\/uo6lx8qolpxf79nc4tah_normal.jpeg","listed_count":21,"geo_enabled":true,"created_at":"Tue Jun 05 07:57:05 +0000 2012","profile_text_color":"333333","name":"AstigGram Kowts","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/642125100\/1rvgw0pgngk4pbmv99cw.jpeg","friends_count":114,"url":null,"id":599925580,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/642125100\/1rvgw0pgngk4pbmv99cw.jpeg","utc_offset":-25200,"profile_link_color":"0084B4","followers_count":9700},"id":263290657836261376,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hong Kong","profile_background_color":"80AABF","location":"Iligan City","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2695221517\/320cde1d88830e4c7360c5a41400a145_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"follow me and everything is alright. ;)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/771190699\/1348396549","favourites_count":1834,"screen_name":"alititow","profile_sidebar_border_color":"C0DEED","id_str":"771190699","verified":false,"lang":"en","statuses_count":3923,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2695221517\/320cde1d88830e4c7360c5a41400a145_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Aug 21 09:37:33 +0000 2012","profile_text_color":"333333","name":"Alit Mangotara","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/640407876\/vhtsikwhd4mcoa2m0zbp.jpeg","friends_count":127,"url":"https:\/\/www.facebook.com\/pUnkaTok","id":771190699,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/640407876\/vhtsikwhd4mcoa2m0zbp.jpeg","utc_offset":28800,"profile_link_color":"0084B4","followers_count":111},"id":263290764677742595,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290489544011778","text":"@anneRizeline HAHAHAHA. AYOS LANG!!","in_reply_to_user_id_str":"349528960","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686139392","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"anneRizeline","id_str":"349528960","name":"AnneRizelineGothico","id":349528960}],"hashtags":[],"urls":[]},"in_reply_to_user_id":349528960,"in_reply_to_status_id":263290489544011778,"place":null,"coordinates":null,"in_reply_to_screen_name":"anneRizeline","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"London","profile_background_color":"FFFFFF","location":"Daniel's Heart","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2713325711\/b242a0cde4086db9cfea02a11f4ad2ec_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"252429","description":"We're not Daniel Padilla, we are just simple fans from Ireland, France & Philippines. This is just a FANPAGE. http:\/\/www.twitlonger.com\/show\/ji0i6u - TextClan.\u263a","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/333089518\/1348493104","favourites_count":1164,"screen_name":"DjPadillaFans","profile_sidebar_border_color":"FFFFFF","id_str":"333089518","verified":false,"lang":"en","statuses_count":32459,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2713325711\/b242a0cde4086db9cfea02a11f4ad2ec_normal.jpeg","listed_count":36,"geo_enabled":true,"created_at":"Sun Jul 10 23:44:03 +0000 2011","profile_text_color":"666666","name":"DanielPadillaFans \u25b2","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677067560\/c88b948e3ad311ef791f8e480f43c6aa.jpeg","friends_count":245,"url":"http:\/\/www.facebook.com\/DJPADILLAFansOfficialFanPage","id":333089518,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677067560\/c88b948e3ad311ef791f8e480f43c6aa.jpeg","utc_offset":0,"profile_link_color":"000000","followers_count":79381},"id":263290764686139392,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @pimpstar0230: \u3057\u3083\u3063\u304f\u308a\u304c\u3068\u307e\u3089.......\uff8b\uff6f\uff78\u3002 \u306d\u3047\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681945088","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"pimpstar0230","id_str":"185997314","name":"\u3084\u3093\u3061\u3083\u5e8aJAWS aka \u30ef\u30a4\u5144","id":185997314}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\u3057\u3083\u3063\u304f\u308a\u304c\u3068\u307e\u3089.......\uff8b\uff6f\uff78\u3002 \u306d\u3047\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263288362335600640","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:36:51 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"nagoya JAPAN ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2640385759\/acb3f92fc5cc0de7cb5eb4f4e2c31577_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"I'm baaaaaack \uff01\uff01\uff01\uff01 PIMPSTA LIFE STYLE \u3069\u3082\u3002\u30ef\u30a4\u5144\u3063\u3059\u3002\u308f\u3084\u3067\u3059\u3002\u4eca\u65e5\u3082\u3069\u3053\u304b\u3067\u9154\u3044\u6f70\u308c\u3066\u307e\u3059\u3002\u308f\u3084\u3067\u3059\u3002 \u5ac1\u3068\u606f\u5b50\u3092\u3042\u3044\u3057\u3066\u307e\u3059\u3093\u3002\u3002\u3002\u3002\u3002\u308f\u3084\u3067\u3059\u3002\u3002\u3002\u3002\u3002\u3061\u3047\u3044\u30fd(\uffe3\u25bd\uffe3)\u30ce ","favourites_count":54,"screen_name":"pimpstar0230","profile_sidebar_border_color":"C0DEED","id_str":"185997314","verified":false,"lang":"ja","statuses_count":9972,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2640385759\/acb3f92fc5cc0de7cb5eb4f4e2c31577_normal.png","listed_count":5,"geo_enabled":false,"created_at":"Thu Sep 02 10:14:17 +0000 2010","profile_text_color":"333333","name":"\u3084\u3093\u3061\u3083\u5e8aJAWS aka \u30ef\u30a4\u5144","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":214,"url":null,"id":185997314,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":245},"id":263288362335600640,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"kasugai aichi japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2262989185\/20120530_201711_31624_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u6700\u8fd1\u306e\u30de\u30a4\u30d6\u30fc\u30e0\u308f\u30d1\u30a4\u30ca\u30c3\u30d7\u30eb( \u00b4 \u25bd ` )\uff89","favourites_count":6,"screen_name":"hiitun1013","profile_sidebar_border_color":"C0DEED","id_str":"392666985","verified":false,"lang":"ja","statuses_count":2359,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2262989185\/20120530_201711_31624_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Mon Oct 17 11:51:07 +0000 2011","profile_text_color":"333333","name":"\u3072\uff68\u3064\u3093","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":234,"url":null,"id":392666985,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":270},"id":263290764681945088,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @TacoBell: #FreeDoritosTacos for America at participating Taco Bell locations Tuesday, October 30 from 2-6 p.m. Retweet this if you'r ...","in_reply_to_user_id_str":null,"retweet_count":6928,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764690333696","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"TacoBell","id_str":"7831092","name":"TACO BELL","id":7831092}],"hashtags":[{"text":"FreeDoritosTacos","indices":[14,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#FreeDoritosTacos for America at participating Taco Bell locations Tuesday, October 30 from 2-6 p.m. Retweet this if you're going!","in_reply_to_user_id_str":null,"retweet_count":6928,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263014874009960448","entities":{"user_mentions":[],"hashtags":[{"text":"FreeDoritosTacos","indices":[0,17]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 29 20:30:07 +0000 2012","user":{"notifications":null,"contributors_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"050505","location":"United States","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1863247981\/tw_brand_profile_pic_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"ECDAF4","description":"Live M\u00e1s","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/7831092\/1351375003","favourites_count":14472,"screen_name":"TacoBell","profile_sidebar_border_color":"FFFFFF","id_str":"7831092","verified":true,"lang":"en","statuses_count":16646,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1863247981\/tw_brand_profile_pic_normal.jpg","listed_count":2416,"geo_enabled":false,"created_at":"Mon Jul 30 21:52:37 +0000 2007","profile_text_color":"3C1D59","name":"TACO BELL","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695386005\/6a3f5d0fa25430765da6a73aec47dd52.jpeg","friends_count":8,"url":"http:\/\/www.TacoBell.com","id":7831092,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695386005\/6a3f5d0fa25430765da6a73aec47dd52.jpeg","utc_offset":-28800,"profile_link_color":"FA8405","followers_count":280176},"id":263014874009960448,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","location":"Alexandria, Louisiana","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2446941558\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFBFA","description":"","favourites_count":136,"screen_name":"Joshuacherndon","profile_sidebar_border_color":"080000","id_str":"50956986","verified":false,"lang":"en","statuses_count":1822,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2446941558\/image_normal.jpg","listed_count":2,"geo_enabled":false,"created_at":"Fri Jun 26 07:00:11 +0000 2009","profile_text_color":"000000","name":"Josh","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/535079153\/gffg.png","friends_count":126,"url":null,"id":50956986,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/535079153\/gffg.png","utc_offset":-21600,"profile_link_color":"0084B4","followers_count":136},"id":263290764690333696,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @jooooj22: \u618e\u3044\u65e5\u672c\u4eba\u306e\u30d5\u30ea\u3092\u3057\u3066\u91d1\u5132\u3051\u3000\u79fb\u6c11\u5148\u3067\u65e5\u672c\u6599\u7406\u306e\u5e97\u3092\u958b\u304f\u97d3\u56fd\u4eba http:\/\/t.co\/yNZxRmQC","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673568768","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"jooooj22","id_str":"327265749","name":"not a number","id":327265749}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/riro0630.blog.fc2.com\/blog-entry-6943.html","indices":[46,66],"display_url":"riro0630.blog.fc2.com\/blog-entry-694\u2026","url":"http:\/\/t.co\/yNZxRmQC"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u618e\u3044\u65e5\u672c\u4eba\u306e\u30d5\u30ea\u3092\u3057\u3066\u91d1\u5132\u3051\u3000\u79fb\u6c11\u5148\u3067\u65e5\u672c\u6599\u7406\u306e\u5e97\u3092\u958b\u304f\u97d3\u56fd\u4eba http:\/\/t.co\/yNZxRmQC","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/blog.fc2.com\/\" rel=\"nofollow\"\u003EFC2 Blog Notify\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290145107738625","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/riro0630.blog.fc2.com\/blog-entry-6943.html","indices":[32,52],"display_url":"riro0630.blog.fc2.com\/blog-entry-694\u2026","url":"http:\/\/t.co\/yNZxRmQC"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:56 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"FFF04D","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1421972894\/IMG_0010_normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"f6ffd1","description":"\u4f8d\u305f\u3061\u3088\u3000\u76ee\u899a\u3081\u308b\u6642\u304c\u6765\u305f\u3088\u3046\u3067\u3059\u3002\r\n","favourites_count":56,"screen_name":"jooooj22","profile_sidebar_border_color":"fff8ad","id_str":"327265749","verified":false,"lang":"ja","statuses_count":9210,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1421972894\/IMG_0010_normal.JPG","listed_count":108,"geo_enabled":false,"created_at":"Fri Jul 01 08:20:48 +0000 2011","profile_text_color":"333333","name":"not a number","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme19\/bg.gif","friends_count":11237,"url":null,"id":327265749,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme19\/bg.gif","utc_offset":-36000,"profile_link_color":"0099CC","followers_count":10382},"id":263290145107738625,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2762603311\/52cd4cbf1077f7f7ecaf029c3b66a8dd_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":24,"screen_name":"anegatos","profile_sidebar_border_color":"C0DEED","id_str":"401318626","verified":false,"lang":"ja","statuses_count":5302,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2762603311\/52cd4cbf1077f7f7ecaf029c3b66a8dd_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sun Oct 30 11:15:03 +0000 2011","profile_text_color":"333333","name":"\u4f50\u6cbb\u885b\u9580","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":461,"url":null,"id":401318626,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":283},"id":263290764673568768,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @onedirection_ID: #imagine1D Liam buatin kamu dinner sambil senyum2, terus kamu nanya knp dia senyum dan Liam jawab \"aku senyum karna ...","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/www.writelonger.com\" rel=\"nofollow\"\u003EWrite Longer\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973568","entities":{"user_mentions":[{"indices":[3,19],"screen_name":"onedirection_ID","id_str":"260974316","name":"One Direction","id":260974316}],"hashtags":[{"text":"imagine1D","indices":[21,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#imagine1D Liam buatin kamu dinner sambil senyum2, terus kamu nanya knp dia senyum dan Liam jawab \"aku senyum karna aku punya kamu\" <3","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290590278602753","entities":{"user_mentions":[],"hashtags":[{"text":"imagine1D","indices":[0,10]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:43 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"072275","location":"Indonesia","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2657926596\/b423071d6e05774eee6761a7cc2614ff_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"This Is The Official Fan Page Of @onedirection Family In Indonesia (050311) Supported By: @SonyMusicID @CreativeDisc ContactMumun: (+6285755666009 @rosiyta)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/260974316\/1348304980","favourites_count":1124,"screen_name":"onedirection_ID","profile_sidebar_border_color":"FFFFFF","id_str":"260974316","verified":false,"lang":"en","statuses_count":71031,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2657926596\/b423071d6e05774eee6761a7cc2614ff_normal.jpeg","listed_count":142,"geo_enabled":true,"created_at":"Sat Mar 05 00:24:11 +0000 2011","profile_text_color":"E6DFD4","name":"One Direction","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/431463712\/AkAwdz5CAAADzTf.jpg","friends_count":4079,"url":"https:\/\/www.facebook.com\/pages\/One-Direction-Indonesia-Official\/219307418081687","id":260974316,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/431463712\/AkAwdz5CAAADzTf.jpg","utc_offset":25200,"profile_link_color":"DB1557","followers_count":126163},"id":263290590278602753,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"445CBD","location":"Jauuuuuuhh","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784349215\/3d1cf25bc6e03ceccdb217afa2735dda_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"26BAD4","description":"Jakarta, 28Nov'95 | I really love you, Myfirstlove | Someday, we would become lovers (again)","favourites_count":71,"screen_name":"ajengnovia","profile_sidebar_border_color":"39DB21","id_str":"151762644","verified":false,"lang":"en","statuses_count":9656,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784349215\/3d1cf25bc6e03ceccdb217afa2735dda_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Fri Jun 04 05:24:15 +0000 2010","profile_text_color":"6712E6","name":"Ajeng NoviaNiall","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/313438345\/images__16_.jpg","friends_count":365,"url":"http:\/\/facebook.com\/ajeng.n.pratiwi","id":151762644,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/313438345\/images__16_.jpg","utc_offset":25200,"profile_link_color":"1637DE","followers_count":382},"id":263290764660973568,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @Donkeyji: Arvind Kejriwal has filed an RTI with DERC asking questions regarding hike in electricity tariff.","in_reply_to_user_id_str":null,"retweet_count":5,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961473","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"Donkeyji","id_str":"174222069","name":"Don Key","id":174222069}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Arvind Kejriwal has filed an RTI with DERC asking questions regarding hike in electricity tariff.","in_reply_to_user_id_str":null,"retweet_count":5,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263263156204351489","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:56:42 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Seoul","profile_background_color":"BADFCD","location":"Pyongyang, North Korea","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1158846960\/phpuq1dno_normal","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"Demanding Bharat Ratna for Koda\/Kalmadi\/Maino\/Arundhatiji\/Rahul Baba\/Vadra\/Khurshid\/Telgi\/Advani\/Maya\/Mamta\/Mulayam\/Paswan\/Shivpal\/Ramgopal\/Lalu\/Karuna\/Dayalu\/","favourites_count":119,"screen_name":"Donkeyji","profile_sidebar_border_color":"F2E195","id_str":"174222069","verified":false,"lang":"en","statuses_count":38389,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1158846960\/phpuq1dno_normal","listed_count":20,"geo_enabled":false,"created_at":"Tue Aug 03 11:53:03 +0000 2010","profile_text_color":"0C3E53","name":"Don Key","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/448062549\/1.png","friends_count":8,"url":"http:\/\/twitter.com","id":174222069,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/448062549\/1.png","utc_offset":32400,"profile_link_color":"FF0000","followers_count":1372},"id":263263156204351489,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mumbai","profile_background_color":"9AE4E8","location":"INDIA","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784901062\/5f33feaff8df50e6f072545c62c3b434_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"To oppose corruption in government is the highest obligation of patriotism.\n\n\u092e\u0948\u0902 \u0939\u0942\u0901 \u0906\u092e \u0906\u0926\u092e\u0940, \u092e\u0941\u091d\u0947 \u091a\u093e\u0939\u093f\u090f \u091c\u0928\u0932\u094b\u0915\u092a\u093e\u0932 \u3002\n\nfacebook.com\/FinalWarAgainstCorruption\n\n\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/261040794\/1348955633","favourites_count":153,"screen_name":"Djjpn","profile_sidebar_border_color":"C0DEED","id_str":"261040794","verified":false,"lang":"en","statuses_count":8798,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784901062\/5f33feaff8df50e6f072545c62c3b434_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Mar 05 03:36:53 +0000 2011","profile_text_color":"0A0201","name":"The Patriot","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme16\/bg.gif","friends_count":168,"url":"http:\/\/www.indiaagainstcorruption.org\/","id":261040794,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","utc_offset":19800,"profile_link_color":"0084B4","followers_count":138},"id":263290764681961473,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @oddni_: @KYRApractor__ goodmorning kyrazzzzzz (:","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764665167872","entities":{"user_mentions":[{"indices":[3,10],"screen_name":"oddni_","id_str":"557396385","name":"dope peddler. ","id":557396385},{"indices":[12,26],"screen_name":"KYRApractor__","id_str":"255828429","name":"Oct. 1st , \u2764","id":255828429}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":"263290404449964032","text":"@KYRApractor__ goodmorning kyrazzzzzz (:","in_reply_to_user_id_str":"255828429","retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290723238043648","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"KYRApractor__","id_str":"255828429","name":"Oct. 1st , \u2764","id":255828429}],"hashtags":[],"urls":[]},"in_reply_to_user_id":255828429,"in_reply_to_status_id":263290404449964032,"place":null,"coordinates":null,"in_reply_to_screen_name":"KYRApractor__","created_at":"Tue Oct 30 14:46:14 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Atlantic Time (Canada)","profile_background_color":"000203","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773465298\/a2d2bfc4327ec7b81eeee7f3337621b8_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"@trillmuffin is my baby. go follow my hooka @jordiecvt \ue409 instagram: oddni_","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/557396385\/1350229995","favourites_count":35,"screen_name":"oddni_","profile_sidebar_border_color":"FFFFFF","id_str":"557396385","verified":false,"lang":"en","statuses_count":27123,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773465298\/a2d2bfc4327ec7b81eeee7f3337621b8_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 18 23:44:26 +0000 2012","profile_text_color":"333333","name":"dope peddler. ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673451659\/1e17ade7897fce2c30f83713a9d3c0b8.jpeg","friends_count":364,"url":"http:\/\/america81.tumblr.com\/","id":557396385,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673451659\/1e17ade7897fce2c30f83713a9d3c0b8.jpeg","utc_offset":-14400,"profile_link_color":"0084B4","followers_count":441},"id":263290723238043648,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"DBE9ED","location":"doing the money dance(:","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773340929\/4005dc53c6ac1520b8ccc6336cc84f8a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2692D1","description":"what's understood doesn't have to be explained \u2728 p.s i love Mya N. Jackson \u2665","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/255828429\/1351446264","favourites_count":74,"screen_name":"KYRApractor__","profile_sidebar_border_color":"000000","id_str":"255828429","verified":false,"lang":"en","statuses_count":8523,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773340929\/4005dc53c6ac1520b8ccc6336cc84f8a_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Feb 22 03:43:44 +0000 2011","profile_text_color":"C71AC7","name":"Oct. 1st , \u2764","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/689424090\/b2a0a54649499a1349c4c8b03f4cfffe.jpeg","friends_count":206,"url":null,"id":255828429,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/689424090\/b2a0a54649499a1349c4c8b03f4cfffe.jpeg","utc_offset":-32400,"profile_link_color":"9900FF","followers_count":273},"id":263290764665167872,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263243235944714240","text":"@RaiNk0N \u305d\u3093\u306a\u3053\u305f\u3041\u306a\u3044w \u3060\u306c\u3002\u30d6\u30eb\u30fc\u30de\u30f3\u30c7\u30fc\u3067\u3059w","in_reply_to_user_id_str":"386912722","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003ETwipple Pro for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669370368","entities":{"user_mentions":[{"indices":[0,8],"screen_name":"RaiNk0N","id_str":"386912722","name":"SiRain","id":386912722}],"hashtags":[],"urls":[]},"in_reply_to_user_id":386912722,"in_reply_to_status_id":263243235944714240,"place":null,"coordinates":null,"in_reply_to_screen_name":"RaiNk0N","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"642D8B","location":"\u3042\u306a\u305f\u306e\u5f8c\u308d(\u80cc\u4e2d\u306b\u30c1\u30e7\u30b3\u3064\u3051\u3066\u3042\u3052ry)","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2551590816\/twipple1346140194301_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"(\u3002\u30fb\u2200\u30fb)\u30ce\u309b\u304a\u3063\u306f~ \u3055\u304f\u308c\u306a\u3068\u7533\u3057\u307e\u3059\u266a CS\u3084CSO\u3084\u3063\u3066\u308b\u65b9\u3084\u30cb\u30b3\u751f\u306e\u30ea\u30b9\u30ca\u30fc\u3055\u3093\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u306a\u3069\u3057\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059(o\uff65\u03c9\uff65o) \u30d6\u30ed\u30b0\uff1ahttp:\/\/ameblo.jp\/sakurena123\/","favourites_count":34,"screen_name":"sakurena1919","profile_sidebar_border_color":"65B0DA","id_str":"213687593","verified":false,"lang":"ja","statuses_count":11156,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2551590816\/twipple1346140194301_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Tue Nov 09 15:01:43 +0000 2010","profile_text_color":"3D1957","name":"\u3055\u304f\u308c\u306a","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/248389199\/389844.jpg","friends_count":241,"url":"http:\/\/com.nicovideo.jp\/community\/co242964","id":213687593,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/248389199\/389844.jpg","utc_offset":32400,"profile_link_color":"FF0000","followers_count":265},"id":263290764669370368,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @XSTROLOGY: If a #Taurus becomes really mad at you, then you will become a complete stranger to them.","in_reply_to_user_id_str":null,"retweet_count":1188,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764665159681","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"XSTROLOGY","id_str":"130734452","name":"Xstrology\u2122 Zodiac","id":130734452}],"hashtags":[{"text":"Taurus","indices":[20,27]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"If a #Taurus becomes really mad at you, then you will become a complete stranger to them.","in_reply_to_user_id_str":null,"retweet_count":1188,"geo":null,"source":"\u003Ca href=\"http:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003ESocialOomph\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263279788767182848","entities":{"user_mentions":[],"hashtags":[{"text":"Taurus","indices":[5,12]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:02:47 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1436287439\/xstrology-cardositumorang_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Most followed Astrology on Twitter. Tweeting real shit since April 7, 2010 by a real astrologer. This is not sexstrology. Advertising: Xstrology@gmail.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/130734452\/1348192637","favourites_count":2658,"screen_name":"XSTROLOGY","profile_sidebar_border_color":"FFFFFF","id_str":"130734452","verified":true,"lang":"en","statuses_count":77139,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1436287439\/xstrology-cardositumorang_normal.png","listed_count":11890,"geo_enabled":false,"created_at":"Thu Apr 08 04:19:36 +0000 2010","profile_text_color":"333333","name":"Xstrology\u2122 Zodiac","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/287567550\/xstrology-cardositumorang.png","friends_count":8,"url":"http:\/\/XstrologyScopes.com","id":130734452,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/287567550\/xstrology-cardositumorang.png","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":2581981},"id":263279788767182848,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"FFFFFF","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2717851790\/f24063c5e33d33573f048e8239b26f62_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"","favourites_count":6,"screen_name":"brendameidyta","profile_sidebar_border_color":"030303","id_str":"44330028","verified":false,"lang":"en","statuses_count":12568,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2717851790\/f24063c5e33d33573f048e8239b26f62_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Wed Jun 03 09:55:23 +0000 2009","profile_text_color":"000000","name":"brenda meidyta","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/649468092\/fhy3r3q9ftf9f5d288o5.jpeg","friends_count":221,"url":null,"id":44330028,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/649468092\/fhy3r3q9ftf9f5d288o5.jpeg","utc_offset":25200,"profile_link_color":"000000","followers_count":483},"id":263290764665159681,"contributors":null,"favorited":false} +{"text":"RT @t0ribayb3e: my stomach hurts :-(","contributors":null,"favorited":false,"in_reply_to_status_id_str":null,"in_reply_to_user_id_str":null,"geo":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"t0ribayb3e","name":"TORI_not Victoria ","id_str":"237114515","id":237114515}],"hashtags":[],"urls":[]},"retweeted":false,"truncated":false,"id_str":"263290764656795648","place":null,"coordinates":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","retweeted_status":{"text":"my stomach hurts :-(","contributors":null,"favorited":false,"in_reply_to_status_id_str":null,"in_reply_to_user_id_str":null,"geo":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"retweeted":false,"truncated":false,"id_str":"263289362450636802","place":null,"coordinates":null,"created_at":"Tue Oct 30 14:40:50 +0000 2012","user":{"notifications":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":519,"is_translator":false,"default_profile":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","followers_count":545,"location":"at ur moma house ;-)","contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","description":"unsure about being #taken #teamLesbo (only if she bad doe) i keepa #badbitch and mosty importantly ION BULLSHIT ! 5'3 and as sweet as i can be ^_^ ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2734395581\/a803084d380329ba6d6b851baba6b63c_normal.png","screen_name":"t0ribayb3e","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","favourites_count":28,"lang":"en","profile_sidebar_border_color":"C0DEED","protected":false,"id_str":"237114515","verified":false,"created_at":"Wed Jan 12 03:19:49 +0000 2011","name":"TORI_not Victoria ","statuses_count":9242,"profile_use_background_image":true,"url":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2734395581\/a803084d380329ba6d6b851baba6b63c_normal.png","id":237114515,"listed_count":1,"following":null,"geo_enabled":true,"utc_offset":null,"profile_text_color":"333333"},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"id":263289362450636802,"in_reply_to_screen_name":null},"user":{"notifications":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695491051\/a1577d7a1e95e8ecfb8108666ac3e6cd.jpeg","friends_count":536,"is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695491051\/a1577d7a1e95e8ecfb8108666ac3e6cd.jpeg","profile_link_color":"46A8CB","followers_count":479,"location":":) Loyalty City (:","contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"030B4A","description":"\u2665 College Girl \u2665 living for me & mine ; 6a6y 6oy 6y the name of KINGston have my heart in his hand ; est.05\/08\/12 \u2665 irrelevant shit idont do ; so follow me (:","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2772291616\/cf52c84b45d8994b14d6a25c82a2ad7c_normal.jpeg","screen_name":"WeFound_Lovee","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2EB9D8","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/516376946\/1351385550","favourites_count":39,"lang":"en","profile_sidebar_border_color":"fff","protected":false,"id_str":"516376946","verified":false,"created_at":"Tue Mar 06 09:38:38 +0000 2012","name":"\u2665 Your 6add Ha6it \u2665","statuses_count":9045,"profile_use_background_image":true,"url":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2772291616\/cf52c84b45d8994b14d6a25c82a2ad7c_normal.jpeg","id":516376946,"listed_count":1,"following":null,"geo_enabled":true,"utc_offset":-18000,"profile_text_color":"86CEC2"},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"id":263290764656795648,"in_reply_to_screen_name":null} +{"in_reply_to_status_id_str":null,"text":"RT @TrillAssKing: @PoeticCheifa TrillAssKing","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758976","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"TrillAssKing","id_str":"317331185","name":"\u2020Makaveli","id":317331185},{"indices":[18,31],"screen_name":"PoeticCheifa","id_str":"157409499","name":"R.Castro","id":157409499}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":"263289475227078658","text":"@PoeticCheifa TrillAssKing","in_reply_to_user_id_str":"157409499","retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290432358858754","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"PoeticCheifa","id_str":"157409499","name":"R.Castro","id":157409499}],"hashtags":[],"urls":[]},"in_reply_to_user_id":157409499,"in_reply_to_status_id":263289475227078658,"place":null,"coordinates":null,"in_reply_to_screen_name":"PoeticCheifa","created_at":"Tue Oct 30 14:45:05 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2778713086\/6bb08d7415a929e59a0475dd0bfee7cb_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"Whats a king w\/o a crown ... #TeameATEnGOOD #KingTV | #Tupac #Aaliyah instagram:TrillAssKing","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/317331185\/1351355016","favourites_count":320,"screen_name":"TrillAssKing","profile_sidebar_border_color":"000000","id_str":"317331185","verified":false,"lang":"en","statuses_count":44689,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2778713086\/6bb08d7415a929e59a0475dd0bfee7cb_normal.jpeg","listed_count":1,"geo_enabled":true,"created_at":"Tue Jun 14 19:38:35 +0000 2011","profile_text_color":"A89C9C","name":"\u2020Makaveli","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/624965753\/aejknx8jcfadqiu8hwc9.jpeg","friends_count":1158,"url":null,"id":317331185,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/624965753\/aejknx8jcfadqiu8hwc9.jpeg","utc_offset":-28800,"profile_link_color":"FF0000","followers_count":1648},"id":263290432358858754,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mountain Time (US & Canada)","profile_background_color":"DB961F","location":"THE END.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779290863\/4315aa9cd46069a6c191ec1dccbe84e9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Roxe \u2661 Kevin Castro.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/157409499\/1351579452","favourites_count":2409,"screen_name":"PoeticCheifa","profile_sidebar_border_color":"000000","id_str":"157409499","verified":false,"lang":"en","statuses_count":90081,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779290863\/4315aa9cd46069a6c191ec1dccbe84e9_normal.jpeg","listed_count":24,"geo_enabled":true,"created_at":"Sat Jun 19 18:35:38 +0000 2010","profile_text_color":"050505","name":"R.Castro","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/280988600\/step4-lego-men-rolling-a-joint.jpg","friends_count":3855,"url":null,"id":157409499,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/280988600\/step4-lego-men-rolling-a-joint.jpg","utc_offset":-25200,"profile_link_color":"000000","followers_count":4700},"id":263290764677758976,"contributors":null,"favorited":false} +{"delete":{"status":{"user_id_str":"303390508","id_str":"168073571103547392","id":168073571103547392,"user_id":303390508}}} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"La he dado envidia y quiere tumbarse en el sof\u00e1 conmigo. \ud83d\udc36 http:\/\/t.co\/CkKduYKy","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764694523905","entities":{"user_mentions":[],"media":[{"type":"photo","expanded_url":"http:\/\/twitter.com\/isaChevisa\/status\/263290764694523905\/photo\/1","indices":[59,79],"media_url_https":"https:\/\/p.twimg.com\/A6dljjaCEAEbTcR.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":800,"w":600,"resize":"fit"},"large":{"h":1024,"w":768,"resize":"fit"},"small":{"h":453,"w":340,"resize":"fit"}},"id_str":"263290764698718209","media_url":"http:\/\/p.twimg.com\/A6dljjaCEAEbTcR.jpg","id":263290764698718209,"url":"http:\/\/t.co\/CkKduYKy","display_url":"pic.twitter.com\/CkKduYKy"}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Madrid","profile_background_color":"C0DEED","location":"Pedrajas.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2733658634\/fe673037e01acfb9fec7dc674d6871f5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Quien mucho se ausenta, pronto deja de hacer falta.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/473429531\/1350578041","favourites_count":37,"screen_name":"isaChevisa","profile_sidebar_border_color":"C0DEED","id_str":"473429531","verified":false,"lang":"es","statuses_count":2515,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2733658634\/fe673037e01acfb9fec7dc674d6871f5_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Jan 24 23:48:52 +0000 2012","profile_text_color":"333333","name":"Chabeliiiis. ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":149,"url":null,"id":473429531,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":3600,"profile_link_color":"0084B4","followers_count":275},"id":263290764694523905,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @Jfred_21: Feels so good to sleep in","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681949184","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"Jfred_21","id_str":"520012252","name":"Jordan Frederick","id":520012252}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Feels so good to sleep in","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290094767718400","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:44 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2768203678\/5a25822b66f8b0bf2930efd6a30340e5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/520012252\/1349646417","favourites_count":66,"screen_name":"Jfred_21","profile_sidebar_border_color":"C0DEED","id_str":"520012252","verified":false,"lang":"en","statuses_count":1464,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2768203678\/5a25822b66f8b0bf2930efd6a30340e5_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sat Mar 10 02:17:54 +0000 2012","profile_text_color":"333333","name":"Jordan Frederick","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":210,"url":null,"id":520012252,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":227},"id":263290094767718400,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Quito","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401636544\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"#DBempire\r\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/248467481\/1348707571","favourites_count":58,"screen_name":"T_ryda5","profile_sidebar_border_color":"C0DEED","id_str":"248467481","verified":false,"lang":"en","statuses_count":2876,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401636544\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Mon Feb 07 02:06:16 +0000 2011","profile_text_color":"333333","name":"Tanner Houska","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/410026358\/KOBEEEE.jpg","friends_count":192,"url":null,"id":248467481,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/410026358\/KOBEEEE.jpg","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":316},"id":263290764681949184,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Mein Vater f\u00e4hrt Donnerstag in irgendeine Stadt wegen einer Messe und morgen fr\u00fch will er die Winterreifen ranmachen lassen.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855293953","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Berlin","profile_background_color":"C0DEED","location":"BERLIN","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2651787290\/bf8016f4a19c6eef4db64012429657b9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Alevi.| \u2764 Fenerbahce. \u2764| Cool.|Waldorfsch\u00fclerin.|halb T\u00fcrkin,halb Perserin.| Ahmet Kaya, @LanaDelRey , Baris Manco & Cem Karaca. \u2764| kik: CananS. | D.D.S.\u2764!!!","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/385929294\/1349356290","favourites_count":352,"screen_name":"EineCanan","profile_sidebar_border_color":"FFFFFF","id_str":"385929294","verified":false,"lang":"de","statuses_count":14815,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2651787290\/bf8016f4a19c6eef4db64012429657b9_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Thu Oct 06 11:35:13 +0000 2011","profile_text_color":"333333","name":" Canan ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/676398010\/9dec5cbcbf9792de5fb3851ad2c62a44.jpeg","friends_count":90,"url":null,"id":385929294,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/676398010\/9dec5cbcbf9792de5fb3851ad2c62a44.jpeg","utc_offset":3600,"profile_link_color":"0084B4","followers_count":169},"id":263290768855293953,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u305f\u3089\u3053\u30d1\u30b9\u30bf\u306b\u3059\u308b\u304b\u30ab\u30eb\u30dc\u30ca\u30fc\u30e9\u306b\u3059\u308b\u304b","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768859475968","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"\u516d\u5e74\u9577\u5c4b\u306e\u5929\u4e95","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2723299312\/0bf8adafab1d1c8ef7380bbd5dfb23e1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u4e03\u677e\u5c0f\u5e73\u592a\u306f\u4ffa\u306e\u5ac1\uff3c(^p^)\uff0f\u5fcd\u8853\u5b66\u5712\u306b\u5165\u5b66\u5e0c\u671b\u3002CP\u5927\u597d\u7269\u306e\u96d1\u98df\u8150\u5973\u5b50\u3067\u3059!!\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u57fa\u672c\u8fd4\u3057\u307e\u305b\u3093\u3002\u4e00\u8a00\u9802\u3051\u308c\u3070\u8fd4\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002rkrn\/\u30dd\u30b1\u30e2\u30f3\/\u30dd\u30b1\u5fcd\/\u30b1\u30ed\u30ed\/BASARA\u3000\u4e00\u8aad\u9802\u3051\u308c\u3070\u5e78\u3044\u3067\u3059\u3002 ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/463549012\/1348149994","favourites_count":182,"screen_name":"nyanta_bsr","profile_sidebar_border_color":"C0DEED","id_str":"463549012","verified":false,"lang":"ja","statuses_count":24713,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2723299312\/0bf8adafab1d1c8ef7380bbd5dfb23e1_normal.jpeg","listed_count":7,"geo_enabled":false,"created_at":"Sat Jan 14 06:39:38 +0000 2012","profile_text_color":"333333","name":"\u767a\u60c5\u671f\u3088\u3081\u307c","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":265,"url":"http:\/\/twpf.jp\/nyanta_bsr","id":463549012,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":256},"id":263290768859475968,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"ansarap tlga ng nachos ng Checkpoint!","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863686656","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"080708","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2679328001\/20d5dad6ae9aabf015ac6338989b6be4_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"0F1263","description":"I never used to finish anything but now I","favourites_count":4,"screen_name":"ZZZoeDramaQueen","profile_sidebar_border_color":"CC0E41","id_str":"18096473","verified":false,"lang":"en","statuses_count":16769,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2679328001\/20d5dad6ae9aabf015ac6338989b6be4_normal.jpeg","listed_count":1,"geo_enabled":true,"created_at":"Sat Dec 13 09:44:02 +0000 2008","profile_text_color":"D4E612","name":"Jamie G","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/217895093\/x19e558faecc104da20fe615f3634be6.jpg","friends_count":1040,"url":null,"id":18096473,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/217895093\/x19e558faecc104da20fe615f3634be6.jpg","utc_offset":-32400,"profile_link_color":"E8196C","followers_count":302},"id":263290768863686656,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Resting -__-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888844288","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"E8CC6F","location":"Marabahan, Indonesia","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2386822320\/profile_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C32B29","description":"Suka Puisi? Cek Favorite ane :D | Kaskuser RKS |User ID: 1895732 | fB : Hariskage Kaskus| PIN? DM ya ( \u2665\u0361\u25bd\u2665\u0361 ) ","favourites_count":17,"screen_name":"Hariskage","profile_sidebar_border_color":"572C2C","id_str":"166455293","verified":false,"lang":"en","statuses_count":8741,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2386822320\/profile_normal.jpg","listed_count":1,"geo_enabled":false,"created_at":"Wed Jul 14 05:27:18 +0000 2010","profile_text_color":"DEAB45","name":"Haris Fadillah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/278501191\/x06fb2174836e0b867af2b5b4628af97.jpg","friends_count":70,"url":"http:\/\/hariskage.blogspot.com","id":166455293,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/278501191\/x06fb2174836e0b867af2b5b4628af97.jpg","utc_offset":28800,"profile_link_color":"D97630","followers_count":251},"id":263290768888844288,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"iya mau nulis apa lagi vit lalalalla \u201c@alvitasapphira: Weh ni quality management bsok cuma tulis nama nim kelas tanggal??????\u201d","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884658176","entities":{"user_mentions":[{"indices":[38,53],"screen_name":"alvitasapphira","id_str":"55500841","name":"Alvita Sapphira","id":55500841}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"B1F2C7","location":"My Parents's arms","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2725350925\/bc834af5d76ba6ca34f649255e5878de_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F5D2D0","description":"Jesus's - Dream Maker - Pastry Chef wanna be -\u2665ES","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/77733444\/1351528129","favourites_count":111,"screen_name":"codiclaudia","profile_sidebar_border_color":"C0DEED","id_str":"77733444","verified":false,"lang":"en","statuses_count":28831,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2725350925\/bc834af5d76ba6ca34f649255e5878de_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Sep 27 13:18:14 +0000 2009","profile_text_color":"EB4141","name":"Claudia Wong \u2665 ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/424874258\/IMG_0668.JPG","friends_count":290,"url":"http:\/\/claudiacodi.blogspot.com","id":77733444,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/424874258\/IMG_0668.JPG","utc_offset":-28800,"profile_link_color":"B04FBD","followers_count":430},"id":263290768884658176,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"kijk tv en eten","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768872046593","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Athens","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2716232950\/30213c14ebaa0d06e1b84ecf9dd69aae_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Obc Elst MH1C\/ Hcm C6\/ Love mn schatjes Inge,Julie en @isa_donna I love AWKWARD\/ I am team Matty\/ I am Directioner","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/798838422\/1350138391","favourites_count":1,"screen_name":"crazyybrownhair","profile_sidebar_border_color":"FFFFFF","id_str":"798838422","verified":false,"lang":"nl","statuses_count":217,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2716232950\/30213c14ebaa0d06e1b84ecf9dd69aae_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Sun Sep 02 18:54:35 +0000 2012","profile_text_color":"333333","name":"Eliana","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/683686934\/b2375d4d3f3242dbd6ed95c5ffc09e24.jpeg","friends_count":315,"url":null,"id":798838422,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/683686934\/b2375d4d3f3242dbd6ed95c5ffc09e24.jpeg","utc_offset":7200,"profile_link_color":"0084B4","followers_count":52},"id":263290768872046593,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"I posted a new photo to Facebook http:\/\/t.co\/My492qlV","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823810","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1KWxtqDnT","indices":[33,53],"display_url":"fb.me\/1KWxtqDnT","url":"http:\/\/t.co\/My492qlV"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","location":"Selinsgrove, PA","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1551955490\/Y-Logo_normal_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Live. Local. & Lovin twitter! http:\/\/y106.fm","favourites_count":0,"screen_name":"Y1065fm","profile_sidebar_border_color":"C0DEED","id_str":"376818645","verified":false,"lang":"en","statuses_count":635,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1551955490\/Y-Logo_normal_normal.jpg","listed_count":1,"geo_enabled":true,"created_at":"Tue Sep 20 15:04:03 +0000 2011","profile_text_color":"520752","name":"Y106.5","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/333456384\/bg.jpg","friends_count":33,"url":"http:\/\/y106.fm","id":376818645,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/333456384\/bg.jpg","utc_offset":-18000,"profile_link_color":"4E00B3","followers_count":43},"id":263290768888823810,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"SAO\u3063\u30662010\u5e74\u304b\u3089\u6709\u540d\u3060\u3063\u305f\u306e\uff1f","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884645888","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"\u552f\u306e\u3068\u306a\u308a","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2644107598\/29f681233cda49b0b0e05ed567dab850_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u6771\u5317\u30671\u756a\u306e\uff71\uff97\uff72\uff8c\uff9e\u3001\uff7c\uff9e\uff6c\uff9d\uff84\uff9e\u4f7f\u3044\u3092\u76ee\u6307\u3057\u3066\u3044\u307e\u3059\u3002\u552f\u3068\u548c\u594f\u3092\u611b\u3057\u3066\u307e\u3059\u3002\uff71\uff97\uff72\uff8c\uff9e\u3001\uff7c\uff9e\uff6c\uff9d\uff84\uff9e\u30012\u6b21\u5143\u304c\u597d\u304d\u306a\u65b9\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u304f\u3060\u3055\u3044\uff01 \u5b9f\u7e3e \u7b2c1\u56de\u4ed9\u53f0CS4\u4f4d \u7b2c2\u56de\u4ed9\u53f0CS\uff8d\uff9e\uff7d\uff848 \u7b2c1\u56de\u77f3\u5dfbCS3\u4f4d","favourites_count":15,"screen_name":"RED1002019","profile_sidebar_border_color":"C0DEED","id_str":"527102035","verified":false,"lang":"ja","statuses_count":5703,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2644107598\/29f681233cda49b0b0e05ed567dab850_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Sat Mar 17 04:49:24 +0000 2012","profile_text_color":"333333","name":"\uff32\uff25\uff24\uff20TARITARI\u53a8\u3067\u3082\u604b\u304c\u3057\u305f\u3044","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":37,"url":"http:\/\/freedomnared.blog.fc2.com\/","id":527102035,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":99},"id":263290768884645888,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Had to run to apex today. \n\n& drive like a maniac in this fog \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863686657","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"01080A","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773983343\/1d378a20bd4a2d67fda35fed02ccb9b0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"These hoes want attention. I want respect.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/95122679\/1350454788","favourites_count":149,"screen_name":"thelilmirmaid","profile_sidebar_border_color":"D6274A","id_str":"95122679","verified":false,"lang":"en","statuses_count":14803,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773983343\/1d378a20bd4a2d67fda35fed02ccb9b0_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Mon Dec 07 02:56:53 +0000 2009","profile_text_color":"FFA83D","name":"Miranda Truj\u00edllo","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/130789654\/zzzz.gif","friends_count":348,"url":null,"id":95122679,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/130789654\/zzzz.gif","utc_offset":-28800,"profile_link_color":"FF00F7","followers_count":565},"id":263290768863686657,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\ud2b8\uce5c\uc18c\ud574\uc918\u3160\u3160","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880435201","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"@ZICO\ub2d8\uc774 \ub098\ub97c \ud314\ub85c\uc6b0\ud569\ub2c8\ub2e4","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779845226\/e1b90f375e929e23fb7d59012d98f2e9_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"YO DO YOU WANNA B BLOCK B","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/497643441\/1350187597","favourites_count":28,"screen_name":"l3lock_l3_BBC","profile_sidebar_border_color":"C0DEED","id_str":"497643441","verified":false,"lang":"ko","statuses_count":7841,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779845226\/e1b90f375e929e23fb7d59012d98f2e9_normal.png","listed_count":0,"geo_enabled":true,"created_at":"Mon Feb 20 06:29:28 +0000 2012","profile_text_color":"333333","name":"\uc560\ub514@'-'@","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":209,"url":null,"id":497643441,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":113},"id":263290768880435201,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"changing my twitter name . tired of this one.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768859463682","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"34DBBF","location":"ohio bound thrown into ks !","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2660149786\/d9336390bfeae0c9c471fd1434677c16_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"A8F0DE","description":"thaa R E A L E S T person you could ever follow&&kno(: yes, i admit that shiit, im a Herbist d-_-b !!! i dont f.ck around with thaa f.ck arounds;)","favourites_count":48,"screen_name":"_DiamondKinggg","profile_sidebar_border_color":"F0A6EE","id_str":"376898608","verified":false,"lang":"en","statuses_count":4746,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2660149786\/d9336390bfeae0c9c471fd1434677c16_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Sep 20 17:44:04 +0000 2011","profile_text_color":"83EB61","name":"ReputationForTrillin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/598330081\/7ipotj77mon0yfqri7r1.jpeg","friends_count":306,"url":null,"id":376898608,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/598330081\/7ipotj77mon0yfqri7r1.jpeg","utc_offset":-21600,"profile_link_color":"F098CA","followers_count":313},"id":263290768859463682,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"He doing what he can..#TeamObama","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629506","entities":{"user_mentions":[],"hashtags":[{"text":"TeamObama","indices":[22,32]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"BADFCD","location":"**Yellow Brick Rd**","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782165858\/8021b5b53cea2202dc1553f816fd09ad_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"**Head held high..Even in defeat** #TeamMommy #TeamSelfMade #TeamIndependent #TeamCollege #TeamMe )","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/313688117\/1350474587","favourites_count":8,"screen_name":"AlmondySkin","profile_sidebar_border_color":"F2E195","id_str":"313688117","verified":false,"lang":"en","statuses_count":10986,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782165858\/8021b5b53cea2202dc1553f816fd09ad_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jun 09 02:00:15 +0000 2011","profile_text_color":"0C3E53","name":"Almondy Skin ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme12\/bg.gif","friends_count":204,"url":null,"id":313688117,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","utc_offset":-21600,"profile_link_color":"FF0000","followers_count":187},"id":263290768884629506,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"ikut falah,lu ? RT @alabrori: ikut gathering ngak lu? RT @faherzananda: oke,bakso jabrig lagi \\(\u00b4\u25bd`)\/","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/fluppy.me\" rel=\"nofollow\"\u003Efluppyme@\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768867864576","entities":{"user_mentions":[{"indices":[19,28],"screen_name":"alabrori","id_str":"46351871","name":"falah al abrori","id":46351871},{"indices":[57,70],"screen_name":"faherzananda","id_str":"71985468","name":"faherzananda","id":71985468}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","location":"padang-dayeuh kolot,bandung","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2725319274\/713fc2e237c95f72d51c9082027588ff_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"(\u25cf\u2267\u25bd\u2266)\u266a IT Telkom~Telecommunication Engineering\\\\\\'12\r\n","favourites_count":293,"screen_name":"faherzananda","profile_sidebar_border_color":"65B0DA","id_str":"71985468","verified":false,"lang":"en","statuses_count":10832,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2725319274\/713fc2e237c95f72d51c9082027588ff_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Sun Sep 06 06:54:49 +0000 2009","profile_text_color":"3D1957","name":"faherzananda","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/637676287\/5pucrk1cp3xl4pgjv09m.jpeg","friends_count":177,"url":null,"id":71985468,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/637676287\/5pucrk1cp3xl4pgjv09m.jpeg","utc_offset":-28800,"profile_link_color":"FF0000","followers_count":237},"id":263290768867864576,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"tidur ga ya .. -_-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003ETweetCaster for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629504","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"In your mind :D","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2749873517\/2a24b6b066bade8858f1872dbee29983_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Simple boy | BARCELONITAS | just mention for follback","favourites_count":21,"screen_name":"KataYudhaa","profile_sidebar_border_color":"C0DEED","id_str":"856525016","verified":false,"lang":"id","statuses_count":814,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2749873517\/2a24b6b066bade8858f1872dbee29983_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Oct 01 15:10:39 +0000 2012","profile_text_color":"333333","name":"AdenYudhaPratama","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":42,"url":null,"id":856525016,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":109},"id":263290768884629504,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Eh si radit RT @aciLciLoo Makasih iih km meni segituny (\u01a0\u0361\u0334\u0334\u0334\u0334\u0334\u0334.\u032e\u01a0\u0361\u0334\u0334) RT @rhie_qiun: Ya ALLOH ,baim wong teh mini kasep. http:\/\/t.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twidroyd.com\" rel=\"nofollow\"\u003ETwidroyd for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863657984","entities":{"user_mentions":[{"indices":[15,25],"screen_name":"aciLciLoo","id_str":"85090437","name":"indra wahyudi","id":85090437},{"indices":[75,85],"screen_name":"rhie_qiun","id_str":"161525122","name":"\u0633\u0631\u064a \u0648\u0647\u064a\u0648\u0646\u064a","id":161525122}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","location":"www.harrishotels.com","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2776148064\/c9e86de5ec6c782a113c038bbbaa2cd7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Instagram: Rhieqiun| Law Faculty of UNPAR| hotelier @HarrisCTlinkBdg| make-up artist freelancer|\u2661dance| follow @IslamDiaries ,it has a good influence .","favourites_count":29,"screen_name":"rhie_qiun","profile_sidebar_border_color":"C0DEED","id_str":"161525122","verified":false,"lang":"en","statuses_count":22101,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2776148064\/c9e86de5ec6c782a113c038bbbaa2cd7_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Thu Jul 01 02:28:54 +0000 2010","profile_text_color":"333333","name":"\u0633\u0631\u064a \u0648\u0647\u064a\u0648\u0646\u064a","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/607220794\/u9vkz4nu9s6atknnsjpc.jpeg","friends_count":362,"url":null,"id":161525122,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/607220794\/u9vkz4nu9s6atknnsjpc.jpeg","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":538},"id":263290768863657984,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"Udh sampek mblo emg knpa nek ga d slametin mbloo :p RT \"@olimesayu: Klo yg depan ga nyelametin yg dibelakang awas aja, iya to mblo","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823809","entities":{"user_mentions":[{"indices":[56,66],"screen_name":"olimesayu","id_str":"193741814","name":"Wenitya R Mesayu N","id":193741814}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"FFFFFF","location":"Magelang","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2783508289\/b670e33f1e3133c0978fa3b8b0737494_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"B8B8BA","description":"a toast to all of us here,\r\nwith these glasses we understand each other,","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/243517483\/1351583904","favourites_count":0,"screen_name":"DhenPutraa","profile_sidebar_border_color":"fff","id_str":"243517483","verified":false,"lang":"en","statuses_count":464,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2783508289\/b670e33f1e3133c0978fa3b8b0737494_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jan 27 06:27:30 +0000 2011","profile_text_color":"666666","name":"D H E N","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697614672\/5e897f6c4a6cdef3b27d73e356ca3ea0.jpeg","friends_count":46,"url":null,"id":243517483,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697614672\/5e897f6c4a6cdef3b27d73e356ca3ea0.jpeg","utc_offset":25200,"profile_link_color":"FF0000","followers_count":41},"id":263290768888823809,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"me voy a hechar un ratito para estar a tope en el entrenooo","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768880435200","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"sevilla","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2514186443\/yp827q1dcsst0xc8rb59_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"sonreir y no estar nunca triste :)) Me encanta estar con mis amigos hechando risas y tambien me encanta sobre todo jugar al futbol","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/528450655\/1350394696","favourites_count":1,"screen_name":"campos_4","profile_sidebar_border_color":"fff","id_str":"528450655","verified":false,"lang":"es","statuses_count":3478,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2514186443\/yp827q1dcsst0xc8rb59_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Mar 18 12:03:04 +0000 2012","profile_text_color":"333333","name":"Campos","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/635601878\/bx2ba3h5j3wta4rcc8ww.jpeg","friends_count":217,"url":null,"id":528450655,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/635601878\/bx2ba3h5j3wta4rcc8ww.jpeg","utc_offset":null,"profile_link_color":"0084B4","followers_count":249},"id":263290768880435200,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263287145152802817","text":"@desantagputra maklum lah mas udh jrng nntn tv. haha","in_reply_to_user_id_str":"365973785","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863670273","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"desantagputra","id_str":"365973785","name":"Desanta G Putra","id":365973785}],"hashtags":[],"urls":[]},"in_reply_to_user_id":365973785,"in_reply_to_status_id":263287145152802817,"place":null,"coordinates":null,"in_reply_to_screen_name":"desantagputra","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"8B542B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"EADEAA","description":"","favourites_count":1,"screen_name":"luluunaziah","profile_sidebar_border_color":"FFFFFF","id_str":"277922664","verified":false,"lang":"en","statuses_count":301,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 06 07:43:59 +0000 2011","profile_text_color":"333333","name":"luluunaziah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/696642357\/284f3ddb42248466a8a64302be1ea915.jpeg","friends_count":53,"url":null,"id":277922664,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/696642357\/284f3ddb42248466a8a64302be1ea915.jpeg","utc_offset":-28800,"profile_link_color":"9D582E","followers_count":58},"id":263290768863670273,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290628480311297","text":"@rosaa_bee79 @xo_nessaa yay \u263a","in_reply_to_user_id_str":"871531068","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855277568","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"rosaa_bee79","id_str":"871531068","name":"rosabonilla","id":871531068},{"indices":[13,23],"screen_name":"xo_nessaa","id_str":"494544884","name":"Nessaaaa . ","id":494544884}],"hashtags":[],"urls":[]},"in_reply_to_user_id":871531068,"in_reply_to_status_id":263290628480311297,"place":null,"coordinates":null,"in_reply_to_screen_name":"rosaa_bee79","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"ACDED6","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2503268791\/IMG954574_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"","favourites_count":706,"screen_name":"McGovernx3","profile_sidebar_border_color":"F2E195","id_str":"349749107","verified":false,"lang":"en","statuses_count":13065,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2503268791\/IMG954574_normal.jpg","listed_count":0,"geo_enabled":true,"created_at":"Sat Aug 06 16:41:03 +0000 2011","profile_text_color":"0C3E53","name":"Jess McGovern","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme12\/bg.gif","friends_count":214,"url":null,"id":349749107,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","utc_offset":null,"profile_link_color":"FF0000","followers_count":289},"id":263290768855277568,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290259025063936","text":"okesiaaaap jangan lupa yaa;;)RT @Gagaaannnn Engke enya di bawa klo udh engga di pake sama bayi yah wkwkw RT\"@vitriaspianti: aslinya","in_reply_to_user_id_str":"298319509","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872062976","entities":{"user_mentions":[{"indices":[32,43],"screen_name":"Gagaaannnn","id_str":"298319509","name":"Agan Renaldy ","id":298319509},{"indices":[108,122],"screen_name":"vitriaspianti","id_str":"192088903","name":"vitri ","id":192088903}],"hashtags":[],"urls":[]},"in_reply_to_user_id":298319509,"in_reply_to_status_id":263290259025063936,"place":null,"coordinates":null,"in_reply_to_screen_name":"Gagaaannnn","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773462164\/c3a24d08ef932e681525231c89842d90_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"8B2DE3","description":"@tinker_bell\u2665\u265b","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/192088903\/1351001488","favourites_count":61,"screen_name":"vitriaspianti","profile_sidebar_border_color":"FFFFFF","id_str":"192088903","verified":false,"lang":"en","statuses_count":24427,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773462164\/c3a24d08ef932e681525231c89842d90_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Sep 18 04:20:35 +0000 2010","profile_text_color":"E61070","name":"vitri ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695605068\/921c45771ee81012d84a6c6a5c1071af.jpeg","friends_count":943,"url":null,"id":192088903,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695605068\/921c45771ee81012d84a6c6a5c1071af.jpeg","utc_offset":-28800,"profile_link_color":"6BE2F7","followers_count":1070},"id":263290768872062976,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290514252632064","text":"@ChrissieHayman get me a needle and thread I just split my sides","in_reply_to_user_id_str":"380429906","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768872046592","entities":{"user_mentions":[{"indices":[0,15],"screen_name":"ChrissieHayman","id_str":"380429906","name":"Christabel Hayman ","id":380429906}],"hashtags":[],"urls":[]},"in_reply_to_user_id":380429906,"in_reply_to_status_id":263290514252632064,"place":null,"coordinates":null,"in_reply_to_screen_name":"ChrissieHayman","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Harpenden","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2767384769\/e9f0f60b012b3da63fa8df0055998691_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"16 year old Sgt Panda","favourites_count":3,"screen_name":"adambirch123","profile_sidebar_border_color":"C0DEED","id_str":"110485633","verified":false,"lang":"en","statuses_count":229,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2767384769\/e9f0f60b012b3da63fa8df0055998691_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon Feb 01 18:28:25 +0000 2010","profile_text_color":"333333","name":"Adam Birch","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":103,"url":null,"id":110485633,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":16},"id":263290768872046592,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290193862328321","text":"@BaisdenLive #virginislandwives they are users and has no respect for no one but themselves.","in_reply_to_user_id_str":"73458781","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768867880960","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"BaisdenLive","id_str":"73458781","name":"Michael Baisden","id":73458781}],"hashtags":[{"text":"virginislandwives","indices":[13,31]}],"urls":[]},"in_reply_to_user_id":73458781,"in_reply_to_status_id":263290193862328321,"place":null,"coordinates":null,"in_reply_to_screen_name":"BaisdenLive","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"82D5D9","location":"Atlanta","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1535964481\/Rhea_second_copy_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDFFCC","description":"CEO\/ Founder of the upcoming Reality show Virgin Island Wives.Virgin Islands Wives is about beauty to the utmost pleasure of the viewers.","favourites_count":3,"screen_name":"VirginIslandWiv","profile_sidebar_border_color":"BDDCAD","id_str":"370575170","verified":false,"lang":"en","statuses_count":223,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1535964481\/Rhea_second_copy_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Fri Sep 09 08:02:57 +0000 2011","profile_text_color":"333333","name":"Virgin Island Wives","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/404366482\/VIWIVESlogo_redone.jpg","friends_count":1264,"url":"http:\/\/www.virginislandwives.com\/","id":370575170,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/404366482\/VIWIVESlogo_redone.jpg","utc_offset":-21600,"profile_link_color":"0065B3","followers_count":417},"id":263290768867880960,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263286048874967041","text":"@HanneMesselink gefeliciteerd! :D","in_reply_to_user_id_str":"368880803","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629507","entities":{"user_mentions":[{"indices":[0,15],"screen_name":"HanneMesselink","id_str":"368880803","name":"Hanneke ","id":368880803}],"hashtags":[],"urls":[]},"in_reply_to_user_id":368880803,"in_reply_to_status_id":263286048874967041,"place":null,"coordinates":null,"in_reply_to_screen_name":"HanneMesselink","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Amsterdam","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2763923186\/aec8a9b5b84099dd2250cbfed332c840_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"R.i.p @rolstoelertonko || Crazy, but not boring, || Employee of Rolls Royce & Bentley || Cars are my life.|| \u2665\u2665 iloveyou swaggerboy xxx gr van je verloofde","favourites_count":20,"screen_name":"woutervdp","profile_sidebar_border_color":"C0DEED","id_str":"84675476","verified":false,"lang":"nl","statuses_count":17384,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2763923186\/aec8a9b5b84099dd2250cbfed332c840_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Fri Oct 23 20:04:34 +0000 2009","profile_text_color":"333333","name":"Wouter ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":92,"url":"http:\/\/www.pipashop.nl","id":84675476,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":3600,"profile_link_color":"0084B4","followers_count":124},"id":263290768884629507,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290404189908992","text":"@asdfghjklchelle @krxyrmlk HAHAHA. I hope sooooo. :( :))))","in_reply_to_user_id_str":"284958013","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884637696","entities":{"user_mentions":[{"indices":[0,16],"screen_name":"asdfghjklchelle","id_str":"284958013","name":"rachellethepro","id":284958013},{"indices":[17,26],"screen_name":"krxyrmlk","id_str":"155108313","name":"tayswift1Dzayner\u2654","id":155108313}],"hashtags":[],"urls":[]},"in_reply_to_user_id":284958013,"in_reply_to_status_id":263290404189908992,"place":null,"coordinates":null,"in_reply_to_screen_name":"asdfghjklchelle","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Arizona","profile_background_color":"131516","location":"Hermosa Bataan Philippines.","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2769768866\/237be68bd8041cdcd951d3f3a18f4162_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"efefef","description":"Sophomore \/ Zayn Malik \u2665 \/ Baliw \/ Yeye Bonel! \/AYAYAY! Baho baho BUMBAY! XD\r\nFollow me and i'll follow you back =))))))))\r\n","favourites_count":115,"screen_name":"iamairaraymundo","profile_sidebar_border_color":"eeeeee","id_str":"826662690","verified":false,"lang":"en","statuses_count":808,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2769768866\/237be68bd8041cdcd951d3f3a18f4162_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Sun Sep 16 07:13:10 +0000 2012","profile_text_color":"333333","name":"@MAVRaymundo","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":244,"url":"http:\/\/twitter.com\/justbesimple","id":826662690,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":-25200,"profile_link_color":"009999","followers_count":79},"id":263290768884637696,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263287914920812545","text":"@raihansalaska hahahahahahaha *ngakak","in_reply_to_user_id_str":"387491267","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823808","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"raihansalaska","id_str":"387491267","name":"raihan salaska","id":387491267}],"hashtags":[],"urls":[]},"in_reply_to_user_id":387491267,"in_reply_to_status_id":263287914920812545,"place":null,"coordinates":null,"in_reply_to_screen_name":"raihansalaska","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Bangkok","profile_background_color":"DBE9ED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2754408540\/cb48d2da9ce873c7ca0a72d2b7743202_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E5507E","description":"Yang unfoll gue gak papa , tapi dosa nya tanggu sendiri ye \u2603","favourites_count":17,"screen_name":"adifamadjid","profile_sidebar_border_color":"CC3366","id_str":"624305689","verified":false,"lang":"id","statuses_count":219,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2754408540\/cb48d2da9ce873c7ca0a72d2b7743202_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Jul 02 02:56:29 +0000 2012","profile_text_color":"362720","name":"Adifa R ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/608931244\/8h1s8kozb31dhhnse9ll.jpeg","friends_count":99,"url":null,"id":624305689,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/608931244\/8h1s8kozb31dhhnse9ll.jpeg","utc_offset":25200,"profile_link_color":"CC3366","followers_count":108},"id":263290768888823808,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @LoversAliceW: Odeio ter que explicar o que significa \"coisar\"","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768855289856","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"LoversAliceW","id_str":"608452458","name":"carolegal l FAD ","id":608452458}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Odeio ter que explicar o que significa \"coisar\"","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290472208945152","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:14 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"FFFFFF","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2756620608\/223a4625af21a1e18d6c069d2929af55_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"ei, alice teu nome \u00e9 mentira??? pq vc \u00e9 mto linda pra ser verdade","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/608452458\/1351088605","favourites_count":658,"screen_name":"LoversAliceW","profile_sidebar_border_color":"FFFFFF","id_str":"608452458","verified":false,"lang":"pt","statuses_count":29287,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2756620608\/223a4625af21a1e18d6c069d2929af55_normal.png","listed_count":2,"geo_enabled":true,"created_at":"Thu Jun 14 18:29:11 +0000 2012","profile_text_color":"333333","name":"carolegal l FAD ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/680924015\/e15c6e21f22f17dc7fe16a85aba2331d.jpeg","friends_count":437,"url":"http:\/\/loversalicew.tumblr.com\/","id":608452458,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/680924015\/e15c6e21f22f17dc7fe16a85aba2331d.jpeg","utc_offset":-10800,"profile_link_color":"E3529F","followers_count":1814},"id":263290472208945152,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mid-Atlantic","profile_background_color":"f0f3f5","location":" pqpanda HAHA *","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781754584\/d73a28c9a680b1b21b9a881af3124c42_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Mesmo depois de conhecer v\u00e1rios sorrisos o seu foi, \u00e9 e sempre ser\u00e1 meu favorito @alice_correa, E bem mais do que amor *----* since 29\/10\/12","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/913195794\/1351544388","favourites_count":7,"screen_name":"AliceCWMyLove","profile_sidebar_border_color":"fff","id_str":"913195794","verified":false,"lang":"pt","statuses_count":168,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781754584\/d73a28c9a680b1b21b9a881af3124c42_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Mon Oct 29 20:42:31 +0000 2012","profile_text_color":"333333","name":"Lice *-----* ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697764279\/273b9f2043acea43bebde71f693556ce.jpeg","friends_count":44,"url":"http:\/\/umapoetamorta.tumblr.com\/","id":913195794,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697764279\/273b9f2043acea43bebde71f693556ce.jpeg","utc_offset":-7200,"profile_link_color":"0084B4","followers_count":55},"id":263290768855289856,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290499371249665","text":"@HanyaJawab pernah hehehe #HJ","in_reply_to_user_id_str":"385402204","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768876244993","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"HanyaJawab","id_str":"385402204","name":"BEBEK KEPO\u2122","id":385402204}],"hashtags":[{"text":"HJ","indices":[26,29]}],"urls":[]},"in_reply_to_user_id":385402204,"in_reply_to_status_id":263290499371249665,"place":null,"coordinates":null,"in_reply_to_screen_name":"HanyaJawab","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Banjarmasin \/ indonesia","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779101641\/abcb21ca737aceec9ab3b0af89a4a967_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Salma nanda alumni Sdn Sn kuripan 2 \/ nak smp 7 Bjm klas 7b \/ basket putri spensev Bjm ","favourites_count":42,"screen_name":"NandaAdik","profile_sidebar_border_color":"C0DEED","id_str":"357479598","verified":false,"lang":"en","statuses_count":596,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779101641\/abcb21ca737aceec9ab3b0af89a4a967_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Aug 18 12:41:43 +0000 2011","profile_text_color":"333333","name":"\u2122salma nanda .kh.p \u2122","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":282,"url":null,"id":357479598,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":48},"id":263290768876244993,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290135129497600","text":"@melvinapo @jralmadin at malapit lang sa camp! :D","in_reply_to_user_id_str":"48340489","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768859463680","entities":{"user_mentions":[{"indices":[0,10],"screen_name":"melvinapo","id_str":"48340489","name":"Melvin Alonzo Apo","id":48340489},{"indices":[11,21],"screen_name":"jralmadin","id_str":"347063233","name":"JR Almadin","id":347063233}],"hashtags":[],"urls":[]},"in_reply_to_user_id":48340489,"in_reply_to_status_id":263290135129497600,"place":null,"coordinates":null,"in_reply_to_screen_name":"melvinapo","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hong Kong","profile_background_color":"A1957E","location":"Manila, Philippines","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1913633958\/259878_10150233070160474_677860473_7791077_5732764_n2_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"AHS B2014 | 28578F05 | Prepare to fall, but keep dreaming big","favourites_count":151,"screen_name":"ciscosuplico","profile_sidebar_border_color":"9E6400","id_str":"112982661","verified":false,"lang":"en","statuses_count":4558,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1913633958\/259878_10150233070160474_677860473_7791077_5732764_n2_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Wed Feb 10 09:36:36 +0000 2010","profile_text_color":"5C5C5C","name":"Tom Suplico","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/454181400\/tumblr_lwwoqvSOYU1qzleu4o1_500.jpg","friends_count":554,"url":null,"id":112982661,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/454181400\/tumblr_lwwoqvSOYU1qzleu4o1_500.jpg","utc_offset":28800,"profile_link_color":"404040","followers_count":372},"id":263290768859463680,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":"263290473484001280","text":"@gabrrieldias desse tipo..","in_reply_to_user_id_str":"283756595","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872058880","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"gabrrieldias","id_str":"283756595","name":"gabriel dias","id":283756595}],"hashtags":[],"urls":[]},"in_reply_to_user_id":283756595,"in_reply_to_status_id":263290473484001280,"place":null,"coordinates":null,"in_reply_to_screen_name":"gabrrieldias","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"929CA1","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2778201451\/d52507a4b45dd7357bac1168122eb632_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":10,"screen_name":"hrmln","profile_sidebar_border_color":"FFFFFF","id_str":"627804339","verified":false,"lang":"en","statuses_count":1717,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2778201451\/d52507a4b45dd7357bac1168122eb632_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jul 05 20:49:52 +0000 2012","profile_text_color":"333333","name":"Mila","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/674622824\/3dcbe74154bd070680b40531cf9acf7e.jpeg","friends_count":20,"url":"http:\/\/brokenpromisses.tumblr.com\/","id":627804339,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/674622824\/3dcbe74154bd070680b40531cf9acf7e.jpeg","utc_offset":-10800,"profile_link_color":"9B76F7","followers_count":33},"id":263290768872058880,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @ysor29: Yo a ti no te odio, por que el odio es sentimiento y yo por ti no siento nada.","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768867876864","entities":{"user_mentions":[{"indices":[3,10],"screen_name":"ysor29","id_str":"157440346","name":"Lynda","id":157440346}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Yo a ti no te odio, por que el odio es sentimiento y yo por ti no siento nada.","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290576974266369","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:39 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mexico City","profile_background_color":"262916","location":"M\u00e9xico","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2722841066\/316b7cf830300218a7de532d0f666b82_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E3E9A3","description":"Mujer,mexicana, Un verdadero amigo es aquel que entra cuando todos los dem\u00e1s se van. ...SI ME SIGUES... TE SIGO,","favourites_count":205,"screen_name":"ysor29","profile_sidebar_border_color":"000000","id_str":"157440346","verified":false,"lang":"es","statuses_count":1169,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2722841066\/316b7cf830300218a7de532d0f666b82_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Jun 19 20:42:36 +0000 2010","profile_text_color":"C8D353","name":"Lynda","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/680439848\/eb559109bbd8e73e5645f489a35e8d81.jpeg","friends_count":2762,"url":null,"id":157440346,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/680439848\/eb559109bbd8e73e5645f489a35e8d81.jpeg","utc_offset":-21600,"profile_link_color":"9EA927","followers_count":2607},"id":263290576974266369,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784710041\/31ccca949324329b8b6214479407990c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/913527668\/1351556331","favourites_count":1,"screen_name":"y0nitow","profile_sidebar_border_color":"FFFFFF","id_str":"913527668","verified":false,"lang":"es","statuses_count":25,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784710041\/31ccca949324329b8b6214479407990c_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Oct 30 00:12:34 +0000 2012","profile_text_color":"333333","name":"y0nitow\u263bM\u20acdrano","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697379124\/00a0fba41ead403ef76534c6a690d26e.jpeg","friends_count":505,"url":null,"id":913527668,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697379124\/00a0fba41ead403ef76534c6a690d26e.jpeg","utc_offset":null,"profile_link_color":"0084B4","followers_count":104},"id":263290768867876864,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @WeSagittarius: #Sagittarius smile more than they cry, give more than they take, and love more than they hate.","in_reply_to_user_id_str":null,"retweet_count":139,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003ETweetCaster for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888840192","entities":{"user_mentions":[{"indices":[3,17],"screen_name":"WeSagittarius","id_str":"750840786","name":"We Sagittarius","id":750840786}],"hashtags":[{"text":"Sagittarius","indices":[19,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#Sagittarius smile more than they cry, give more than they take, and love more than they hate.","in_reply_to_user_id_str":null,"retweet_count":139,"geo":null,"source":"\u003Ca href=\"https:\/\/www.twitter.com\" rel=\"nofollow\"\u003EZodiac Facts\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290479297310720","entities":{"user_mentions":[],"hashtags":[{"text":"Sagittarius","indices":[0,12]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:16 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Chennai","profile_background_color":"131516","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2630662706\/1e97dd83510b24be53cf31316d9cf1cd_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"Zodiac Sign Sagittarius : November 22 - December 21. Sagittarius know the truth and they know where they are going.Daily #Sagittarius astrology facts.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/750840786\/1348166272","favourites_count":0,"screen_name":"WeSagittarius","profile_sidebar_border_color":"FFFFFF","id_str":"750840786","verified":false,"lang":"en","statuses_count":2560,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2630662706\/1e97dd83510b24be53cf31316d9cf1cd_normal.jpeg","listed_count":101,"geo_enabled":false,"created_at":"Sat Aug 11 07:19:16 +0000 2012","profile_text_color":"333333","name":"We Sagittarius","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":4812,"url":"http:\/\/www.picksor.com","id":750840786,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":19800,"profile_link_color":"000000","followers_count":59739},"id":263290479297310720,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"131516","location":"\u2605Bumi Kenyalang,Malaysia :)\u2605","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2643610824\/40e94f5319d2ba3279ed85dced6bbbd0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":" \ub09c \ub110 \uc6d0\ud574...\uac15\uac1c\ub9ac!! \n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/56614623\/1348651272","favourites_count":25,"screen_name":"AgentGally89","profile_sidebar_border_color":"000000","id_str":"56614623","verified":false,"lang":"en","statuses_count":30370,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2643610824\/40e94f5319d2ba3279ed85dced6bbbd0_normal.jpeg","listed_count":11,"geo_enabled":false,"created_at":"Tue Jul 14 05:14:59 +0000 2009","profile_text_color":"333333","name":"\u2605~Hafiza Yaman ~\u2605","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":126,"url":"http:\/\/mybrainsaid.blogspot.com\/","id":56614623,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":28800,"profile_link_color":"0A0AFC","followers_count":146},"id":263290768888840192,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @stouonline: furac\u00e3o sandy derruba tudo at\u00e9 as folhas no quintal s\u00f3 n\u00e3o cai o meu amor pois n\u00e3o tem jeito n\u00e3o, \u00e9 imortal","in_reply_to_user_id_str":null,"retweet_count":127,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872071168","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"stouonline","id_str":"524890522","name":"acabei de entrar","id":524890522}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"furac\u00e3o sandy derruba tudo at\u00e9 as folhas no quintal s\u00f3 n\u00e3o cai o meu amor pois n\u00e3o tem jeito n\u00e3o, \u00e9 imortal","in_reply_to_user_id_str":null,"retweet_count":127,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263289622656872449","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:41:52 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Buenos Aires","profile_background_color":"F0F0F0","location":"sc - sp ","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2429715356\/qkq6h4py9is49z0qbu6p_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"perfil lotado add no 2","favourites_count":2343,"screen_name":"stouonline","profile_sidebar_border_color":"FFFFFF","id_str":"524890522","verified":false,"lang":"en","statuses_count":11561,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2429715356\/qkq6h4py9is49z0qbu6p_normal.jpeg","listed_count":232,"geo_enabled":true,"created_at":"Thu Mar 15 00:56:05 +0000 2012","profile_text_color":"333333","name":"acabei de entrar","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677211961\/f8af8be0c170fcc3411f1a81d3d9fb48.jpeg","friends_count":218,"url":null,"id":524890522,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677211961\/f8af8be0c170fcc3411f1a81d3d9fb48.jpeg","utc_offset":-10800,"profile_link_color":"0F1A85","followers_count":112965},"id":263289622656872449,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"642D8B","location":"cwbeleza!","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2707395136\/b35e7abb6efd8f75418d7ef90ba2cae8_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Que nossa amizade nunca acabe, que voce esteja sempre comigo, que voce nao chore, mas se precisar que eu esteja junto pra ter dar apoio. s2 Minha Perfeita s2.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/174470598\/1351000279","favourites_count":17,"screen_name":"nooovinha_","profile_sidebar_border_color":"000000","id_str":"174470598","verified":false,"lang":"pt","statuses_count":20107,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2707395136\/b35e7abb6efd8f75418d7ef90ba2cae8_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Aug 04 00:42:17 +0000 2010","profile_text_color":"193957","name":"Gabriele Augusta *-*","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/681712022\/b6cf2fc31cd5eaf91300af610560a568.jpeg","friends_count":244,"url":"http:\/\/tuua-maloqueiraa.tumblr.com","id":174470598,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/681712022\/b6cf2fc31cd5eaf91300af610560a568.jpeg","utc_offset":-14400,"profile_link_color":"FF0000","followers_count":304},"id":263290768872071168,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @MenHumor: We live in a dark age. An age where it's not okay to commit murder but it's okay for fat girls to wear leggings.","in_reply_to_user_id_str":null,"retweet_count":589,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880455682","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"MenHumor","id_str":"131480042","name":"Men Humor","id":131480042}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"We live in a dark age. An age where it's not okay to commit murder but it's okay for fat girls to wear leggings.","in_reply_to_user_id_str":null,"retweet_count":589,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263106718119124992","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:35:04 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mumbai","profile_background_color":"022330","location":"Worldwide","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2756279207\/fc9c8bbaab3abd57d74f3c2bec85ea32_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"Tweeting EPIC Humor that pops in a Men's Mind! \r\n\r\n *Parody Account* (For Advertising Contact: MenHumour@gmail.com) \r\n\r\n\r\n\r\n\r\n\r\n","favourites_count":137,"screen_name":"MenHumor","profile_sidebar_border_color":"A8C7F7","id_str":"131480042","verified":false,"lang":"en","statuses_count":6606,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2756279207\/fc9c8bbaab3abd57d74f3c2bec85ea32_normal.jpeg","listed_count":666,"geo_enabled":false,"created_at":"Sat Apr 10 11:43:15 +0000 2010","profile_text_color":"333333","name":"Men Humor","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/644566477\/yh2iz5qicwa8xuofi6np.gif","friends_count":113241,"url":null,"id":131480042,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/644566477\/yh2iz5qicwa8xuofi6np.gif","utc_offset":19800,"profile_link_color":"0084B4","followers_count":657010},"id":263106718119124992,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"FCEBB6","location":"Johannesburg, South Africa \u2661","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775647750\/f1ba18bb4f95200fe2415e6baba32724_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"78C0A8","description":"Brenda 17, follow me and @Zach_the1 or purple unicorns will eat you and your family.","favourites_count":274,"screen_name":"b34chbum","profile_sidebar_border_color":"F0A830","id_str":"552252506","verified":false,"lang":"en","statuses_count":6836,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775647750\/f1ba18bb4f95200fe2415e6baba32724_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Thu Apr 12 23:24:44 +0000 2012","profile_text_color":"CE7834","name":"\u2022BeachBum\u2022","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/696011789\/0a6c9f4d9614963e09faff9ccb3a83fc.gif","friends_count":634,"url":"http:\/\/www.diskobiskit.tumblr.com","id":552252506,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/696011789\/0a6c9f4d9614963e09faff9ccb3a83fc.gif","utc_offset":null,"profile_link_color":"5E412F","followers_count":526},"id":263290768880455682,"contributors":null,"favorited":false} +{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @raywert: OMG. Just took this photo of cars floating in the submerged parking garage at the South end of Stone Street. http:\/\/t.co\/30 ...","in_reply_to_user_id_str":null,"retweet_count":1199,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863682560","entities":{"user_mentions":[{"indices":[3,11],"screen_name":"raywert","id_str":"1648351","name":"Ray Wert","id":1648351}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/t.co\/30","indices":[122,136],"display_url":"t.co\/30","url":"http:\/\/t.co\/30"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"OMG. Just took this photo of cars floating in the submerged parking garage at the South end of Stone Street. http:\/\/t.co\/30G4qs3L","in_reply_to_user_id_str":null,"retweet_count":1199,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263102070989680640","entities":{"user_mentions":[],"media":[{"type":"photo","expanded_url":"http:\/\/twitter.com\/raywert\/status\/263102070989680640\/photo\/1","indices":[109,129],"media_url_https":"https:\/\/p.twimg.com\/A6a58ImCcAIKFnr.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":337,"w":600,"resize":"fit"},"large":{"h":575,"w":1024,"resize":"fit"},"small":{"h":191,"w":340,"resize":"fit"}},"id_str":"263102070998069250","media_url":"http:\/\/p.twimg.com\/A6a58ImCcAIKFnr.jpg","id":263102070998069250,"url":"http:\/\/t.co\/30G4qs3L","display_url":"pic.twitter.com\/30G4qs3L"}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:16:36 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","location":"New York, Detroit","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/341867101\/Ray_Wert_Twitter_2_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"efefef","description":"Executive Director of Content for Gawker Media. I used to run Jalopnik. Also, Will Ferrell nicknamed him Dinosaur Shit.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/1648351\/1347994731","favourites_count":236,"screen_name":"raywert","profile_sidebar_border_color":"eeeeee","id_str":"1648351","verified":true,"lang":"en","statuses_count":17705,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/341867101\/Ray_Wert_Twitter_2_normal.jpg","listed_count":613,"geo_enabled":true,"created_at":"Tue Mar 20 17:03:47 +0000 2007","profile_text_color":"333333","name":"Ray Wert","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":4853,"url":"http:\/\/jalopnik.com\/","id":1648351,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":-18000,"profile_link_color":"009999","followers_count":13236},"id":263102070989680640,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"719","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2671158778\/6404a8eb6992059f0ae6018bea78e28a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":7,"screen_name":"Novac90","profile_sidebar_border_color":"C0DEED","id_str":"369245494","verified":false,"lang":"en","statuses_count":796,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2671158778\/6404a8eb6992059f0ae6018bea78e28a_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Sep 07 01:11:34 +0000 2011","profile_text_color":"333333","name":"Zach ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":84,"url":null,"id":369245494,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":7},"id":263290768863682560,"contributors":null,"favorited":false} +{"contributors":null,"text":"RT @emy_igb: a @Giiregioli, ta namorando ! k \n\u00ea coisa linda ! :D","geo":null,"truncated":false,"retweeted_status":{"contributors":null,"text":"a @Giiregioli, ta namorando ! k \n\u00ea coisa linda ! :D","geo":null,"truncated":false,"retweeted":false,"in_reply_to_screen_name":null,"source":"web","coordinates":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"retweet_count":0,"in_reply_to_status_id_str":null,"entities":{"user_mentions":[{"indices":[2,13],"screen_name":"Giiregioli","name":"s\u00f3 do m\u00f4 :3","id":268572390,"id_str":"268572390"}],"hashtags":[],"urls":[]},"favorited":false,"created_at":"Tue Oct 30 05:37:19 +0000 2012","in_reply_to_user_id_str":null,"place":null,"user":{"following":null,"geo_enabled":true,"profile_use_background_image":true,"friends_count":554,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784596448\/e311e991c58a5471d48d9d0ae1085a3d_normal.jpeg","is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","profile_text_color":"3D1957","location":"brazil bitch :)","statuses_count":13854,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme10\/bg.gif","profile_link_color":"FF0000","description":"Sei ser meiga, sei ser fofa, sei ser legal, S\u00f3 n\u00e3o quero. :)\r\namo mais que tudo e todos, a minha prot\u00ea gatinha *-* @_CathsSiqueira. \u2665\r\n","screen_name":"emy_igb","follow_request_sent":null,"contributors_enabled":false,"verified":false,"time_zone":"Paris","followers_count":637,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784596448\/e311e991c58a5471d48d9d0ae1085a3d_normal.jpeg","default_profile_image":false,"profile_background_color":"642D8B","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/290146290\/1351604726","profile_background_tile":true,"favourites_count":0,"profile_sidebar_fill_color":"7AC3EE","protected":false,"lang":"en","notifications":null,"created_at":"Fri Apr 29 20:12:29 +0000 2011","name":"emy pfvr (:","profile_sidebar_border_color":"65B0DA","url":"http:\/\/sinceridaades-de-uma-garota.tumblr.com\/","id":290146290,"id_str":"290146290","listed_count":0,"utc_offset":3600},"id":263152582795599872,"id_str":"263152582795599872"},"retweeted":false,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","coordinates":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"retweet_count":0,"in_reply_to_status_id_str":null,"entities":{"user_mentions":[{"indices":[3,11],"screen_name":"emy_igb","name":"emy pfvr (:","id":290146290,"id_str":"290146290"},{"indices":[15,26],"screen_name":"Giiregioli","name":"s\u00f3 do m\u00f4 :3","id":268572390,"id_str":"268572390"}],"hashtags":[],"urls":[]},"favorited":false,"created_at":"Tue Oct 30 14:46:25 +0000 2012","in_reply_to_user_id_str":null,"place":null,"user":{"following":null,"geo_enabled":true,"profile_use_background_image":true,"friends_count":261,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2667939272\/cf51613a26215c18753ca0fa9b3374b1_normal.jpeg","is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/681434302\/339c9bf39b7eb7c0254405c71706a255.jpeg","profile_text_color":"000000","location":"To l\u00e1 (:","statuses_count":23249,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/681434302\/339c9bf39b7eb7c0254405c71706a255.jpeg","profile_link_color":"AD32A9","description":"Amo os meus* @Luucaas_Barbosa, @biiiabarbosa_, @tlgGaabx, @mansini_isa, @marcospfvr e n\u00e3o divido eles com ningu\u00e9m :*","screen_name":"Giiregioli","follow_request_sent":null,"contributors_enabled":false,"verified":false,"time_zone":"Brasilia","followers_count":378,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2667939272\/cf51613a26215c18753ca0fa9b3374b1_normal.jpeg","default_profile_image":false,"profile_background_color":"B30DB0","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/268572390\/1348353845","profile_background_tile":true,"favourites_count":126,"profile_sidebar_fill_color":"DDEEF6","protected":false,"lang":"pt","notifications":null,"created_at":"Sat Mar 19 01:47:34 +0000 2011","name":"s\u00f3 do m\u00f4 :3","profile_sidebar_border_color":"FFFFFF","url":null,"id":268572390,"id_str":"268572390","listed_count":0,"utc_offset":-10800},"id":263290768863662080,"id_str":"263290768863662080"} +{"in_reply_to_status_id_str":null,"text":"RT @Twetbijak: Awal dari cinta adalah membiarkan orang yang kita cintai menjadi dirinya sendiri dan tak mengubahnya seperti keinginan kita","in_reply_to_user_id_str":null,"retweet_count":1264,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880455680","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"Twetbijak","id_str":"442967132","name":"Twetbijak","id":442967132}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Awal dari cinta adalah membiarkan orang yang kita cintai menjadi dirinya sendiri dan tak mengubahnya seperti keinginan kita","in_reply_to_user_id_str":null,"retweet_count":1264,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"262448685932244992","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Sun Oct 28 07:00:17 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","location":"Media promo 08161941328","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2738902938\/65b21e17e63db7f4839624ee2ad0af16_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Jika kamu ingin mendapatkan kata-kata bijak yang mendamaikan hati, Follow @Twetbijak, tweet bijaknya selalu memberi inspirasi..","favourites_count":80,"screen_name":"Twetbijak","profile_sidebar_border_color":"C0DEED","id_str":"442967132","verified":false,"lang":"en","statuses_count":9287,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2738902938\/65b21e17e63db7f4839624ee2ad0af16_normal.jpeg","listed_count":211,"geo_enabled":false,"created_at":"Wed Dec 21 17:21:57 +0000 2011","profile_text_color":"333333","name":"Twetbijak","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":5,"url":null,"id":442967132,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":230070},"id":262448685932244992,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","location":"Espada, SMAN 17 Surabaya","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2448097009\/Espada_20In_20Joga_20_42__normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"33 My Beloved","favourites_count":27,"screen_name":"ramasafr","profile_sidebar_border_color":"A8C7F7","id_str":"120556293","verified":false,"lang":"en","statuses_count":4139,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2448097009\/Espada_20In_20Joga_20_42__normal.JPG","listed_count":0,"geo_enabled":false,"created_at":"Sat Mar 06 20:26:19 +0000 2010","profile_text_color":"333333","name":"Rama Firmansyah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/311119425\/Venom-spider-man-654973_1600_1054.jpg","friends_count":330,"url":null,"id":120556293,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/311119425\/Venom-spider-man-654973_1600_1054.jpg","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":134},"id":263290768880455680,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @rbeaulieu17: @ally_pytlak3 alligator","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768867860480","entities":{"user_mentions":[{"indices":[3,15],"screen_name":"rbeaulieu17","id_str":"98183924","name":"\u26beRyan Beaulieu\u26be","id":98183924},{"indices":[17,30],"screen_name":"ally_pytlak3","id_str":"592932834","name":"Ally Pytlak","id":592932834}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"@ally_pytlak3 alligator","in_reply_to_user_id_str":"592932834","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290524818092032","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"ally_pytlak3","id_str":"592932834","name":"Ally Pytlak","id":592932834}],"hashtags":[],"urls":[]},"in_reply_to_user_id":592932834,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"ally_pytlak3","created_at":"Tue Oct 30 14:45:27 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Quito","profile_background_color":"022330","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2691851854\/64bbf25c855516e5a444cd5deeef7d26_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"The official twitter of Ryan M Beaulieu. NRHS 12. #italianswag","favourites_count":908,"screen_name":"rbeaulieu17","profile_sidebar_border_color":"a8c7f7","id_str":"98183924","verified":false,"lang":"en","statuses_count":13089,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2691851854\/64bbf25c855516e5a444cd5deeef7d26_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Dec 20 19:02:28 +0000 2009","profile_text_color":"333333","name":"\u26beRyan Beaulieu\u26be","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","friends_count":137,"url":null,"id":98183924,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":197},"id":263290524818092032,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2258849596\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":192,"screen_name":"ally_pytlak3","profile_sidebar_border_color":"C0DEED","id_str":"592932834","verified":false,"lang":"en","statuses_count":340,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2258849596\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Mon May 28 16:12:51 +0000 2012","profile_text_color":"333333","name":"Ally Pytlak","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":80,"url":null,"id":592932834,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":58},"id":263290768867860480,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @CycloneATH: Former @CycloneMBB player Garrett realized his lifelong dream today by making the roster of the Phoenix Suns! http:\/\/t.c ...","in_reply_to_user_id_str":null,"retweet_count":41,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768888844290","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"CycloneATH","id_str":"113379481","name":"Iowa State Athletics","id":113379481},{"indices":[23,34],"screen_name":"CycloneMBB","id_str":"36973175","name":"Cyclone Basketball","id":36973175}],"hashtags":[],"urls":[]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"Former @CycloneMBB player Garrett realized his lifelong dream today by making the roster of the Phoenix Suns! http:\/\/t.co\/lvdK1gMs","in_reply_to_user_id_str":null,"retweet_count":41,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263105808693354497","entities":{"user_mentions":[{"indices":[7,18],"screen_name":"CycloneMBB","id_str":"36973175","name":"Cyclone Basketball","id":36973175}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/ow.ly\/eRVND","indices":[110,130],"display_url":"ow.ly\/eRVND","url":"http:\/\/t.co\/lvdK1gMs"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:31:27 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"030303","location":"Ames, Iowa","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2162787967\/Iowa_State_Twitter_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FAD963","description":"The official Twitter feed of Iowa State Athletics. \r\n#Cyclones #cyclONEnation","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/113379481\/1348498817","favourites_count":12,"screen_name":"CycloneATH","profile_sidebar_border_color":"FFFFFF","id_str":"113379481","verified":false,"lang":"en","statuses_count":8000,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2162787967\/Iowa_State_Twitter_normal.jpg","listed_count":261,"geo_enabled":false,"created_at":"Thu Feb 11 15:31:47 +0000 2010","profile_text_color":"A70000","name":"Iowa State Athletics","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665612598\/2306328f34a669c93d9c05b5f55b62d5.jpeg","friends_count":167,"url":"http:\/\/www.cyclones.com\/","id":113379481,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665612598\/2306328f34a669c93d9c05b5f55b62d5.jpeg","utc_offset":-21600,"profile_link_color":"A70000","followers_count":16244},"id":263105808693354497,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"briggsy75","profile_sidebar_border_color":"C0DEED","id_str":"149239232","verified":false,"lang":"en","statuses_count":13,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Fri May 28 19:49:17 +0000 2010","profile_text_color":"333333","name":"Vicky Briggs","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":32,"url":null,"id":149239232,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":2},"id":263290768888844290,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"como a minha vergonha maior do que a miha vontade eu nao vo chamar ele no face","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768863670272","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"131516","location":"Apucarana","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781826242\/275076449831b293b23db13ffd98fcfd_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"Tente, corra, lute. Mas nunca desista.\r\nhttp:\/\/www.facebook.com\/maria.ravelli","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/407378075\/1351546415","favourites_count":38,"screen_name":"gmvrs","profile_sidebar_border_color":"FFFFFF","id_str":"407378075","verified":false,"lang":"pt","statuses_count":6316,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781826242\/275076449831b293b23db13ffd98fcfd_normal.png","listed_count":0,"geo_enabled":true,"created_at":"Tue Nov 08 00:38:55 +0000 2011","profile_text_color":"D915AB","name":"mariazinha","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697255196\/398000036e2f4b44ebd5381508f88a0b.jpeg","friends_count":118,"url":"http:\/\/ask.fm\/littlemaaria","id":407378075,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697255196\/398000036e2f4b44ebd5381508f88a0b.jpeg","utc_offset":-10800,"profile_link_color":"161717","followers_count":143},"id":263290768863670272,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"\u304a\u3084\u3059\u307f\u306a\u3055\u3044\uff08\u00b4\u03c9\uff40\uff09\uff09\u307f\u306a\u3055\u307e\u4eca\u65e5\u3082\uff11\u65e5\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\u3002\u660e\u65e5\u3082\u4eca\u65e5\u3088\u308a\u826f\u3044\u65e5\u306b\u306a\u308a\u307e\u3059\u3088\u3046\u306b(*^^*)\u309e","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884654080","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"\u6771\u4eac\u90fd \u516b\u738b\u5b50","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2199037368\/L06A0089_normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u8da3\u5473\u306f\u300e\u65c5\u884c\u30fb\u304a\u83d3\u5b50\u9020\u308a\u300f\u300e\u81ea\u8ee2\u8eca\u300f\u3084\u300e\u30c0\u30f3\u30a8\u30dc\u300f\u306a\u3069\u3067\u3059\u3002 \u306a\u304b\u306a\u304b\u306b\u4e0d\u5668\u7528\u3067\u3059\u304c\u2026\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3067\u3059m(_ _)m","favourites_count":137,"screen_name":"yamakenqun","profile_sidebar_border_color":"C0DEED","id_str":"568352107","verified":false,"lang":"ja","statuses_count":4750,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2199037368\/L06A0089_normal.JPG","listed_count":7,"geo_enabled":false,"created_at":"Tue May 01 16:38:59 +0000 2012","profile_text_color":"333333","name":"\u3084\u307e\u3051\u3093\uff12\uff10","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":118,"url":null,"id":568352107,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":106},"id":263290768884654080,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @chikakotty: \u672c\u539a\u6728\u301c\u753a\u7530\u5468\u8fba\u3050\u3089\u3044\u3067\u3001\n\u3044\u3044\u7f8e\u5bb9\u9662\u77e5\u3063\u3066\u308b\u3072\u3068\u3044\u305f\u3089\n\u81f3\u6025\u7d39\u4ecb\u304a\u9858\u3044\u3057\u307e\u3059(;_;)\uff01","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884658178","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"chikakotty","id_str":"433395861","name":"\u7b39 \u667a\u590f\u5b50","id":433395861}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\u672c\u539a\u6728\u301c\u753a\u7530\u5468\u8fba\u3050\u3089\u3044\u3067\u3001\n\u3044\u3044\u7f8e\u5bb9\u9662\u77e5\u3063\u3066\u308b\u3072\u3068\u3044\u305f\u3089\n\u81f3\u6025\u7d39\u4ecb\u304a\u9858\u3044\u3057\u307e\u3059(;_;)\uff01","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263283754825560066","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:18:33 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u795e\u5948\u5ddd","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775481849\/4cfb6eefd92d0bcc83e1b6c4e7434594_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u539a\u6728\u53172\u5e74 \u9678\u4e0a\u90e8\u6240\u5c5e long sprinter\u3067\u3059\uff01\uff01 200 400 4\u7d99 \u30de\u30a4\u30eb \/ \u305f\u306e\u3057\u3044\u3053\u3068\u5927\u597d\u304d\u2661 TOP\u5de6 \u3075\u3049\u308d\u30fc\u307f\u30fc (\u0e51\u2727\u25e1\u2727\u0e51)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/433395861\/1350726866","favourites_count":107,"screen_name":"chikakotty","profile_sidebar_border_color":"C0DEED","id_str":"433395861","verified":false,"lang":"ja","statuses_count":4723,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775481849\/4cfb6eefd92d0bcc83e1b6c4e7434594_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Sat Dec 10 14:24:36 +0000 2011","profile_text_color":"333333","name":"\u7b39 \u667a\u590f\u5b50","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":452,"url":"http:\/\/s.ameblo.jp\/100429-ocean\/","id":433395861,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":472},"id":263283754825560066,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u706b\u661f\u2606","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775154440\/1d94dc61c1474c717279df5d137a57ca_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u539a\u6728\u6e05\u5357\u3002\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u3066\u308b\u7686\u3055\u3093\u306b\u308f\u79c1\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059(*\u00b4\u2207\uff40*)\u7686\u69d8\u3088\u308d\u3066\u3051\uff01","favourites_count":0,"screen_name":"Dragon817G","profile_sidebar_border_color":"C0DEED","id_str":"756212617","verified":false,"lang":"ja","statuses_count":542,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775154440\/1d94dc61c1474c717279df5d137a57ca_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Aug 14 01:33:00 +0000 2012","profile_text_color":"333333","name":"\u3086\u3061\u307e\u3080","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":122,"url":"http:\/\/blog.crooz.jp\/143235386","id":756212617,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":101},"id":263290768884658178,"contributors":null,"favorited":false} +{"delete":{"status":{"id":3179185988182016,"id_str":"3179185988182016","user_id_str":"126735178","user_id":126735178}}} +{"in_reply_to_status_id_str":"263289137749180416","text":"@AyameroChu \u3042\u308a\u304c\u3068\u3046\uff01\u9811\u5f35\u308c\u308b\u308f\u3041\u30fc\uff01","in_reply_to_user_id_str":"580999778","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855293952","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"AyameroChu","id_str":"580999778","name":"\u3082\u3093\u3061\u3083\u3093","id":580999778}],"hashtags":[],"urls":[]},"in_reply_to_user_id":580999778,"in_reply_to_status_id":263289137749180416,"place":null,"coordinates":null,"in_reply_to_screen_name":"AyameroChu","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2420184470\/O6b71H9z_normal","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\uff5e\u5317\u6d77\uff5e\u5317\u6d77\u5b66\u5712\u7d4c\u55b6\u60c5\u5831\uff5eEXILE\uff5eJSB3\uff5eSOCCER\uff5e","favourites_count":0,"screen_name":"__syun__","profile_sidebar_border_color":"C0DEED","id_str":"467890439","verified":false,"lang":"ja","statuses_count":1176,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2420184470\/O6b71H9z_normal","listed_count":0,"geo_enabled":false,"created_at":"Wed Jan 18 23:27:15 +0000 2012","profile_text_color":"333333","name":"\u68ee\u5ddd\u99ff","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":152,"url":null,"id":467890439,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":143},"id":263290768855293952,"contributors":null,"favorited":false} +{"in_reply_to_status_id_str":null,"text":"RT @ohohmario: Wenmwbwe\nW","in_reply_to_user_id_str":null,"retweet_count":74,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetli.st\/\" rel=\"nofollow\"\u003ETweetList!\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855273472","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"ohohmario","id_str":"154609624","name":"mario","id":154609624}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Wenmwbwe\nW","in_reply_to_user_id_str":null,"retweet_count":74,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290018494283779","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:26 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"bkk","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1868748016\/AnCZ9sGCAAESy-z_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Actor and I was born from love of siam thx my all fans I love u","favourites_count":3,"screen_name":"ohohmario","profile_sidebar_border_color":"C0DEED","id_str":"154609624","verified":false,"lang":"en","statuses_count":3011,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1868748016\/AnCZ9sGCAAESy-z_normal.jpg","listed_count":2747,"geo_enabled":false,"created_at":"Fri Jun 11 18:26:33 +0000 2010","profile_text_color":"E833E8","name":"mario","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/111113023\/kanye-west-808-heartbreak-cover-by-kaws.jpg","friends_count":37,"url":"http:\/\/www.oohmario.com","id":154609624,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/111113023\/kanye-west-808-heartbreak-cover-by-kaws.jpg","utc_offset":null,"profile_link_color":"0084B4","followers_count":509895},"id":263290018494283779,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"special1004....Wait\u2764637 DAY","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2783189253\/8116cece5491b2fd277659f413f94ef9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u2665SUPER JUNIOR \nSuper junior will always be waiting for me back at the end of 13 again.\n(T.T ) ( T.T)............\u0e08\u0e30\u0e23\u0e2d Only 13 \u2764Everlasting Friends....E.L.F~\u2764\u2764","favourites_count":1368,"screen_name":"nu_good","profile_sidebar_border_color":"C0DEED","id_str":"314537567","verified":false,"lang":"en","statuses_count":22789,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2783189253\/8116cece5491b2fd277659f413f94ef9_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Fri Jun 10 12:25:33 +0000 2011","profile_text_color":"333333","name":"\u0e23\u0e2d....\u0e1e\u0e35\u0e48\u0e17\u0e36\u0e01T^T","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":179,"url":null,"id":314537567,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":169},"id":263290768855273472,"contributors":null,"favorited":false} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TypeInference.json b/tests/FSharp.Data.Core.Tests/Data/TypeInference.json new file mode 100644 index 000000000..0f75e99b7 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TypeInference.json @@ -0,0 +1,12 @@ +[ + { + "intLike" : "123" , + "boolLike1" : 0 , + "boolLike2" : "1" + }, + { + "intLike" : "321" , + "boolLike1" : 1 , + "boolLike2" : "0" + } +] diff --git a/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml b/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml new file mode 100644 index 000000000..28310b2c8 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml @@ -0,0 +1,4 @@ + + 0{"a":1} + 1{"a":3} + diff --git a/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html b/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html new file mode 100644 index 000000000..0400ff770 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html @@ -0,0 +1,1396 @@ + + + + + + + + + + + + + + + + + + National Rail Enquiries + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + + + +
+ + + + + +
+ +
+ + +
+ + +
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+

Live departure boards

+ + Reload + +
+ +
+ + + + Departing + Arriving + + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
From:London VictoriaEdit
+

Trains through Horsham are being delayed by up to 30 minutes. More details can be found in Latest Travel News.

+
+ +

Train departures

+ +
+ +
+
+ +
+ +
    +
    + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html b/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html new file mode 100644 index 000000000..b391c0515 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html @@ -0,0 +1,89 @@ + + + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +

    Live departure boards

    + Reload +
    +
    +
    + + + + + + + + + +
    23:19London Bridge
    To:London Charing Cross Southeastern
    +
    +
    +
      + + +
    • + 22:44
      On time
      Hayes (Kent) + + + + +
    • + + 22:47
      + On time +
      + West Wickham + + + + +
    • + 22:49
      On time
      Eden Park + + + + +
    • + 22:53
      On time
      Elmers End + + + + + + +
    • + 22:55
      On time
      Clock House + + + + +
    • 22:57
      On time
      New Beckenham +
    • 22:59
      On time
      Lower Sydenham +
    • 23:02
      On time
      Catford Bridge +
    • 23:04
      On time
      Ladywell +
    • 23:08
      On time
      Lewisham +
    • 23:10
      On time
      St Johns (London) +
    • 23:12
      On time
      New Cross +
    • 23:19
      On time
      London BridgeLast reported station
    • +
    • 23:23
      On time
      London Waterloo East
    • +
    • 23:27
      On time
      London Charing Cross
    • +

    +

      +
      + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Vindinium.json b/tests/FSharp.Data.Core.Tests/Data/Vindinium.json new file mode 100644 index 000000000..80375245e --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Vindinium.json @@ -0,0 +1,107 @@ +{ + "game":{ + "id":"s2xh3aig", + "turn":1100, + "maxTurns":1200, + "heroes":[ + { + "id":1, + "name":"vjousse", + "userId":"j07ws669", + "elo":1200, + "pos":{ + "x":5, + "y":6 + }, + "life":60, + "gold":0, + "mineCount":0, + "spawnPos":{ + "x":5, + "y":6 + }, + "crashed":true + }, + { + "id":2, + "name":"vjousse", + "userId":"j07ws669", + "elo":1200, + "pos":{ + "x":12, + "y":6 + }, + "life":100, + "gold":0, + "mineCount":0, + "spawnPos":{ + "x":12, + "y":6 + }, + "crashed":true + }, + { + "id":3, + "name":"vjousse", + "userId":"j07ws669", + "elo":1200, + "pos":{ + "x":12, + "y":11 + }, + "life":80, + "gold":0, + "mineCount":0, + "spawnPos":{ + "x":12, + "y":11 + }, + "crashed":true + }, + { + "id":4, + "name":"vjousse", + "userId":"j07ws669", + "elo":1200, + "pos":{ + "x":4, + "y":8 + }, + "life":38, + "gold":1078, + "mineCount":6, + "spawnPos":{ + "x":5, + "y":11 + }, + "crashed":false + } + ], + "board":{ + "size":18, + "tiles":"############## ############################ ############################## ##############################$4 $4############################ @4 ######################## @1## ## #################### [] [] ################## #### #################### $4####$4 ######################## $4####$4 #################### #### ################## [] [] #################### @2## ##@3 ######################## ############################$- $-############################## ############################## ############################ ##############" + }, + "finished":true + }, + "hero":{ + "id":4, + "name":"vjousse", + "userId":"j07ws669", + "elo":1200, + "pos":{ + "x":4, + "y":8 + }, + "life":38, + "gold":1078, + "mineCount":6, + "spawnPos":{ + "x":5, + "y":11 + }, + "crashed":false + }, + "token":"lte0", + "viewUrl":"http://localhost:9000/s2xh3aig", + "playUrl":"http://localhost:9000/api/s2xh3aig/lte0/play" +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/WikiData.json b/tests/FSharp.Data.Core.Tests/Data/WikiData.json new file mode 100644 index 000000000..88490e2be --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/WikiData.json @@ -0,0 +1,12 @@ +{ + "firstName": "John", + "lastName" : "Doe", + "age" : 42, + "address" : + { + "streetAddress": "21 2nd Street", + "city" : "New York", + "state" : "NY", + "postalCode" : "10021" + } +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/WorldBank.json b/tests/FSharp.Data.Core.Tests/Data/WorldBank.json new file mode 100644 index 000000000..a5fe445bb --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/WorldBank.json @@ -0,0 +1,699 @@ +[ + { + "page": 1, + "pages": 1, + "per_page": "1000", + "total": 53 + }, + [ + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "2012" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "2011" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "35.1422970266502", + "decimal": "1", + "date": "2010" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "31.034880222506", + "decimal": "1", + "date": "2009" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "25.475163645463", + "decimal": "1", + "date": "2008" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "24.1933198328061", + "decimal": "1", + "date": "2007" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "23.7080545570765", + "decimal": "1", + "date": "2006" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "22.0334615295746", + "decimal": "1", + "date": "2005" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "20.1083787500358", + "decimal": "1", + "date": "2004" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "18.2677252058791", + "decimal": "1", + "date": "2003" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "15.4255646477354", + "decimal": "1", + "date": "2002" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "14.8744342075761", + "decimal": "1", + "date": "2001" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "13.2188686145055", + "decimal": "1", + "date": "2000" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "11.3566955774787", + "decimal": "1", + "date": "1999" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "10.1787800927734", + "decimal": "1", + "date": "1998" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "10.1535658732129", + "decimal": "1", + "date": "1997" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "10.5203014347956", + "decimal": "1", + "date": "1996" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "12.7078339884043", + "decimal": "1", + "date": "1995" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "14.7818078232509", + "decimal": "1", + "date": "1994" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": "16.6567773464055", + "decimal": "1", + "date": "1993" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1992" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1991" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1990" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1989" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1988" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1987" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1986" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1985" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1984" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1983" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1982" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1981" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1980" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1979" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1978" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1977" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1976" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1975" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1974" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1973" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1972" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1971" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1970" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1969" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1968" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1967" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1966" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1965" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1964" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1963" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1962" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1961" + }, + { + "indicator": { + "id": "GC.DOD.TOTL.GD.ZS", + "value": "Central government debt, total (% of GDP)" + }, + "country": { + "id": "CZ", + "value": "Czech Republic" + }, + "value": null, + "decimal": "1", + "date": "1960" + } + ] +] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Writers.xml b/tests/FSharp.Data.Core.Tests/Data/Writers.xml new file mode 100644 index 000000000..e701366e3 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/Writers.xml @@ -0,0 +1,4 @@ + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/banklist.csv b/tests/FSharp.Data.Core.Tests/Data/banklist.csv new file mode 100644 index 000000000..cea689dcd --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/banklist.csv @@ -0,0 +1,498 @@ +Bank Name,City,State,CERT #,Acquiring Institution,Closing Date,Updated Date +,,,,,, +"Alabama Trust Bank, National Association",Sylacauga,AL,35224,Southern States Bank,18-May-12,31-Oct-12 +Frontier Bank,LaGrange,GA,16431,HeritageBank of the South,8-Mar-13,12-Mar-13 +Covenant Bank,Chicago,IL,22476,Liberty Bank and Trust Company,15-Feb-13,4-Mar-13 +1st Regents Bank,Andover,MN,57157,First Minnesota Bank,18-Jan-13,28-Feb-13 +Westside Community Bank,University Place,WA,33997,Sunwest Bank,11-Jan-13,24-Jan-13 +Community Bank of the Ozarks,Sunrise Beach,MO,27331,Bank of Sullivan,14-Dec-12,24-Jan-13 +Hometown Community Bank,Braselton,GA,57928,"CertusBank, National Association",16-Nov-12,24-Jan-13 +Citizens First National Bank,Princeton,IL,3731,Heartland Bank and Trust Company,2-Nov-12,24-Jan-13 +Heritage Bank of Florida,Lutz,FL,35009,Centennial Bank,2-Nov-12,24-Jan-13 +NOVA Bank,Berwyn,PA,27148,No Acquirer,26-Oct-12,24-Jan-13 +Excel Bank,Sedalia,MO,19189,Simmons First National Bank,19-Oct-12,24-Jan-13 +First East Side Savings Bank,Tamarac,FL,28144,Stearns Bank N.A.,19-Oct-12,24-Jan-13 +GulfSouth Private Bank,Destin,FL,58073,SmartBank,19-Oct-12,24-Jan-13 +First United Bank,Crete,IL,20685,"Old Plank Trail Community Bank, National Association",28-Sep-12,15-Nov-12 +Truman Bank,St. Louis,MO,27316,Simmons First National Bank,14-Sep-12,17-Dec-12 +First Commercial Bank,Bloomington,MN,35246,Republic Bank & Trust Company,7-Sep-12,17-Dec-12 +Waukegan Savings Bank,Waukegan,IL,28243,First Midwest Bank,3-Aug-12,11-Oct-12 +Jasper Banking Company,Jasper,GA,16240,Stearns Bank N.A.,27-Jul-12,17-Dec-12 +Second Federal Savings and Loan Association of Chicago,Chicago,IL,27986,Hinsdale Bank & Trust Company,20-Jul-12,14-Jan-13 +Heartland Bank,Leawood,KS,1361,Metcalf Bank,20-Jul-12,17-Dec-12 +First Cherokee State Bank,Woodstock,GA,32711,Community & Southern Bank,20-Jul-12,31-Oct-12 +Georgia Trust Bank,Buford,GA,57847,Community & Southern Bank,20-Jul-12,17-Dec-12 +The Royal Palm Bank of Florida,Naples,FL,57096,First National Bank of the Gulf Coast,20-Jul-12,7-Jan-13 +Glasgow Savings Bank,Glasgow,MO,1056,Regional Missouri Bank,13-Jul-12,11-Oct-12 +Montgomery Bank & Trust,Ailey,GA,19498,Ameris Bank,6-Jul-12,31-Oct-12 +The Farmers Bank of Lynchburg,Lynchburg,TN,1690,Clayton Bank and Trust,15-Jun-12,31-Oct-12 +Security Exchange Bank,Marietta,GA,35299,Fidelity Bank,15-Jun-12,10-Oct-12 +Putnam State Bank,Palatka,FL,27405,Harbor Community Bank,15-Jun-12,10-Oct-12 +Waccamaw Bank,Whiteville,NC,34515,First Community Bank,8-Jun-12,8-Nov-12 +Farmers' and Traders' State Bank,Shabbona,IL,9257,First State Bank,8-Jun-12,10-Oct-12 +Carolina Federal Savings Bank,Charleston,SC,35372,Bank of North Carolina,8-Jun-12,31-Oct-12 +First Capital Bank,Kingfisher,OK,416,F & M Bank,8-Jun-12,10-Oct-12 +"Security Bank, National Association",North Lauderdale,FL,23156,Banesco USA,4-May-12,31-Oct-12 +Palm Desert National Bank,Palm Desert,CA,23632,Pacific Premier Bank,27-Apr-12,31-Aug-12 +Plantation Federal Bank,Pawleys Island,SC,32503,First Federal Bank,27-Apr-12,31-Oct-12 +"Inter Savings Bank, fsb D/B/A InterBank, fsb",Maple Grove,MN,31495,Great Southern Bank,27-Apr-12,17-Oct-12 +HarVest Bank of Maryland,Gaithersburg,MD,57766,Sonabank,27-Apr-12,17-Oct-12 +Bank of the Eastern Shore,Cambridge,MD,26759,No Acquirer,27-Apr-12,17-Oct-12 +"Fort Lee Federal Savings Bank, FSB",Fort Lee,NJ,35527,Alma Bank,20-Apr-12,31-Aug-12 +Fidelity Bank,Dearborn,MI,33883,The Huntington National Bank,30-Mar-12,9-Aug-12 +Premier Bank,Wilmette,IL,35419,International Bank of Chicago,23-Mar-12,17-Oct-12 +Covenant Bank & Trust,Rock Spring,GA,58068,"Stearns Bank, N.A.",23-Mar-12,31-Oct-12 +New City Bank ,Chicago,IL,57597,No Acquirer,9-Mar-12,29-Oct-12 +Global Commerce Bank,Doraville,GA,34046,Metro City Bank,2-Mar-12,31-Oct-12 +Home Savings of America,Little Falls,MN,29178,No Acquirer,24-Feb-12,17-Dec-12 +Central Bank of Georgia,Ellaville,GA,5687,Ameris Bank,24-Feb-12,9-Aug-12 +SCB Bank,Shelbyville,IN,29761,"First Merchants Bank, National Association",10-Feb-12,9-Aug-12 +Charter National Bank and Trust ,Hoffman Estates,IL,23187,"Barrington Bank & Trust Company, National Association",10-Feb-12,9-Aug-12 +BankEast,Knoxville,TN,19869,U.S.Bank National Association,27-Jan-12,8-Mar-13 +Patriot Bank Minnesota,Forest Lake,MN,34823,First Resource Bank,27-Jan-12,12-Sep-12 +Tennessee Commerce Bank ,Franklin,TN,35296,Republic Bank & Trust Company,27-Jan-12,20-Nov-12 +First Guaranty Bank and Trust Company of Jacksonville,Jacksonville,FL,16579,"CenterState Bank of Florida, N.A.",27-Jan-12,12-Sep-12 +American Eagle Savings Bank,Boothwyn,PA,31581,"Capital Bank, N.A.",20-Jan-12,25-Jan-13 +The First State Bank,Stockbridge,GA,19252,Hamilton State Bank,20-Jan-12,25-Jan-13 +Central Florida State Bank,Belleview,FL,57186,"CenterState Bank of Florida, N.A.",20-Jan-12,25-Jan-13 +Western National Bank,Phoenix,AZ,57917,Washington Federal,16-Dec-11,13-Aug-12 +Premier Community Bank of the Emerald Coast,Crestview,FL,58343,Summit Bank,16-Dec-11,12-Sep-12 +Central Progressive Bank,Lacombe,LA,19657,First NBC Bank,18-Nov-11,13-Aug-12 +Polk County Bank,Johnston,IA,14194,Grinnell State Bank,18-Nov-11,15-Aug-12 +Community Bank of Rockmart,Rockmart,GA,57860,Century Bank of Georgia,10-Nov-11,13-Aug-12 +SunFirst Bank,Saint George,UT,57087,Cache Valley Bank,4-Nov-11,16-Nov-12 +"Mid City Bank, Inc.",Omaha,NE,19397,Premier Bank,4-Nov-11,15-Aug-12 +All American Bank,Des Plaines,IL,57759,International Bank of Chicago,28-Oct-11,15-Aug-12 +Community Banks of Colorado,Greenwood Village,CO,21132,"Bank Midwest, N.A.",21-Oct-11,2-Jan-13 +Community Capital Bank,Jonesboro,GA,57036,State Bank and Trust Company,21-Oct-11,8-Nov-12 +Decatur First Bank,Decatur,GA,34392,Fidelity Bank,21-Oct-11,8-Nov-12 +Old Harbor Bank,Clearwater,FL,57537,1st United Bank,21-Oct-11,8-Nov-12 +Country Bank,Aledo,IL,35395,Blackhawk Bank & Trust,14-Oct-11,15-Aug-12 +First State Bank,Cranford,NJ,58046,Northfield Bank,14-Oct-11,8-Nov-12 +"Blue Ridge Savings Bank, Inc.",Asheville,NC,32347,Bank of North Carolina,14-Oct-11,8-Nov-12 +Piedmont Community Bank,Gray,GA,57256,State Bank and Trust Company,14-Oct-11,22-Jan-13 +Sun Security Bank,Ellington,MO,20115,Great Southern Bank,7-Oct-11,7-Nov-12 +The RiverBank,Wyoming,MN,10216,Central Bank,7-Oct-11,7-Nov-12 +First International Bank,Plano,TX,33513,American First National Bank,30-Sep-11,9-Oct-12 +Citizens Bank of Northern California,Nevada City,CA,33983,Tri Counties Bank,23-Sep-11,9-Oct-12 +Bank of the Commonwealth,Norfolk,VA,20408,Southern Bank and Trust Company,23-Sep-11,9-Oct-12 +The First National Bank of Florida,Milton,FL,25155,CharterBank,9-Sep-11,6-Sep-12 +CreekSide Bank,Woodstock,GA,58226,Georgia Commerce Bank,2-Sep-11,6-Sep-12 +Patriot Bank of Georgia,Cumming,GA,58273,Georgia Commerce Bank,2-Sep-11,2-Nov-12 +First Choice Bank,Geneva,IL,57212,Inland Bank & Trust,19-Aug-11,15-Aug-12 +First Southern National Bank,Statesboro,GA,57239,Heritage Bank of the South,19-Aug-11,2-Nov-12 +Lydian Private Bank,Palm Beach,FL,35356,"Sabadell United Bank, N.A.",19-Aug-11,2-Nov-12 +Public Savings Bank,Huntingdon Valley,PA,34130,"Capital Bank, N.A.",18-Aug-11,15-Aug-12 +The First National Bank of Olathe,Olathe,KS,4744,Enterprise Bank & Trust,12-Aug-11,23-Aug-12 +Bank of Whitman,Colfax,WA,22528,Columbia State Bank,5-Aug-11,16-Aug-12 +Bank of Shorewood,Shorewood,IL,22637,Heartland Bank and Trust Company,5-Aug-11,16-Aug-12 +Integra Bank National Association,Evansville,IN,4392,Old National Bank,29-Jul-11,16-Aug-12 +"BankMeridian, N.A.",Columbia,SC,58222,SCBT National Association,29-Jul-11,2-Nov-12 +Virginia Business Bank,Richmond,VA,58283,Xenith Bank,29-Jul-11,9-Oct-12 +Bank of Choice,Greeley,CO,2994,"Bank Midwest, N.A.",22-Jul-11,12-Sep-12 +LandMark Bank of Florida,Sarasota,FL,35244,American Momentum Bank,22-Jul-11,2-Nov-12 +Southshore Community Bank,Apollo Beach,FL,58056,American Momentum Bank,22-Jul-11,2-Nov-12 +Summit Bank,Prescott,AZ,57442,The Foothills Bank,15-Jul-11,16-Aug-12 +First Peoples Bank,Port St. Lucie,FL,34870,"Premier American Bank, N.A.",15-Jul-11,2-Nov-12 +High Trust Bank,Stockbridge,GA,19554,Ameris Bank,15-Jul-11,2-Nov-12 +One Georgia Bank,Atlanta,GA,58238,Ameris Bank,15-Jul-11,2-Nov-12 +Signature Bank,Windsor,CO,57835,Points West Community Bank,8-Jul-11,26-Oct-12 +Colorado Capital Bank,Castle Rock,CO,34522,First-Citizens Bank & Trust Company,8-Jul-11,15-Jan-13 +First Chicago Bank & Trust,Chicago,IL,27935,Northbrook Bank & Trust Company,8-Jul-11,9-Sep-12 +Mountain Heritage Bank,Clayton,GA,57593,First American Bank and Trust Company,24-Jun-11,2-Nov-12 +First Commercial Bank of Tampa Bay,Tampa,FL,27583,Stonegate Bank,17-Jun-11,2-Nov-12 +McIntosh State Bank,Jackson,GA,19237,Hamilton State Bank,17-Jun-11,2-Nov-12 +Atlantic Bank and Trust,Charleston,SC,58420,"First Citizens Bank and Trust Company, Inc.",3-Jun-11,31-Oct-12 +First Heritage Bank,Snohomish,WA,23626,Columbia State Bank,27-May-11,28-Jan-13 +Summit Bank,Burlington,WA,513,Columbia State Bank,20-May-11,22-Jan-13 +First Georgia Banking Company,Franklin,GA,57647,"CertusBank, National Association",20-May-11,13-Nov-12 +Atlantic Southern Bank,Macon,GA,57213,"CertusBank, National Association",20-May-11,31-Oct-12 +Coastal Bank,Cocoa Beach,FL,34898,"Florida Community Bank, a division of Premier American Bank, N.A.",6-May-11,30-Nov-12 +Community Central Bank,Mount Clemens,MI,34234,Talmer Bank & Trust,29-Apr-11,16-Aug-12 +The Park Avenue Bank,Valdosta,GA,19797,Bank of the Ozarks,29-Apr-11,30-Nov-12 +First Choice Community Bank,Dallas,GA,58539,Bank of the Ozarks,29-Apr-11,22-Jan-13 +Cortez Community Bank,Brooksville,FL,57625,"Florida Community Bank, a division of Premier American Bank, N.A.",29-Apr-11,30-Nov-12 +First National Bank of Central Florida,Winter Park,FL,26297,"Florida Community Bank, a division of Premier American Bank, N.A.",29-Apr-11,30-Nov-12 +Heritage Banking Group,Carthage,MS,14273,Trustmark National Bank,15-Apr-11,30-Nov-12 +Rosemount National Bank,Rosemount,MN,24099,Central Bank,15-Apr-11,16-Aug-12 +Superior Bank,Birmingham,AL,17750,"Superior Bank, National Association",15-Apr-11,30-Nov-12 +Nexity Bank,Birmingham,AL,19794,AloStar Bank of Commerce,15-Apr-11,4-Sep-12 +New Horizons Bank,East Ellijay,GA,57705,Citizens South Bank,15-Apr-11,16-Aug-12 +Bartow County Bank,Cartersville,GA,21495,Hamilton State Bank,15-Apr-11,22-Jan-13 +Nevada Commerce Bank,Las Vegas,NV,35418,City National Bank,8-Apr-11,9-Sep-12 +Western Springs National Bank and Trust,Western Springs,IL,10086,Heartland Bank and Trust Company,8-Apr-11,22-Jan-13 +The Bank of Commerce,Wood Dale,IL,34292,Advantage National Bank Group,25-Mar-11,22-Jan-13 +Legacy Bank,Milwaukee,WI,34818,Seaway Bank and Trust Company,11-Mar-11,12-Sep-12 +First National Bank of Davis,Davis,OK,4077,The Pauls Valley National Bank,11-Mar-11,20-Aug-12 +Valley Community Bank,St. Charles,IL,34187,First State Bank,25-Feb-11,12-Sep-12 +"San Luis Trust Bank, FSB ",San Luis Obispo,CA,34783,First California Bank,18-Feb-11,20-Aug-12 +Charter Oak Bank,Napa,CA,57855,Bank of Marin,18-Feb-11,12-Sep-12 +Citizens Bank of Effingham,Springfield,GA,34601,Heritage Bank of the South,18-Feb-11,2-Nov-12 +Habersham Bank,Clarkesville,GA,151,SCBT National Association,18-Feb-11,2-Nov-12 +Canyon National Bank,Palm Springs,CA,34692,Pacific Premier Bank,11-Feb-11,12-Sep-12 +Badger State Bank,Cassville,WI,13272,Royal Bank,11-Feb-11,12-Sep-12 +Peoples State Bank,Hamtramck,MI,14939,First Michigan Bank,11-Feb-11,22-Jan-13 +Sunshine State Community Bank,Port Orange,FL,35478,"Premier American Bank, N.A.",11-Feb-11,2-Nov-12 +Community First Bank Chicago,Chicago,IL,57948,Northbrook Bank & Trust Company,4-Feb-11,20-Aug-12 +North Georgia Bank,Watkinsville,GA,35242,BankSouth,4-Feb-11,2-Nov-12 +American Trust Bank,Roswell,GA,57432,Renasant Bank,4-Feb-11,31-Oct-12 +First Community Bank,Taos,NM,12261,"U.S. Bank, N.A.",28-Jan-11,12-Sep-12 +FirsTier Bank,Louisville,CO,57646,No Acquirer,28-Jan-11,12-Sep-12 +Evergreen State Bank,Stoughton,WI,5328,McFarland State Bank,28-Jan-11,12-Sep-12 +The First State Bank,Camargo,OK,2303,Bank 7,28-Jan-11,12-Sep-12 +United Western Bank,Denver,CO,31293,First-Citizens Bank & Trust Company,21-Jan-11,12-Sep-12 +The Bank of Asheville,Asheville,NC,34516,First Bank,21-Jan-11,2-Nov-12 +CommunitySouth Bank & Trust,Easley,SC,57868,"CertusBank, National Association",21-Jan-11,2-Nov-12 +Enterprise Banking Company,McDonough,GA,19758,No Acquirer,21-Jan-11,2-Nov-12 +Oglethorpe Bank,Brunswick,GA,57440,Bank of the Ozarks,14-Jan-11,2-Nov-12 +Legacy Bank,Scottsdale,AZ,57820,Enterprise Bank & Trust,7-Jan-11,12-Sep-12 +First Commercial Bank of Florida,Orlando,FL,34965,First Southern Bank,7-Jan-11,2-Nov-12 +Community National Bank,Lino Lakes,MN,23306,Farmers & Merchants Savings Bank,17-Dec-10,20-Aug-12 +First Southern Bank ,Batesville,AR,58052,Southern Bank,17-Dec-10,20-Aug-12 +"United Americas Bank, N.A.",Atlanta,GA,35065,State Bank and Trust Company,17-Dec-10,2-Nov-12 +"Appalachian Community Bank, FSB ",McCaysville,GA,58495,Peoples Bank of East Tennessee,17-Dec-10,31-Oct-12 +Chestatee State Bank,Dawsonville,GA,34578,Bank of the Ozarks,17-Dec-10,2-Nov-12 +"The Bank of Miami,N.A.",Coral Gables,FL,19040,1st United Bank,17-Dec-10,2-Nov-12 +Earthstar Bank,Southampton,PA,35561,Polonia Bank,10-Dec-10,20-Aug-12 +Paramount Bank,Farmington Hills,MI,34673,Level One Bank,10-Dec-10,20-Aug-12 +First Banking Center,Burlington,WI,5287,First Michigan Bank,19-Nov-10,20-Aug-12 +Allegiance Bank of North America,Bala Cynwyd,PA,35078,VIST Bank,19-Nov-10,20-Aug-12 +Gulf State Community Bank,Carrabelle,FL,20340,Centennial Bank,19-Nov-10,2-Nov-12 +Copper Star Bank,Scottsdale,AZ,35463,"Stearns Bank, N.A.",12-Nov-10,20-Aug-12 +Darby Bank & Trust Co.,Vidalia,GA,14580,Ameris Bank,12-Nov-10,15-Jan-13 +Tifton Banking Company,Tifton,GA,57831,Ameris Bank,12-Nov-10,2-Nov-12 +First Vietnamese American Bank,Westminster,CA,57885,Grandpoint Bank,5-Nov-10,12-Sep-12 +Pierce Commercial Bank,Tacoma,WA,34411,Heritage Bank,5-Nov-10,20-Aug-12 +Western Commercial Bank,Woodland Hills,CA,58087,First California Bank,5-Nov-10,12-Sep-12 +K Bank,Randallstown,MD,31263,Manufacturers and Traders Trust Company (M&T Bank),5-Nov-10,20-Aug-12 +"First Arizona Savings, A FSB",Scottsdale,AZ,32582,No Acquirer,22-Oct-10,20-Aug-12 +Hillcrest Bank,Overland Park,KS,22173,"Hillcrest Bank, N.A.",22-Oct-10,20-Aug-12 +First Suburban National Bank,Maywood,IL,16089,Seaway Bank and Trust Company,22-Oct-10,20-Aug-12 +The First National Bank of Barnesville,Barnesville,GA,2119,United Bank,22-Oct-10,2-Nov-12 +The Gordon Bank,Gordon,GA,33904,Morris Bank,22-Oct-10,2-Nov-12 +Progress Bank of Florida,Tampa,FL,32251,Bay Cities Bank,22-Oct-10,2-Nov-12 +First Bank of Jacksonville,Jacksonville,FL,27573,Ameris Bank,22-Oct-10,2-Nov-12 +Premier Bank,Jefferson City,MO,34016,Providence Bank,15-Oct-10,20-Aug-12 +WestBridge Bank and Trust Company,Chesterfield,MO,58205,Midland States Bank,15-Oct-10,20-Aug-12 +"Security Savings Bank, F.S.B.",Olathe,KS,30898,Simmons First National Bank,15-Oct-10,20-Aug-12 +Shoreline Bank,Shoreline,WA,35250,GBC International Bank,1-Oct-10,20-Aug-12 +Wakulla Bank,Crawfordville,FL,21777,Centennial Bank,1-Oct-10,2-Nov-12 +North County Bank,Arlington,WA,35053,Whidbey Island Bank,24-Sep-10,20-Aug-12 +Haven Trust Bank Florida,Ponte Vedra Beach,FL,58308,First Southern Bank,24-Sep-10,5-Nov-12 +Maritime Savings Bank,West Allis,WI,28612,"North Shore Bank, FSB",17-Sep-10,20-Aug-12 +Bramble Savings Bank,Milford,OH,27808,Foundation Bank,17-Sep-10,20-Aug-12 +The Peoples Bank,Winder,GA,182,Community & Southern Bank,17-Sep-10,5-Nov-12 +First Commerce Community Bank,Douglasville,GA,57448,Community & Southern Bank,17-Sep-10,15-Jan-13 +Bank of Ellijay,Ellijay,GA,58197,Community & Southern Bank,17-Sep-10,15-Jan-13 +ISN Bank,Cherry Hill,NJ,57107,Customers Bank,17-Sep-10,22-Aug-12 +Horizon Bank,Bradenton,FL,35061,Bank of the Ozarks,10-Sep-10,5-Nov-12 +Sonoma Valley Bank,Sonoma,CA,27259,Westamerica Bank,20-Aug-10,12-Sep-12 +Los Padres Bank,Solvang,CA,32165,Pacific Western Bank,20-Aug-10,12-Sep-12 +Butte Community Bank,Chico,CA,33219,"Rabobank, N.A.",20-Aug-10,12-Sep-12 +Pacific State Bank,Stockton,CA,27090,"Rabobank, N.A.",20-Aug-10,12-Sep-12 +ShoreBank,Chicago,IL,15640,Urban Partnership Bank,20-Aug-10,12-Sep-12 +Imperial Savings and Loan Association,Martinsville,VA,31623,"River Community Bank, N.A.",20-Aug-10,24-Aug-12 +Independent National Bank,Ocala,FL,27344,"CenterState Bank of Florida, N.A.",20-Aug-10,5-Nov-12 +Community National Bank at Bartow,Bartow,FL,25266,"CenterState Bank of Florida, N.A.",20-Aug-10,5-Nov-12 +Palos Bank and Trust Company,Palos Heights,IL,17599,First Midwest Bank,13-Aug-10,22-Aug-12 +Ravenswood Bank,Chicago,IL,34231,Northbrook Bank & Trust Company,6-Aug-10,22-Aug-12 +LibertyBank,Eugene,OR,31964,Home Federal Bank,30-Jul-10,22-Aug-12 +The Cowlitz Bank,Longview,WA,22643,Heritage Bank,30-Jul-10,22-Aug-12 +Coastal Community Bank,Panama City Beach,FL,9619,Centennial Bank,30-Jul-10,5-Nov-12 +Bayside Savings Bank,Port Saint Joe,FL,57669,Centennial Bank,30-Jul-10,5-Nov-12 +Northwest Bank & Trust,Acworth,GA,57658,State Bank and Trust Company,30-Jul-10,5-Nov-12 +Home Valley Bank ,Cave Junction,OR,23181,South Valley Bank & Trust,23-Jul-10,12-Sep-12 +SouthwestUSA Bank ,Las Vegas,NV,35434,Plaza Bank,23-Jul-10,22-Aug-12 +Community Security Bank ,New Prague,MN,34486,Roundbank,23-Jul-10,12-Sep-12 +Thunder Bank ,Sylvan Grove,KS,10506,The Bennington State Bank,23-Jul-10,13-Sep-12 +Williamsburg First National Bank ,Kingstree,SC,17837,"First Citizens Bank and Trust Company, Inc.",23-Jul-10,5-Nov-12 +Crescent Bank and Trust Company ,Jasper,GA,27559,Renasant Bank,23-Jul-10,5-Nov-12 +Sterling Bank ,Lantana,FL,32536,IBERIABANK,23-Jul-10,5-Nov-12 +"Mainstreet Savings Bank, FSB",Hastings,MI,28136,Commercial Bank,16-Jul-10,13-Sep-12 +Olde Cypress Community Bank,Clewiston,FL,28864,"CenterState Bank of Florida, N.A.",16-Jul-10,5-Nov-12 +Turnberry Bank,Aventura,FL,32280,NAFH National Bank,16-Jul-10,5-Nov-12 +Metro Bank of Dade County,Miami,FL,25172,NAFH National Bank,16-Jul-10,5-Nov-12 +First National Bank of the South,Spartanburg,SC,35383,NAFH National Bank,16-Jul-10,5-Nov-12 +Woodlands Bank,Bluffton,SC,32571,Bank of the Ozarks,16-Jul-10,5-Nov-12 +Home National Bank,Blackwell,OK,11636,RCB Bank,9-Jul-10,10-Dec-12 +USA Bank,Port Chester,NY,58072,New Century Bank,9-Jul-10,14-Sep-12 +Ideal Federal Savings Bank,Baltimore,MD,32456,No Acquirer,9-Jul-10,14-Sep-12 +Bay National Bank,Baltimore,MD,35462,"Bay Bank, FSB",9-Jul-10,15-Jan-13 +High Desert State Bank,Albuquerque,NM,35279,First American Bank,25-Jun-10,14-Sep-12 +First National Bank,Savannah,GA,34152,"The Savannah Bank, N.A.",25-Jun-10,5-Nov-12 +Peninsula Bank,Englewood,FL,26563,"Premier American Bank, N.A.",25-Jun-10,5-Nov-12 +Nevada Security Bank,Reno,NV,57110,Umpqua Bank,18-Jun-10,23-Aug-12 +Washington First International Bank,Seattle,WA,32955,East West Bank,11-Jun-10,14-Sep-12 +TierOne Bank,Lincoln,NE,29341,Great Western Bank,4-Jun-10,14-Sep-12 +Arcola Homestead Savings Bank,Arcola,IL,31813,No Acquirer,4-Jun-10,14-Sep-12 +First National Bank,Rosedale,MS,15814,The Jefferson Bank,4-Jun-10,5-Nov-12 +Sun West Bank,Las Vegas,NV,34785,City National Bank,28-May-10,14-Sep-12 +"Granite Community Bank, NA",Granite Bay,CA,57315,Tri Counties Bank,28-May-10,14-Sep-12 +Bank of Florida - Tampa,Tampa,FL,57814,EverBank,28-May-10,5-Nov-12 +Bank of Florida - Southwest,Naples,FL,35106,EverBank,28-May-10,5-Nov-12 +Bank of Florida - Southeast,Fort Lauderdale,FL,57360,EverBank,28-May-10,5-Nov-12 +Pinehurst Bank,Saint Paul,MN,57735,Coulee Bank,21-May-10,26-Oct-12 +Midwest Bank and Trust Company,Elmwood Park,IL,18117,"FirstMerit Bank, N.A.",14-May-10,23-Aug-12 +Southwest Community Bank,Springfield,MO,34255,Simmons First National Bank,14-May-10,23-Aug-12 +New Liberty Bank,Plymouth,MI,35586,Bank of Ann Arbor,14-May-10,23-Aug-12 +Satilla Community Bank,Saint Marys,GA,35114,Ameris Bank,14-May-10,5-Nov-12 +1st Pacific Bank of California,San Diego,CA,35517,City National Bank,7-May-10,13-Dec-12 +Towne Bank of Arizona,Mesa,AZ,57697,Commerce Bank of Arizona,7-May-10,23-Aug-12 +Access Bank,Champlin,MN,16476,PrinsBank,7-May-10,23-Aug-12 +The Bank of Bonifay,Bonifay,FL,14246,First Federal Bank of Florida,7-May-10,5-Nov-12 +Frontier Bank,Everett,WA,22710,"Union Bank, N.A.",30-Apr-10,15-Jan-13 +BC National Banks,Butler,MO,17792,Community First Bank,30-Apr-10,23-Aug-12 +Champion Bank,Creve Coeur,MO,58362,BankLiberty,30-Apr-10,23-Aug-12 +CF Bancorp,Port Huron,MI,30005,First Michigan Bank,30-Apr-10,15-Jan-13 +Westernbank Puerto Rico,Mayaguez,PR,31027,Banco Popular de Puerto Rico,30-Apr-10,5-Nov-12 +R-G Premier Bank of Puerto Rico,Hato Rey,PR,32185,Scotiabank de Puerto Rico,30-Apr-10,5-Nov-12 +Eurobank,San Juan,PR,27150,Oriental Bank and Trust,30-Apr-10,5-Nov-12 +Wheatland Bank,Naperville,IL,58429,Wheaton Bank & Trust,23-Apr-10,23-Aug-12 +Peotone Bank and Trust Company,Peotone,IL,10888,First Midwest Bank,23-Apr-10,23-Aug-12 +Lincoln Park Savings Bank,Chicago,IL,30600,Northbrook Bank & Trust Company,23-Apr-10,23-Aug-12 +New Century Bank,Chicago,IL,34821,"MB Financial Bank, N.A.",23-Apr-10,23-Aug-12 +Citizens Bank and Trust Company of Chicago,Chicago,IL,34658,Republic Bank of Chicago,23-Apr-10,23-Aug-12 +Broadway Bank,Chicago,IL,22853,"MB Financial Bank, N.A.",23-Apr-10,23-Aug-12 +"Amcore Bank, National Association",Rockford,IL,3735,Harris N.A.,23-Apr-10,23-Aug-12 +City Bank,Lynnwood,WA,21521,Whidbey Island Bank,16-Apr-10,14-Sep-12 +Tamalpais Bank,San Rafael,CA,33493,"Union Bank, N.A.",16-Apr-10,23-Aug-12 +Innovative Bank,Oakland,CA,23876,Center Bank,16-Apr-10,23-Aug-12 +Butler Bank,Lowell,MA,26619,People's United Bank,16-Apr-10,23-Aug-12 +Riverside National Bank of Florida,Fort Pierce,FL,24067,"TD Bank, N.A.",16-Apr-10,5-Nov-12 +AmericanFirst Bank,Clermont,FL,57724,"TD Bank, N.A.",16-Apr-10,31-Oct-12 +First Federal Bank of North Florida,Palatka,FL,28886,"TD Bank, N.A.",16-Apr-10,15-Jan-13 +Lakeside Community Bank,Sterling Heights,MI,34878,No Acquirer,16-Apr-10,23-Aug-12 +Beach First National Bank,Myrtle Beach,SC,34242,Bank of North Carolina,9-Apr-10,5-Nov-12 +Desert Hills Bank,Phoenix,AZ,57060,New York Community Bank,26-Mar-10,23-Aug-12 +Unity National Bank,Cartersville,GA,34678,Bank of the Ozarks,26-Mar-10,14-Sep-12 +Key West Bank,Key West,FL,34684,Centennial Bank,26-Mar-10,23-Aug-12 +McIntosh Commercial Bank,Carrollton,GA,57399,CharterBank,26-Mar-10,23-Aug-12 +State Bank of Aurora,Aurora,MN,8221,Northern State Bank,19-Mar-10,23-Aug-12 +First Lowndes Bank,Fort Deposit,AL,24957,First Citizens Bank,19-Mar-10,23-Aug-12 +Bank of Hiawassee,Hiawassee,GA,10054,Citizens South Bank,19-Mar-10,23-Aug-12 +Appalachian Community Bank,Ellijay,GA,33989,Community & Southern Bank,19-Mar-10,31-Oct-12 +Advanta Bank Corp.,Draper,UT,33535,No Acquirer,19-Mar-10,14-Sep-12 +Century Security Bank,Duluth,GA,58104,Bank of Upson,19-Mar-10,23-Aug-12 +American National Bank,Parma,OH,18806,The National Bank and Trust Company,19-Mar-10,23-Aug-12 +Statewide Bank,Covington,LA,29561,Home Bank,12-Mar-10,23-Aug-12 +Old Southern Bank,Orlando,FL,58182,Centennial Bank,12-Mar-10,23-Aug-12 +The Park Avenue Bank,New York,NY,27096,Valley National Bank,12-Mar-10,23-Aug-12 +LibertyPointe Bank,New York,NY,58071,Valley National Bank,11-Mar-10,23-Aug-12 +Centennial Bank,Ogden,UT,34430,No Acquirer,5-Mar-10,14-Sep-12 +Waterfield Bank,Germantown,MD,34976,No Acquirer,5-Mar-10,23-Aug-12 +Bank of Illinois,Normal,IL,9268,Heartland Bank and Trust Company,5-Mar-10,23-Aug-12 +Sun American Bank,Boca Raton,FL,27126,First-Citizens Bank & Trust Company,5-Mar-10,23-Aug-12 +Rainier Pacific Bank,Tacoma,WA,38129,Umpqua Bank,26-Feb-10,23-Aug-12 +Carson River Community Bank,Carson City,NV,58352,Heritage Bank of Nevada,26-Feb-10,15-Jan-13 +"La Jolla Bank, FSB",La Jolla,CA,32423,"OneWest Bank, FSB",19-Feb-10,24-Aug-12 +George Washington Savings Bank,Orland Park,IL,29952,"FirstMerit Bank, N.A.",19-Feb-10,24-Aug-12 +The La Coste National Bank,La Coste,TX,3287,Community National Bank,19-Feb-10,14-Sep-12 +Marco Community Bank,Marco Island,FL,57586,Mutual of Omaha Bank,19-Feb-10,24-Aug-12 +1st American State Bank of Minnesota,Hancock,MN,15448,"Community Development Bank, FSB",5-Feb-10,24-Aug-12 +American Marine Bank,Bainbridge Island,WA,16730,Columbia State Bank,29-Jan-10,24-Aug-12 +First Regional Bank,Los Angeles,CA,23011,First-Citizens Bank & Trust Company,29-Jan-10,24-Aug-12 +Community Bank and Trust,Cornelia,GA,5702,SCBT National Association,29-Jan-10,15-Jan-13 +"Marshall Bank, N.A.",Hallock,MN,16133,United Valley Bank,29-Jan-10,23-Aug-12 +Florida Community Bank,Immokalee,FL,5672,"Premier American Bank, N.A.",29-Jan-10,15-Jan-13 +First National Bank of Georgia,Carrollton,GA,16480,Community & Southern Bank,29-Jan-10,13-Dec-12 +Columbia River Bank,The Dalles,OR,22469,Columbia State Bank,22-Jan-10,14-Sep-12 +Evergreen Bank,Seattle,WA,20501,Umpqua Bank,22-Jan-10,15-Jan-13 +Charter Bank,Santa Fe,NM,32498,Charter Bank,22-Jan-10,23-Aug-12 +Bank of Leeton,Leeton,MO,8265,"Sunflower Bank, N.A.",22-Jan-10,15-Jan-13 +Premier American Bank,Miami,FL,57147,"Premier American Bank, N.A.",22-Jan-10,13-Dec-12 +Barnes Banking Company,Kaysville,UT,1252,No Acquirer,15-Jan-10,23-Aug-12 +St. Stephen State Bank,St. Stephen,MN,17522,First State Bank of St. Joseph,15-Jan-10,23-Aug-12 +Town Community Bank & Trust,Antioch,IL,34705,First American Bank,15-Jan-10,23-Aug-12 +Horizon Bank,Bellingham,WA,22977,Washington Federal Savings and Loan Association,8-Jan-10,23-Aug-12 +"First Federal Bank of California, F.S.B.",Santa Monica,CA,28536,"OneWest Bank, FSB",18-Dec-09,23-Aug-12 +Imperial Capital Bank,La Jolla,CA,26348,City National Bank,18-Dec-09,5-Sep-12 +Independent Bankers' Bank,Springfield,IL,26820,The Independent BankersBank (TIB),18-Dec-09,23-Aug-12 +New South Federal Savings Bank,Irondale,AL,32276,Beal Bank,18-Dec-09,23-Aug-12 +Citizens State Bank,New Baltimore,MI,1006,No Acquirer,18-Dec-09,5-Nov-12 +Peoples First Community Bank,Panama City,FL,32167,Hancock Bank,18-Dec-09,5-Nov-12 +RockBridge Commercial Bank,Atlanta,GA,58315,No Acquirer,18-Dec-09,5-Nov-12 +SolutionsBank,Overland Park,KS,4731,Arvest Bank,11-Dec-09,23-Aug-12 +"Valley Capital Bank, N.A.",Mesa,AZ,58399,Enterprise Bank & Trust,11-Dec-09,23-Aug-12 +"Republic Federal Bank, N.A.",Miami,FL,22846,1st United Bank,11-Dec-09,5-Nov-12 +Greater Atlantic Bank,Reston,VA,32583,Sonabank,4-Dec-09,5-Nov-12 +Benchmark Bank,Aurora,IL,10440,"MB Financial Bank, N.A.",4-Dec-09,23-Aug-12 +AmTrust Bank,Cleveland,OH,29776,New York Community Bank,4-Dec-09,5-Nov-12 +The Tattnall Bank,Reidsville,GA,12080,Heritage Bank of the South,4-Dec-09,5-Nov-12 +First Security National Bank,Norcross,GA,26290,State Bank and Trust Company,4-Dec-09,5-Nov-12 +The Buckhead Community Bank,Atlanta,GA,34663,State Bank and Trust Company,4-Dec-09,5-Nov-12 +Commerce Bank of Southwest Florida,Fort Myers,FL,58016,Central Bank,20-Nov-09,5-Nov-12 +Pacific Coast National Bank,San Clemente,CA,57914,Sunwest Bank,13-Nov-09,22-Aug-12 +Orion Bank,Naples,FL,22427,IBERIABANK,13-Nov-09,5-Nov-12 +"Century Bank, F.S.B.",Sarasota,FL,32267,IBERIABANK,13-Nov-09,22-Aug-12 +United Commercial Bank,San Francisco,CA,32469,East West Bank,6-Nov-09,5-Nov-12 +Gateway Bank of St. Louis,St. Louis,MO,19450,Central Bank of Kansas City,6-Nov-09,22-Aug-12 +Prosperan Bank,Oakdale,MN,35074,"Alerus Financial, N.A.",6-Nov-09,22-Aug-12 +Home Federal Savings Bank,Detroit,MI,30329,Liberty Bank and Trust Company,6-Nov-09,22-Aug-12 +United Security Bank,Sparta,GA,22286,Ameris Bank,6-Nov-09,15-Jan-13 +North Houston Bank,Houston,TX,18776,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +Madisonville State Bank,Madisonville,TX,33782,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +Citizens National Bank,Teague,TX,25222,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +Park National Bank,Chicago,IL,11677,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +Pacific National Bank,San Francisco,CA,30006,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +California National Bank,Los Angeles,CA,34659,U.S. Bank N.A.,30-Oct-09,5-Sep-12 +San Diego National Bank,San Diego,CA,23594,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +Community Bank of Lemont,Lemont,IL,35291,U.S. Bank N.A.,30-Oct-09,15-Jan-13 +"Bank USA, N.A.",Phoenix,AZ,32218,U.S. Bank N.A.,30-Oct-09,22-Aug-12 +First DuPage Bank,Westmont,IL,35038,First Midwest Bank,23-Oct-09,22-Aug-12 +Riverview Community Bank,Otsego,MN,57525,Central Bank,23-Oct-09,22-Aug-12 +Bank of Elmwood,Racine,WI,18321,Tri City National Bank,23-Oct-09,22-Aug-12 +Flagship National Bank,Bradenton,FL,35044,First Federal Bank of Florida,23-Oct-09,22-Aug-12 +Hillcrest Bank Florida,Naples,FL,58336,Stonegate Bank,23-Oct-09,22-Aug-12 +American United Bank,Lawrenceville,GA,57794,Ameris Bank,23-Oct-09,5-Sep-12 +Partners Bank,Naples,FL,57959,Stonegate Bank,23-Oct-09,15-Jan-13 +San Joaquin Bank,Bakersfield,CA,23266,Citizens Business Bank,16-Oct-09,22-Aug-12 +Southern Colorado National Bank,Pueblo,CO,57263,Legacy Bank,2-Oct-09,5-Sep-12 +Jennings State Bank,Spring Grove,MN,11416,Central Bank,2-Oct-09,21-Aug-12 +Warren Bank,Warren,MI,34824,The Huntington National Bank,2-Oct-09,21-Aug-12 +Georgian Bank,Atlanta,GA,57151,"First Citizens Bank and Trust Company, Inc.",25-Sep-09,21-Aug-12 +"Irwin Union Bank, F.S.B.",Louisville,KY,57068,"First Financial Bank, N.A.",18-Sep-09,5-Sep-12 +Irwin Union Bank and Trust Company,Columbus,IN,10100,"First Financial Bank, N.A.",18-Sep-09,21-Aug-12 +Venture Bank,Lacey,WA,22868,First-Citizens Bank & Trust Company,11-Sep-09,21-Aug-12 +Brickwell Community Bank,Woodbury,MN,57736,CorTrust Bank N.A.,11-Sep-09,15-Jan-13 +"Corus Bank, N.A.",Chicago,IL,13693,"MB Financial Bank, N.A.",11-Sep-09,21-Aug-12 +First State Bank,Flagstaff,AZ,34875,Sunwest Bank,4-Sep-09,15-Jan-13 +Platinum Community Bank,Rolling Meadows,IL,35030,No Acquirer,4-Sep-09,21-Aug-12 +Vantus Bank,Sioux City,IA,27732,Great Southern Bank,4-Sep-09,21-Aug-12 +InBank,Oak Forest,IL,20203,"MB Financial Bank, N.A.",4-Sep-09,21-Aug-12 +First Bank of Kansas City,Kansas City,MO,25231,Great American Bank,4-Sep-09,21-Aug-12 +Affinity Bank,Ventura,CA,27197,Pacific Western Bank,28-Aug-09,21-Aug-12 +Mainstreet Bank,Forest Lake,MN,1909,Central Bank,28-Aug-09,21-Aug-12 +Bradford Bank,Baltimore,MD,28312,Manufacturers and Traders Trust Company (M&T Bank),28-Aug-09,15-Jan-13 +Guaranty Bank,Austin,TX,32618,BBVA Compass,21-Aug-09,21-Aug-12 +CapitalSouth Bank,Birmingham,AL,22130,IBERIABANK,21-Aug-09,15-Jan-13 +First Coweta Bank,Newnan,GA,57702,United Bank,21-Aug-09,15-Jan-13 +ebank,Atlanta,GA,34682,"Stearns Bank, N.A.",21-Aug-09,21-Aug-12 +Community Bank of Nevada,Las Vegas,NV,34043,No Acquirer,14-Aug-09,21-Aug-12 +Community Bank of Arizona,Phoenix,AZ,57645,MidFirst Bank,14-Aug-09,21-Aug-12 +"Union Bank, National Association",Gilbert,AZ,34485,MidFirst Bank,14-Aug-09,21-Aug-12 +Colonial Bank,Montgomery,AL,9609,"Branch Banking & Trust Company, (BB&T)",14-Aug-09,5-Sep-12 +Dwelling House Savings and Loan Association,Pittsburgh,PA,31559,"PNC Bank, N.A.",14-Aug-09,15-Jan-13 +Community First Bank,Prineville,OR,23268,Home Federal Bank,7-Aug-09,15-Jan-13 +Community National Bank of Sarasota County,Venice,FL,27183,"Stearns Bank, N.A.",7-Aug-09,20-Aug-12 +First State Bank,Sarasota,FL,27364,"Stearns Bank, N.A.",7-Aug-09,20-Aug-12 +Mutual Bank,Harvey,IL,18659,United Central Bank,31-Jul-09,20-Aug-12 +First BankAmericano,Elizabeth,NJ,34270,Crown Bank,31-Jul-09,20-Aug-12 +Peoples Community Bank,West Chester,OH,32288,"First Financial Bank, N.A.",31-Jul-09,20-Aug-12 +Integrity Bank,Jupiter,FL,57604,Stonegate Bank,31-Jul-09,20-Aug-12 +First State Bank of Altus,Altus,OK,9873,Herring Bank,31-Jul-09,20-Aug-12 +Security Bank of Jones County,Gray,GA,8486,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Security Bank of Houston County,Perry,GA,27048,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Security Bank of Bibb County,Macon,GA,27367,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Security Bank of North Metro,Woodstock,GA,57105,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Security Bank of North Fulton,Alpharetta,GA,57430,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Security Bank of Gwinnett County,Suwanee,GA,57346,State Bank and Trust Company,24-Jul-09,20-Aug-12 +Waterford Village Bank,Williamsville,NY,58065,"Evans Bank, N.A.",24-Jul-09,20-Aug-12 +Temecula Valley Bank,Temecula,CA,34341,First-Citizens Bank & Trust Company,17-Jul-09,20-Aug-12 +Vineyard Bank,Rancho Cucamonga,CA,23556,California Bank & Trust,17-Jul-09,20-Aug-12 +BankFirst,Sioux Falls,SD,34103,"Alerus Financial, N.A.",17-Jul-09,20-Aug-12 +First Piedmont Bank,Winder,GA,34594,First American Bank and Trust Company,17-Jul-09,15-Jan-13 +Bank of Wyoming,Thermopolis,WY,22754,Central Bank & Trust,10-Jul-09,20-Aug-12 +Founders Bank,Worth,IL,18390,The PrivateBank and Trust Company,2-Jul-09,20-Aug-12 +Millennium State Bank of Texas,Dallas,TX,57667,State Bank of Texas,2-Jul-09,26-Oct-12 +First National Bank of Danville,Danville,IL,3644,"First Financial Bank, N.A.",2-Jul-09,20-Aug-12 +Elizabeth State Bank,Elizabeth,IL,9262,Galena State Bank and Trust Company,2-Jul-09,20-Aug-12 +Rock River Bank,Oregon,IL,15302,The Harvard State Bank,2-Jul-09,20-Aug-12 +First State Bank of Winchester,Winchester,IL,11710,The First National Bank of Beardstown,2-Jul-09,20-Aug-12 +John Warner Bank,Clinton,IL,12093,State Bank of Lincoln,2-Jul-09,20-Aug-12 +Mirae Bank,Los Angeles,CA,57332,Wilshire State Bank,26-Jun-09,20-Aug-12 +MetroPacific Bank,Irvine,CA,57893,Sunwest Bank,26-Jun-09,20-Aug-12 +Horizon Bank,Pine City,MN,9744,"Stearns Bank, N.A.",26-Jun-09,20-Aug-12 +Neighborhood Community Bank,Newnan,GA,35285,CharterBank,26-Jun-09,20-Aug-12 +Community Bank of West Georgia,Villa Rica,GA,57436,No Acquirer,26-Jun-09,17-Aug-12 +First National Bank of Anthony,Anthony,KS,4614,Bank of Kansas,19-Jun-09,17-Aug-12 +Cooperative Bank,Wilmington,NC,27837,First Bank,19-Jun-09,17-Aug-12 +Southern Community Bank,Fayetteville,GA,35251,United Community Bank,19-Jun-09,17-Aug-12 +Bank of Lincolnwood,Lincolnwood,IL,17309,Republic Bank of Chicago,5-Jun-09,17-Aug-12 +Citizens National Bank,Macomb,IL,5757,Morton Community Bank,22-May-09,4-Sep-12 +Strategic Capital Bank,Champaign,IL,35175,Midland States Bank,22-May-09,4-Sep-12 +"BankUnited, FSB",Coral Gables,FL,32247,BankUnited,21-May-09,17-Aug-12 +Westsound Bank,Bremerton,WA,34843,Kitsap Bank,8-May-09,4-Sep-12 +America West Bank,Layton,UT,35461,Cache Valley Bank,1-May-09,17-Aug-12 +Citizens Community Bank,Ridgewood,NJ,57563,North Jersey Community Bank,1-May-09,4-Sep-12 +"Silverton Bank, NA",Atlanta,GA,26535,No Acquirer,1-May-09,17-Aug-12 +First Bank of Idaho,Ketchum,ID,34396,"U.S. Bank, N.A.",24-Apr-09,17-Aug-12 +First Bank of Beverly Hills,Calabasas,CA,32069,No Acquirer,24-Apr-09,4-Sep-12 +Michigan Heritage Bank,Farmington Hills,MI,34369,Level One Bank,24-Apr-09,17-Aug-12 +American Southern Bank,Kennesaw,GA,57943,Bank of North Georgia,24-Apr-09,17-Aug-12 +Great Basin Bank of Nevada,Elko,NV,33824,Nevada State Bank,17-Apr-09,4-Sep-12 +American Sterling Bank,Sugar Creek,MO,8266,Metcalf Bank,17-Apr-09,31-Aug-12 +New Frontier Bank,Greeley,CO,34881,No Acquirer,10-Apr-09,4-Sep-12 +Cape Fear Bank,Wilmington,NC,34639,First Federal Savings and Loan Association,10-Apr-09,17-Aug-12 +Omni National Bank,Atlanta,GA,22238,No Acquirer,27-Mar-09,17-Aug-12 +"TeamBank, NA",Paola,KS,4754,Great Southern Bank,20-Mar-09,17-Aug-12 +Colorado National Bank,Colorado Springs,CO,18896,Herring Bank,20-Mar-09,17-Aug-12 +FirstCity Bank,Stockbridge,GA,18243,No Acquirer,20-Mar-09,17-Aug-12 +Freedom Bank of Georgia,Commerce,GA,57558,Northeast Georgia Bank,6-Mar-09,17-Aug-12 +Security Savings Bank,Henderson,NV,34820,Bank of Nevada,27-Feb-09,7-Sep-12 +Heritage Community Bank,Glenwood,IL,20078,"MB Financial Bank, N.A.",27-Feb-09,17-Aug-12 +Silver Falls Bank,Silverton,OR,35399,Citizens Bank,20-Feb-09,17-Aug-12 +Pinnacle Bank of Oregon,Beaverton,OR,57342,Washington Trust Bank of Spokane,13-Feb-09,17-Aug-12 +Corn Belt Bank & Trust Co.,Pittsfield,IL,16500,The Carlinville National Bank,13-Feb-09,17-Aug-12 +Riverside Bank of the Gulf Coast,Cape Coral,FL,34563,TIB Bank,13-Feb-09,17-Aug-12 +Sherman County Bank,Loup City,NE,5431,Heritage Bank,13-Feb-09,17-Aug-12 +County Bank,Merced,CA,22574,Westamerica Bank,6-Feb-09,4-Sep-12 +Alliance Bank,Culver City,CA,23124,California Bank & Trust,6-Feb-09,16-Aug-12 +FirstBank Financial Services,McDonough,GA,57017,Regions Bank,6-Feb-09,16-Aug-12 +Ocala National Bank,Ocala,FL,26538,"CenterState Bank of Florida, N.A.",30-Jan-09,4-Sep-12 +Suburban FSB,Crofton,MD,30763,Bank of Essex,30-Jan-09,16-Aug-12 +MagnetBank,Salt Lake City,UT,58001,No Acquirer,30-Jan-09,16-Aug-12 +1st Centennial Bank,Redlands,CA,33025,First California Bank,23-Jan-09,16-Aug-12 +Bank of Clark County,Vancouver,WA,34959,Umpqua Bank,16-Jan-09,16-Aug-12 +National Bank of Commerce,Berkeley,IL,19733,Republic Bank of Chicago,16-Jan-09,16-Aug-12 +Sanderson State Bank,Sanderson,TX,11568,The Pecos County State Bank,12-Dec-08,4-Sep-12 +Haven Trust Bank,Duluth,GA,35379,"Branch Banking & Trust Company, (BB&T)",12-Dec-08,16-Aug-12 +First Georgia Community Bank,Jackson,GA,34301,United Bank,5-Dec-08,16-Aug-12 +PFF Bank & Trust ,Pomona,CA,28344,"U.S. Bank, N.A.",21-Nov-08,4-Jan-13 +Downey Savings & Loan,Newport Beach,CA,30968,"U.S. Bank, N.A.",21-Nov-08,4-Jan-13 +Community Bank,Loganville,GA,16490,Bank of Essex,21-Nov-08,4-Sep-12 +Security Pacific Bank,Los Angeles,CA,23595,Pacific Western Bank,7-Nov-08,28-Aug-12 +"Franklin Bank, SSB",Houston,TX,26870,Prosperity Bank,7-Nov-08,16-Aug-12 +Freedom Bank,Bradenton,FL,57930,Fifth Third Bank,31-Oct-08,16-Aug-12 +Alpha Bank & Trust,Alpharetta,GA,58241,"Stearns Bank, N.A.",24-Oct-08,16-Aug-12 +Meridian Bank,Eldred,IL,13789,National Bank,10-Oct-08,31-May-12 +Main Street Bank,Northville,MI,57654,Monroe Bank & Trust,10-Oct-08,16-Aug-12 +Washington Mutual Bank,Henderson,NV,32633,JP Morgan Chase Bank,25-Sep-08,16-Aug-12 +Ameribank,Northfork,WV,6782,The Citizens Savings Bank,19-Sep-08,16-Aug-12 +Silver State Bank,Henderson,NV,34194,Nevada State Bank,5-Sep-08,16-Aug-12 +Integrity Bank,Alpharetta,GA,35469,Regions Bank,29-Aug-08,16-Aug-12 +Columbian Bank & Trust,Topeka,KS,22728,Citizens Bank & Trust,22-Aug-08,16-Aug-12 +First Priority Bank,Bradenton,FL,57523,SunTrust Bank,1-Aug-08,16-Aug-12 +"First Heritage Bank, NA",Newport Beach,CA,57961,Mutual of Omaha Bank,25-Jul-08,28-Aug-12 +First National Bank of Nevada,Reno,NV,27011,Mutual of Omaha Bank,25-Jul-08,28-Aug-12 +IndyMac Bank,Pasadena,CA,29730,"OneWest Bank, FSB",11-Jul-08,28-Aug-12 +"First Integrity Bank, NA",Staples,MN,12736,First International Bank and Trust,30-May-08,28-Aug-12 +"ANB Financial, NA",Bentonville,AR,33901,Pulaski Bank and Trust Company,9-May-08,28-Aug-12 +Hume Bank,Hume,MO,1971,Security Bank,7-Mar-08,28-Aug-12 +Douglass National Bank,Kansas City,MO,24660,Liberty Bank and Trust Company,25-Jan-08,26-Oct-12 +Miami Valley Bank,Lakeview,OH,16848,The Citizens Banking Company,4-Oct-07,28-Aug-12 +NetBank,Alpharetta,GA,32575,ING DIRECT,28-Sep-07,28-Aug-12 +Metropolitan Savings Bank,Pittsburgh,PA,35353,Allegheny Valley Bank of Pittsburgh,2-Feb-07,27-Oct-10 +Bank of Ephraim,Ephraim,UT,1249,Far West Bank,25-Jun-04,9-Apr-08 +Reliance Bank,White Plains,NY,26778,Union State Bank,19-Mar-04,9-Apr-08 +Guaranty National Bank of Tallahassee,Tallahassee,FL,26838,Hancock Bank of Florida,12-Mar-04,5-Jun-12 +Dollar Savings Bank,Newark,NJ,31330,No Acquirer,14-Feb-04,9-Apr-08 +Pulaski Savings Bank,Philadelphia,PA,27203,Earthstar Bank,14-Nov-03,22-Jul-05 +First National Bank of Blanchardville,Blanchardville,WI,11639,The Park Bank,9-May-03,5-Jun-12 +Southern Pacific Bank,Torrance,CA,27094,Beal Bank,7-Feb-03,20-Oct-08 +Farmers Bank of Cheneyville,Cheneyville,LA,16445,Sabine State Bank & Trust,17-Dec-02,20-Oct-04 +Bank of Alamo,Alamo,TN,9961,No Acquirer,8-Nov-02,18-Mar-05 +AmTrade International Bank,Atlanta,GA,33784,No Acquirer,30-Sep-02,11-Sep-06 +Universal Federal Savings Bank,Chicago,IL,29355,Chicago Community Bank,27-Jun-02,9-Apr-08 +Connecticut Bank of Commerce,Stamford,CT,19183,Hudson United Bank,26-Jun-02,14-Feb-12 +New Century Bank,Shelby Township,MI,34979,No Acquirer,28-Mar-02,18-Mar-05 +Net 1st National Bank,Boca Raton,FL,26652,Bank Leumi USA,1-Mar-02,9-Apr-08 +"NextBank, NA",Phoenix,AZ,22314,No Acquirer,7-Feb-02,27-Aug-10 +Oakwood Deposit Bank Co.,Oakwood,OH,8966,The State Bank & Trust Company,1-Feb-02,25-Oct-12 +Bank of Sierra Blanca,Sierra Blanca,TX,22002,The Security State Bank of Pecos,18-Jan-02,6-Nov-03 +"Hamilton Bank, NA",Miami,FL,24382,Israel Discount Bank of New York,11-Jan-02,5-Jun-12 +Sinclair National Bank,Gravette,AR,34248,Delta Trust & Bank,7-Sep-01,10-Feb-04 +"Superior Bank, FSB",Hinsdale,IL,32646,"Superior Federal, FSB",27-Jul-01,5-Jun-12 +Malta National Bank,Malta,OH,6629,North Valley Bank,3-May-01,18-Nov-02 +First Alliance Bank & Trust Co.,Manchester,NH,34264,Southern New Hampshire Bank & Trust,2-Feb-01,18-Feb-03 +National State Bank of Metropolis,Metropolis,IL,3815,Banterra Bank of Marion,14-Dec-00,17-Mar-05 +Bank of Honolulu,Honolulu,HI,21029,Bank of the Orient,13-Oct-00,17-Mar-05 diff --git a/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json b/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json new file mode 100644 index 000000000..b1b717999 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json @@ -0,0 +1,2234 @@ +{ +"items":[ + {"key": "Á", "characters": "\u00C1" }, + {"key": "Á", "characters": "\u00C1" }, + {"key": "á", "characters": "\u00E1" }, + {"key": "á", "characters": "\u00E1" }, + {"key": "Ă", "characters": "\u0102" }, + {"key": "ă", "characters": "\u0103" }, + {"key": "∾", "characters": "\u223E" }, + {"key": "∿", "characters": "\u223F" }, + {"key": "∾̳", "characters": "\u223E\u0333" }, + {"key": "Â", "characters": "\u00C2" }, + {"key": "Â", "characters": "\u00C2" }, + {"key": "â", "characters": "\u00E2" }, + {"key": "â", "characters": "\u00E2" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "А", "characters": "\u0410" }, + {"key": "а", "characters": "\u0430" }, + {"key": "Æ", "characters": "\u00C6" }, + {"key": "Æ", "characters": "\u00C6" }, + {"key": "æ", "characters": "\u00E6" }, + {"key": "æ", "characters": "\u00E6" }, + {"key": "⁡", "characters": "\u2061" }, + {"key": "𝔄", "characters": "\uD835\uDD04" }, + {"key": "𝔞", "characters": "\uD835\uDD1E" }, + {"key": "À", "characters": "\u00C0" }, + {"key": "À", "characters": "\u00C0" }, + {"key": "à", "characters": "\u00E0" }, + {"key": "à", "characters": "\u00E0" }, + {"key": "ℵ", "characters": "\u2135" }, + {"key": "ℵ", "characters": "\u2135" }, + {"key": "Α", "characters": "\u0391" }, + {"key": "α", "characters": "\u03B1" }, + {"key": "Ā", "characters": "\u0100" }, + {"key": "ā", "characters": "\u0101" }, + {"key": "⨿", "characters": "\u2A3F" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "⩕", "characters": "\u2A55" }, + {"key": "⩓", "characters": "\u2A53" }, + {"key": "∧", "characters": "\u2227" }, + {"key": "⩜", "characters": "\u2A5C" }, + {"key": "⩘", "characters": "\u2A58" }, + {"key": "⩚", "characters": "\u2A5A" }, + {"key": "∠", "characters": "\u2220" }, + {"key": "⦤", "characters": "\u29A4" }, + {"key": "∠", "characters": "\u2220" }, + {"key": "⦨", "characters": "\u29A8" }, + {"key": "⦩", "characters": "\u29A9" }, + {"key": "⦪", "characters": "\u29AA" }, + {"key": "⦫", "characters": "\u29AB" }, + {"key": "⦬", "characters": "\u29AC" }, + {"key": "⦭", "characters": "\u29AD" }, + {"key": "⦮", "characters": "\u29AE" }, + {"key": "⦯", "characters": "\u29AF" }, + {"key": "∡", "characters": "\u2221" }, + {"key": "∟", "characters": "\u221F" }, + {"key": "⊾", "characters": "\u22BE" }, + {"key": "⦝", "characters": "\u299D" }, + {"key": "∢", "characters": "\u2222" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "⍼", "characters": "\u237C" }, + {"key": "Ą", "characters": "\u0104" }, + {"key": "ą", "characters": "\u0105" }, + {"key": "𝔸", "characters": "\uD835\uDD38" }, + {"key": "𝕒", "characters": "\uD835\uDD52" }, + {"key": "⩯", "characters": "\u2A6F" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "⩰", "characters": "\u2A70" }, + {"key": "≊", "characters": "\u224A" }, + {"key": "≋", "characters": "\u224B" }, + {"key": "'", "characters": "\u0027" }, + {"key": "⁡", "characters": "\u2061" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "≊", "characters": "\u224A" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "å", "characters": "\u00E5" }, + {"key": "å", "characters": "\u00E5" }, + {"key": "𝒜", "characters": "\uD835\uDC9C" }, + {"key": "𝒶", "characters": "\uD835\uDCB6" }, + {"key": "≔", "characters": "\u2254" }, + {"key": "*", "characters": "\u002A" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "≍", "characters": "\u224D" }, + {"key": "Ã", "characters": "\u00C3" }, + {"key": "Ã", "characters": "\u00C3" }, + {"key": "ã", "characters": "\u00E3" }, + {"key": "ã", "characters": "\u00E3" }, + {"key": "Ä", "characters": "\u00C4" }, + {"key": "Ä", "characters": "\u00C4" }, + {"key": "ä", "characters": "\u00E4" }, + {"key": "ä", "characters": "\u00E4" }, + {"key": "∳", "characters": "\u2233" }, + {"key": "⨑", "characters": "\u2A11" }, + {"key": "≌", "characters": "\u224C" }, + {"key": "϶", "characters": "\u03F6" }, + {"key": "‵", "characters": "\u2035" }, + {"key": "∽", "characters": "\u223D" }, + {"key": "⋍", "characters": "\u22CD" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "⫧", "characters": "\u2AE7" }, + {"key": "⊽", "characters": "\u22BD" }, + {"key": "⌅", "characters": "\u2305" }, + {"key": "⌆", "characters": "\u2306" }, + {"key": "⌅", "characters": "\u2305" }, + {"key": "⎵", "characters": "\u23B5" }, + {"key": "⎶", "characters": "\u23B6" }, + {"key": "≌", "characters": "\u224C" }, + {"key": "Б", "characters": "\u0411" }, + {"key": "б", "characters": "\u0431" }, + {"key": "„", "characters": "\u201E" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "⦰", "characters": "\u29B0" }, + {"key": "϶", "characters": "\u03F6" }, + {"key": "ℬ", "characters": "\u212C" }, + {"key": "ℬ", "characters": "\u212C" }, + {"key": "Β", "characters": "\u0392" }, + {"key": "β", "characters": "\u03B2" }, + {"key": "ℶ", "characters": "\u2136" }, + {"key": "≬", "characters": "\u226C" }, + {"key": "𝔅", "characters": "\uD835\uDD05" }, + {"key": "𝔟", "characters": "\uD835\uDD1F" }, + {"key": "⋂", "characters": "\u22C2" }, + {"key": "◯", "characters": "\u25EF" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "⨀", "characters": "\u2A00" }, + {"key": "⨁", "characters": "\u2A01" }, + {"key": "⨂", "characters": "\u2A02" }, + {"key": "⨆", "characters": "\u2A06" }, + {"key": "★", "characters": "\u2605" }, + {"key": "▽", "characters": "\u25BD" }, + {"key": "△", "characters": "\u25B3" }, + {"key": "⨄", "characters": "\u2A04" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "⤍", "characters": "\u290D" }, + {"key": "⧫", "characters": "\u29EB" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "▴", "characters": "\u25B4" }, + {"key": "▾", "characters": "\u25BE" }, + {"key": "◂", "characters": "\u25C2" }, + {"key": "▸", "characters": "\u25B8" }, + {"key": "␣", "characters": "\u2423" }, + {"key": "▒", "characters": "\u2592" }, + {"key": "░", "characters": "\u2591" }, + {"key": "▓", "characters": "\u2593" }, + {"key": "█", "characters": "\u2588" }, + {"key": "=⃥", "characters": "\u003D\u20E5" }, + {"key": "≡⃥", "characters": "\u2261\u20E5" }, + {"key": "⫭", "characters": "\u2AED" }, + {"key": "⌐", "characters": "\u2310" }, + {"key": "𝔹", "characters": "\uD835\uDD39" }, + {"key": "𝕓", "characters": "\uD835\uDD53" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⋈", "characters": "\u22C8" }, + {"key": "⧉", "characters": "\u29C9" }, + {"key": "┐", "characters": "\u2510" }, + {"key": "╕", "characters": "\u2555" }, + {"key": "╖", "characters": "\u2556" }, + {"key": "╗", "characters": "\u2557" }, + {"key": "┌", "characters": "\u250C" }, + {"key": "╒", "characters": "\u2552" }, + {"key": "╓", "characters": "\u2553" }, + {"key": "╔", "characters": "\u2554" }, + {"key": "─", "characters": "\u2500" }, + {"key": "═", "characters": "\u2550" }, + {"key": "┬", "characters": "\u252C" }, + {"key": "╤", "characters": "\u2564" }, + {"key": "╥", "characters": "\u2565" }, + {"key": "╦", "characters": "\u2566" }, + {"key": "┴", "characters": "\u2534" }, + {"key": "╧", "characters": "\u2567" }, + {"key": "╨", "characters": "\u2568" }, + {"key": "╩", "characters": "\u2569" }, + {"key": "⊟", "characters": "\u229F" }, + {"key": "⊞", "characters": "\u229E" }, + {"key": "⊠", "characters": "\u22A0" }, + {"key": "┘", "characters": "\u2518" }, + {"key": "╛", "characters": "\u255B" }, + {"key": "╜", "characters": "\u255C" }, + {"key": "╝", "characters": "\u255D" }, + {"key": "└", "characters": "\u2514" }, + {"key": "╘", "characters": "\u2558" }, + {"key": "╙", "characters": "\u2559" }, + {"key": "╚", "characters": "\u255A" }, + {"key": "│", "characters": "\u2502" }, + {"key": "║", "characters": "\u2551" }, + {"key": "┼", "characters": "\u253C" }, + {"key": "╪", "characters": "\u256A" }, + {"key": "╫", "characters": "\u256B" }, + {"key": "╬", "characters": "\u256C" }, + {"key": "┤", "characters": "\u2524" }, + {"key": "╡", "characters": "\u2561" }, + {"key": "╢", "characters": "\u2562" }, + {"key": "╣", "characters": "\u2563" }, + {"key": "├", "characters": "\u251C" }, + {"key": "╞", "characters": "\u255E" }, + {"key": "╟", "characters": "\u255F" }, + {"key": "╠", "characters": "\u2560" }, + {"key": "‵", "characters": "\u2035" }, + {"key": "˘", "characters": "\u02D8" }, + {"key": "˘", "characters": "\u02D8" }, + {"key": "¦", "characters": "\u00A6" }, + {"key": "¦", "characters": "\u00A6" }, + {"key": "𝒷", "characters": "\uD835\uDCB7" }, + {"key": "ℬ", "characters": "\u212C" }, + {"key": "⁏", "characters": "\u204F" }, + {"key": "∽", "characters": "\u223D" }, + {"key": "⋍", "characters": "\u22CD" }, + {"key": "⧅", "characters": "\u29C5" }, + {"key": "\", "characters": "\u005C" }, + {"key": "⟈", "characters": "\u27C8" }, + {"key": "•", "characters": "\u2022" }, + {"key": "•", "characters": "\u2022" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "⪮", "characters": "\u2AAE" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "Ć", "characters": "\u0106" }, + {"key": "ć", "characters": "\u0107" }, + {"key": "⩄", "characters": "\u2A44" }, + {"key": "⩉", "characters": "\u2A49" }, + {"key": "⩋", "characters": "\u2A4B" }, + {"key": "∩", "characters": "\u2229" }, + {"key": "⋒", "characters": "\u22D2" }, + {"key": "⩇", "characters": "\u2A47" }, + {"key": "⩀", "characters": "\u2A40" }, + {"key": "ⅅ", "characters": "\u2145" }, + {"key": "∩︀", "characters": "\u2229\uFE00" }, + {"key": "⁁", "characters": "\u2041" }, + {"key": "ˇ", "characters": "\u02C7" }, + {"key": "ℭ", "characters": "\u212D" }, + {"key": "⩍", "characters": "\u2A4D" }, + {"key": "Č", "characters": "\u010C" }, + {"key": "č", "characters": "\u010D" }, + {"key": "Ç", "characters": "\u00C7" }, + {"key": "Ç", "characters": "\u00C7" }, + {"key": "ç", "characters": "\u00E7" }, + {"key": "ç", "characters": "\u00E7" }, + {"key": "Ĉ", "characters": "\u0108" }, + {"key": "ĉ", "characters": "\u0109" }, + {"key": "∰", "characters": "\u2230" }, + {"key": "⩌", "characters": "\u2A4C" }, + {"key": "⩐", "characters": "\u2A50" }, + {"key": "Ċ", "characters": "\u010A" }, + {"key": "ċ", "characters": "\u010B" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "⦲", "characters": "\u29B2" }, + {"key": "¢", "characters": "\u00A2" }, + {"key": "¢", "characters": "\u00A2" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "𝔠", "characters": "\uD835\uDD20" }, + {"key": "ℭ", "characters": "\u212D" }, + {"key": "Ч", "characters": "\u0427" }, + {"key": "ч", "characters": "\u0447" }, + {"key": "✓", "characters": "\u2713" }, + {"key": "✓", "characters": "\u2713" }, + {"key": "Χ", "characters": "\u03A7" }, + {"key": "χ", "characters": "\u03C7" }, + {"key": "ˆ", "characters": "\u02C6" }, + {"key": "≗", "characters": "\u2257" }, + {"key": "↺", "characters": "\u21BA" }, + {"key": "↻", "characters": "\u21BB" }, + {"key": "⊛", "characters": "\u229B" }, + {"key": "⊚", "characters": "\u229A" }, + {"key": "⊝", "characters": "\u229D" }, + {"key": "⊙", "characters": "\u2299" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "Ⓢ", "characters": "\u24C8" }, + {"key": "⊖", "characters": "\u2296" }, + {"key": "⊕", "characters": "\u2295" }, + {"key": "⊗", "characters": "\u2297" }, + {"key": "○", "characters": "\u25CB" }, + {"key": "⧃", "characters": "\u29C3" }, + {"key": "≗", "characters": "\u2257" }, + {"key": "⨐", "characters": "\u2A10" }, + {"key": "⫯", "characters": "\u2AEF" }, + {"key": "⧂", "characters": "\u29C2" }, + {"key": "∲", "characters": "\u2232" }, + {"key": "”", "characters": "\u201D" }, + {"key": "’", "characters": "\u2019" }, + {"key": "♣", "characters": "\u2663" }, + {"key": "♣", "characters": "\u2663" }, + {"key": ":", "characters": "\u003A" }, + {"key": "∷", "characters": "\u2237" }, + {"key": "⩴", "characters": "\u2A74" }, + {"key": "≔", "characters": "\u2254" }, + {"key": "≔", "characters": "\u2254" }, + {"key": ",", "characters": "\u002C" }, + {"key": "@", "characters": "\u0040" }, + {"key": "∁", "characters": "\u2201" }, + {"key": "∘", "characters": "\u2218" }, + {"key": "∁", "characters": "\u2201" }, + {"key": "ℂ", "characters": "\u2102" }, + {"key": "≅", "characters": "\u2245" }, + {"key": "⩭", "characters": "\u2A6D" }, + {"key": "≡", "characters": "\u2261" }, + {"key": "∮", "characters": "\u222E" }, + {"key": "∯", "characters": "\u222F" }, + {"key": "∮", "characters": "\u222E" }, + {"key": "𝕔", "characters": "\uD835\uDD54" }, + {"key": "ℂ", "characters": "\u2102" }, + {"key": "∐", "characters": "\u2210" }, + {"key": "∐", "characters": "\u2210" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "℗", "characters": "\u2117" }, + {"key": "∳", "characters": "\u2233" }, + {"key": "↵", "characters": "\u21B5" }, + {"key": "✗", "characters": "\u2717" }, + {"key": "⨯", "characters": "\u2A2F" }, + {"key": "𝒞", "characters": "\uD835\uDC9E" }, + {"key": "𝒸", "characters": "\uD835\uDCB8" }, + {"key": "⫏", "characters": "\u2ACF" }, + {"key": "⫑", "characters": "\u2AD1" }, + {"key": "⫐", "characters": "\u2AD0" }, + {"key": "⫒", "characters": "\u2AD2" }, + {"key": "⋯", "characters": "\u22EF" }, + {"key": "⤸", "characters": "\u2938" }, + {"key": "⤵", "characters": "\u2935" }, + {"key": "⋞", "characters": "\u22DE" }, + {"key": "⋟", "characters": "\u22DF" }, + {"key": "↶", "characters": "\u21B6" }, + {"key": "⤽", "characters": "\u293D" }, + {"key": "⩈", "characters": "\u2A48" }, + {"key": "⩆", "characters": "\u2A46" }, + {"key": "≍", "characters": "\u224D" }, + {"key": "∪", "characters": "\u222A" }, + {"key": "⋓", "characters": "\u22D3" }, + {"key": "⩊", "characters": "\u2A4A" }, + {"key": "⊍", "characters": "\u228D" }, + {"key": "⩅", "characters": "\u2A45" }, + {"key": "∪︀", "characters": "\u222A\uFE00" }, + {"key": "↷", "characters": "\u21B7" }, + {"key": "⤼", "characters": "\u293C" }, + {"key": "⋞", "characters": "\u22DE" }, + {"key": "⋟", "characters": "\u22DF" }, + {"key": "⋎", "characters": "\u22CE" }, + {"key": "⋏", "characters": "\u22CF" }, + {"key": "¤", "characters": "\u00A4" }, + {"key": "¤", "characters": "\u00A4" }, + {"key": "↶", "characters": "\u21B6" }, + {"key": "↷", "characters": "\u21B7" }, + {"key": "⋎", "characters": "\u22CE" }, + {"key": "⋏", "characters": "\u22CF" }, + {"key": "∲", "characters": "\u2232" }, + {"key": "∱", "characters": "\u2231" }, + {"key": "⌭", "characters": "\u232D" }, + {"key": "†", "characters": "\u2020" }, + {"key": "‡", "characters": "\u2021" }, + {"key": "ℸ", "characters": "\u2138" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "↡", "characters": "\u21A1" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "‐", "characters": "\u2010" }, + {"key": "⫤", "characters": "\u2AE4" }, + {"key": "⊣", "characters": "\u22A3" }, + {"key": "⤏", "characters": "\u290F" }, + {"key": "˝", "characters": "\u02DD" }, + {"key": "Ď", "characters": "\u010E" }, + {"key": "ď", "characters": "\u010F" }, + {"key": "Д", "characters": "\u0414" }, + {"key": "д", "characters": "\u0434" }, + {"key": "‡", "characters": "\u2021" }, + {"key": "⇊", "characters": "\u21CA" }, + {"key": "ⅅ", "characters": "\u2145" }, + {"key": "ⅆ", "characters": "\u2146" }, + {"key": "⤑", "characters": "\u2911" }, + {"key": "⩷", "characters": "\u2A77" }, + {"key": "°", "characters": "\u00B0" }, + {"key": "°", "characters": "\u00B0" }, + {"key": "∇", "characters": "\u2207" }, + {"key": "Δ", "characters": "\u0394" }, + {"key": "δ", "characters": "\u03B4" }, + {"key": "⦱", "characters": "\u29B1" }, + {"key": "⥿", "characters": "\u297F" }, + {"key": "𝔇", "characters": "\uD835\uDD07" }, + {"key": "𝔡", "characters": "\uD835\uDD21" }, + {"key": "⥥", "characters": "\u2965" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "˙", "characters": "\u02D9" }, + {"key": "˝", "characters": "\u02DD" }, + {"key": "`", "characters": "\u0060" }, + {"key": "˜", "characters": "\u02DC" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "♦", "characters": "\u2666" }, + {"key": "♦", "characters": "\u2666" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "ⅆ", "characters": "\u2146" }, + {"key": "ϝ", "characters": "\u03DD" }, + {"key": "⋲", "characters": "\u22F2" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "⋇", "characters": "\u22C7" }, + {"key": "⋇", "characters": "\u22C7" }, + {"key": "Ђ", "characters": "\u0402" }, + {"key": "ђ", "characters": "\u0452" }, + {"key": "⌞", "characters": "\u231E" }, + {"key": "⌍", "characters": "\u230D" }, + {"key": "$", "characters": "\u0024" }, + {"key": "𝔻", "characters": "\uD835\uDD3B" }, + {"key": "𝕕", "characters": "\uD835\uDD55" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "˙", "characters": "\u02D9" }, + {"key": "⃜", "characters": "\u20DC" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "≑", "characters": "\u2251" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "∸", "characters": "\u2238" }, + {"key": "∔", "characters": "\u2214" }, + {"key": "⊡", "characters": "\u22A1" }, + {"key": "⌆", "characters": "\u2306" }, + {"key": "∯", "characters": "\u222F" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "⫤", "characters": "\u2AE4" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "⟹", "characters": "\u27F9" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⊨", "characters": "\u22A8" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⤓", "characters": "\u2913" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "⇵", "characters": "\u21F5" }, + {"key": "̑", "characters": "\u0311" }, + {"key": "⇊", "characters": "\u21CA" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "⥐", "characters": "\u2950" }, + {"key": "⥞", "characters": "\u295E" }, + {"key": "⥖", "characters": "\u2956" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "⥟", "characters": "\u295F" }, + {"key": "⥗", "characters": "\u2957" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "↧", "characters": "\u21A7" }, + {"key": "⊤", "characters": "\u22A4" }, + {"key": "⤐", "characters": "\u2910" }, + {"key": "⌟", "characters": "\u231F" }, + {"key": "⌌", "characters": "\u230C" }, + {"key": "𝒟", "characters": "\uD835\uDC9F" }, + {"key": "𝒹", "characters": "\uD835\uDCB9" }, + {"key": "Ѕ", "characters": "\u0405" }, + {"key": "ѕ", "characters": "\u0455" }, + {"key": "⧶", "characters": "\u29F6" }, + {"key": "Đ", "characters": "\u0110" }, + {"key": "đ", "characters": "\u0111" }, + {"key": "⋱", "characters": "\u22F1" }, + {"key": "▿", "characters": "\u25BF" }, + {"key": "▾", "characters": "\u25BE" }, + {"key": "⇵", "characters": "\u21F5" }, + {"key": "⥯", "characters": "\u296F" }, + {"key": "⦦", "characters": "\u29A6" }, + {"key": "Џ", "characters": "\u040F" }, + {"key": "џ", "characters": "\u045F" }, + {"key": "⟿", "characters": "\u27FF" }, + {"key": "É", "characters": "\u00C9" }, + {"key": "É", "characters": "\u00C9" }, + {"key": "é", "characters": "\u00E9" }, + {"key": "é", "characters": "\u00E9" }, + {"key": "⩮", "characters": "\u2A6E" }, + {"key": "Ě", "characters": "\u011A" }, + {"key": "ě", "characters": "\u011B" }, + {"key": "Ê", "characters": "\u00CA" }, + {"key": "Ê", "characters": "\u00CA" }, + {"key": "ê", "characters": "\u00EA" }, + {"key": "ê", "characters": "\u00EA" }, + {"key": "≖", "characters": "\u2256" }, + {"key": "≕", "characters": "\u2255" }, + {"key": "Э", "characters": "\u042D" }, + {"key": "э", "characters": "\u044D" }, + {"key": "⩷", "characters": "\u2A77" }, + {"key": "Ė", "characters": "\u0116" }, + {"key": "ė", "characters": "\u0117" }, + {"key": "≑", "characters": "\u2251" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "≒", "characters": "\u2252" }, + {"key": "𝔈", "characters": "\uD835\uDD08" }, + {"key": "𝔢", "characters": "\uD835\uDD22" }, + {"key": "⪚", "characters": "\u2A9A" }, + {"key": "È", "characters": "\u00C8" }, + {"key": "È", "characters": "\u00C8" }, + {"key": "è", "characters": "\u00E8" }, + {"key": "è", "characters": "\u00E8" }, + {"key": "⪖", "characters": "\u2A96" }, + {"key": "⪘", "characters": "\u2A98" }, + {"key": "⪙", "characters": "\u2A99" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⏧", "characters": "\u23E7" }, + {"key": "ℓ", "characters": "\u2113" }, + {"key": "⪕", "characters": "\u2A95" }, + {"key": "⪗", "characters": "\u2A97" }, + {"key": "Ē", "characters": "\u0112" }, + {"key": "ē", "characters": "\u0113" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "◻", "characters": "\u25FB" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "▫", "characters": "\u25AB" }, + {"key": " ", "characters": "\u2004" }, + {"key": " ", "characters": "\u2005" }, + {"key": " ", "characters": "\u2003" }, + {"key": "Ŋ", "characters": "\u014A" }, + {"key": "ŋ", "characters": "\u014B" }, + {"key": " ", "characters": "\u2002" }, + {"key": "Ę", "characters": "\u0118" }, + {"key": "ę", "characters": "\u0119" }, + {"key": "𝔼", "characters": "\uD835\uDD3C" }, + {"key": "𝕖", "characters": "\uD835\uDD56" }, + {"key": "⋕", "characters": "\u22D5" }, + {"key": "⧣", "characters": "\u29E3" }, + {"key": "⩱", "characters": "\u2A71" }, + {"key": "ε", "characters": "\u03B5" }, + {"key": "Ε", "characters": "\u0395" }, + {"key": "ε", "characters": "\u03B5" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "≖", "characters": "\u2256" }, + {"key": "≕", "characters": "\u2255" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "⪖", "characters": "\u2A96" }, + {"key": "⪕", "characters": "\u2A95" }, + {"key": "⩵", "characters": "\u2A75" }, + {"key": "=", "characters": "\u003D" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "≟", "characters": "\u225F" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "≡", "characters": "\u2261" }, + {"key": "⩸", "characters": "\u2A78" }, + {"key": "⧥", "characters": "\u29E5" }, + {"key": "⥱", "characters": "\u2971" }, + {"key": "≓", "characters": "\u2253" }, + {"key": "ℯ", "characters": "\u212F" }, + {"key": "ℰ", "characters": "\u2130" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "⩳", "characters": "\u2A73" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "Η", "characters": "\u0397" }, + {"key": "η", "characters": "\u03B7" }, + {"key": "Ð", "characters": "\u00D0" }, + {"key": "Ð", "characters": "\u00D0" }, + {"key": "ð", "characters": "\u00F0" }, + {"key": "ð", "characters": "\u00F0" }, + {"key": "Ë", "characters": "\u00CB" }, + {"key": "Ë", "characters": "\u00CB" }, + {"key": "ë", "characters": "\u00EB" }, + {"key": "ë", "characters": "\u00EB" }, + {"key": "€", "characters": "\u20AC" }, + {"key": "!", "characters": "\u0021" }, + {"key": "∃", "characters": "\u2203" }, + {"key": "∃", "characters": "\u2203" }, + {"key": "ℰ", "characters": "\u2130" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "≒", "characters": "\u2252" }, + {"key": "Ф", "characters": "\u0424" }, + {"key": "ф", "characters": "\u0444" }, + {"key": "♀", "characters": "\u2640" }, + {"key": "ffi", "characters": "\uFB03" }, + {"key": "ff", "characters": "\uFB00" }, + {"key": "ffl", "characters": "\uFB04" }, + {"key": "𝔉", "characters": "\uD835\uDD09" }, + {"key": "𝔣", "characters": "\uD835\uDD23" }, + {"key": "fi", "characters": "\uFB01" }, + {"key": "◼", "characters": "\u25FC" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "fj", "characters": "\u0066\u006A" }, + {"key": "♭", "characters": "\u266D" }, + {"key": "fl", "characters": "\uFB02" }, + {"key": "▱", "characters": "\u25B1" }, + {"key": "ƒ", "characters": "\u0192" }, + {"key": "𝔽", "characters": "\uD835\uDD3D" }, + {"key": "𝕗", "characters": "\uD835\uDD57" }, + {"key": "∀", "characters": "\u2200" }, + {"key": "∀", "characters": "\u2200" }, + {"key": "⋔", "characters": "\u22D4" }, + {"key": "⫙", "characters": "\u2AD9" }, + {"key": "ℱ", "characters": "\u2131" }, + {"key": "⨍", "characters": "\u2A0D" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "⅓", "characters": "\u2153" }, + {"key": "¼", "characters": "\u00BC" }, + {"key": "¼", "characters": "\u00BC" }, + {"key": "⅕", "characters": "\u2155" }, + {"key": "⅙", "characters": "\u2159" }, + {"key": "⅛", "characters": "\u215B" }, + {"key": "⅔", "characters": "\u2154" }, + {"key": "⅖", "characters": "\u2156" }, + {"key": "¾", "characters": "\u00BE" }, + {"key": "¾", "characters": "\u00BE" }, + {"key": "⅗", "characters": "\u2157" }, + {"key": "⅜", "characters": "\u215C" }, + {"key": "⅘", "characters": "\u2158" }, + {"key": "⅚", "characters": "\u215A" }, + {"key": "⅝", "characters": "\u215D" }, + {"key": "⅞", "characters": "\u215E" }, + {"key": "⁄", "characters": "\u2044" }, + {"key": "⌢", "characters": "\u2322" }, + {"key": "𝒻", "characters": "\uD835\uDCBB" }, + {"key": "ℱ", "characters": "\u2131" }, + {"key": "ǵ", "characters": "\u01F5" }, + {"key": "Γ", "characters": "\u0393" }, + {"key": "γ", "characters": "\u03B3" }, + {"key": "Ϝ", "characters": "\u03DC" }, + {"key": "ϝ", "characters": "\u03DD" }, + {"key": "⪆", "characters": "\u2A86" }, + {"key": "Ğ", "characters": "\u011E" }, + {"key": "ğ", "characters": "\u011F" }, + {"key": "Ģ", "characters": "\u0122" }, + {"key": "Ĝ", "characters": "\u011C" }, + {"key": "ĝ", "characters": "\u011D" }, + {"key": "Г", "characters": "\u0413" }, + {"key": "г", "characters": "\u0433" }, + {"key": "Ġ", "characters": "\u0120" }, + {"key": "ġ", "characters": "\u0121" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⪌", "characters": "\u2A8C" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "⪩", "characters": "\u2AA9" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "⪀", "characters": "\u2A80" }, + {"key": "⪂", "characters": "\u2A82" }, + {"key": "⪄", "characters": "\u2A84" }, + {"key": "⋛︀", "characters": "\u22DB\uFE00" }, + {"key": "⪔", "characters": "\u2A94" }, + {"key": "𝔊", "characters": "\uD835\uDD0A" }, + {"key": "𝔤", "characters": "\uD835\uDD24" }, + {"key": "≫", "characters": "\u226B" }, + {"key": "⋙", "characters": "\u22D9" }, + {"key": "⋙", "characters": "\u22D9" }, + {"key": "ℷ", "characters": "\u2137" }, + {"key": "Ѓ", "characters": "\u0403" }, + {"key": "ѓ", "characters": "\u0453" }, + {"key": "⪥", "characters": "\u2AA5" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "⪒", "characters": "\u2A92" }, + {"key": "⪤", "characters": "\u2AA4" }, + {"key": "⪊", "characters": "\u2A8A" }, + {"key": "⪊", "characters": "\u2A8A" }, + {"key": "⪈", "characters": "\u2A88" }, + {"key": "≩", "characters": "\u2269" }, + {"key": "⪈", "characters": "\u2A88" }, + {"key": "≩", "characters": "\u2269" }, + {"key": "⋧", "characters": "\u22E7" }, + {"key": "𝔾", "characters": "\uD835\uDD3E" }, + {"key": "𝕘", "characters": "\uD835\uDD58" }, + {"key": "`", "characters": "\u0060" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⪢", "characters": "\u2AA2" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "≳", "characters": "\u2273" }, + {"key": "𝒢", "characters": "\uD835\uDCA2" }, + {"key": "ℊ", "characters": "\u210A" }, + {"key": "≳", "characters": "\u2273" }, + {"key": "⪎", "characters": "\u2A8E" }, + {"key": "⪐", "characters": "\u2A90" }, + {"key": "⪧", "characters": "\u2AA7" }, + {"key": "⩺", "characters": "\u2A7A" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": "≫", "characters": "\u226B" }, + {"key": "⋗", "characters": "\u22D7" }, + {"key": "⦕", "characters": "\u2995" }, + {"key": "⩼", "characters": "\u2A7C" }, + {"key": "⪆", "characters": "\u2A86" }, + {"key": "⥸", "characters": "\u2978" }, + {"key": "⋗", "characters": "\u22D7" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "⪌", "characters": "\u2A8C" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "≳", "characters": "\u2273" }, + {"key": "≩︀", "characters": "\u2269\uFE00" }, + {"key": "≩︀", "characters": "\u2269\uFE00" }, + {"key": "ˇ", "characters": "\u02C7" }, + {"key": " ", "characters": "\u200A" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "ℋ", "characters": "\u210B" }, + {"key": "Ъ", "characters": "\u042A" }, + {"key": "ъ", "characters": "\u044A" }, + {"key": "⥈", "characters": "\u2948" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "↭", "characters": "\u21AD" }, + {"key": "^", "characters": "\u005E" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "Ĥ", "characters": "\u0124" }, + {"key": "ĥ", "characters": "\u0125" }, + {"key": "♥", "characters": "\u2665" }, + {"key": "♥", "characters": "\u2665" }, + {"key": "…", "characters": "\u2026" }, + {"key": "⊹", "characters": "\u22B9" }, + {"key": "𝔥", "characters": "\uD835\uDD25" }, + {"key": "ℌ", "characters": "\u210C" }, + {"key": "ℋ", "characters": "\u210B" }, + {"key": "⤥", "characters": "\u2925" }, + {"key": "⤦", "characters": "\u2926" }, + {"key": "⇿", "characters": "\u21FF" }, + {"key": "∻", "characters": "\u223B" }, + {"key": "↩", "characters": "\u21A9" }, + {"key": "↪", "characters": "\u21AA" }, + {"key": "𝕙", "characters": "\uD835\uDD59" }, + {"key": "ℍ", "characters": "\u210D" }, + {"key": "―", "characters": "\u2015" }, + {"key": "─", "characters": "\u2500" }, + {"key": "𝒽", "characters": "\uD835\uDCBD" }, + {"key": "ℋ", "characters": "\u210B" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "Ħ", "characters": "\u0126" }, + {"key": "ħ", "characters": "\u0127" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "⁃", "characters": "\u2043" }, + {"key": "‐", "characters": "\u2010" }, + {"key": "Í", "characters": "\u00CD" }, + {"key": "Í", "characters": "\u00CD" }, + {"key": "í", "characters": "\u00ED" }, + {"key": "í", "characters": "\u00ED" }, + {"key": "⁣", "characters": "\u2063" }, + {"key": "Î", "characters": "\u00CE" }, + {"key": "Î", "characters": "\u00CE" }, + {"key": "î", "characters": "\u00EE" }, + {"key": "î", "characters": "\u00EE" }, + {"key": "И", "characters": "\u0418" }, + {"key": "и", "characters": "\u0438" }, + {"key": "İ", "characters": "\u0130" }, + {"key": "Е", "characters": "\u0415" }, + {"key": "е", "characters": "\u0435" }, + {"key": "¡", "characters": "\u00A1" }, + {"key": "¡", "characters": "\u00A1" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "𝔦", "characters": "\uD835\uDD26" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "Ì", "characters": "\u00CC" }, + {"key": "Ì", "characters": "\u00CC" }, + {"key": "ì", "characters": "\u00EC" }, + {"key": "ì", "characters": "\u00EC" }, + {"key": "ⅈ", "characters": "\u2148" }, + {"key": "⨌", "characters": "\u2A0C" }, + {"key": "∭", "characters": "\u222D" }, + {"key": "⧜", "characters": "\u29DC" }, + {"key": "℩", "characters": "\u2129" }, + {"key": "IJ", "characters": "\u0132" }, + {"key": "ij", "characters": "\u0133" }, + {"key": "Ī", "characters": "\u012A" }, + {"key": "ī", "characters": "\u012B" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "ⅈ", "characters": "\u2148" }, + {"key": "ℐ", "characters": "\u2110" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "ı", "characters": "\u0131" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "⊷", "characters": "\u22B7" }, + {"key": "Ƶ", "characters": "\u01B5" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "℅", "characters": "\u2105" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "∞", "characters": "\u221E" }, + {"key": "⧝", "characters": "\u29DD" }, + {"key": "ı", "characters": "\u0131" }, + {"key": "⊺", "characters": "\u22BA" }, + {"key": "∫", "characters": "\u222B" }, + {"key": "∬", "characters": "\u222C" }, + {"key": "ℤ", "characters": "\u2124" }, + {"key": "∫", "characters": "\u222B" }, + {"key": "⊺", "characters": "\u22BA" }, + {"key": "⋂", "characters": "\u22C2" }, + {"key": "⨗", "characters": "\u2A17" }, + {"key": "⨼", "characters": "\u2A3C" }, + {"key": "⁣", "characters": "\u2063" }, + {"key": "⁢", "characters": "\u2062" }, + {"key": "Ё", "characters": "\u0401" }, + {"key": "ё", "characters": "\u0451" }, + {"key": "Į", "characters": "\u012E" }, + {"key": "į", "characters": "\u012F" }, + {"key": "𝕀", "characters": "\uD835\uDD40" }, + {"key": "𝕚", "characters": "\uD835\uDD5A" }, + {"key": "Ι", "characters": "\u0399" }, + {"key": "ι", "characters": "\u03B9" }, + {"key": "⨼", "characters": "\u2A3C" }, + {"key": "¿", "characters": "\u00BF" }, + {"key": "¿", "characters": "\u00BF" }, + {"key": "𝒾", "characters": "\uD835\uDCBE" }, + {"key": "ℐ", "characters": "\u2110" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⋵", "characters": "\u22F5" }, + {"key": "⋹", "characters": "\u22F9" }, + {"key": "⋴", "characters": "\u22F4" }, + {"key": "⋳", "characters": "\u22F3" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⁢", "characters": "\u2062" }, + {"key": "Ĩ", "characters": "\u0128" }, + {"key": "ĩ", "characters": "\u0129" }, + {"key": "І", "characters": "\u0406" }, + {"key": "і", "characters": "\u0456" }, + {"key": "Ï", "characters": "\u00CF" }, + {"key": "Ï", "characters": "\u00CF" }, + {"key": "ï", "characters": "\u00EF" }, + {"key": "ï", "characters": "\u00EF" }, + {"key": "Ĵ", "characters": "\u0134" }, + {"key": "ĵ", "characters": "\u0135" }, + {"key": "Й", "characters": "\u0419" }, + {"key": "й", "characters": "\u0439" }, + {"key": "𝔍", "characters": "\uD835\uDD0D" }, + {"key": "𝔧", "characters": "\uD835\uDD27" }, + {"key": "ȷ", "characters": "\u0237" }, + {"key": "𝕁", "characters": "\uD835\uDD41" }, + {"key": "𝕛", "characters": "\uD835\uDD5B" }, + {"key": "𝒥", "characters": "\uD835\uDCA5" }, + {"key": "𝒿", "characters": "\uD835\uDCBF" }, + {"key": "Ј", "characters": "\u0408" }, + {"key": "ј", "characters": "\u0458" }, + {"key": "Є", "characters": "\u0404" }, + {"key": "є", "characters": "\u0454" }, + {"key": "Κ", "characters": "\u039A" }, + {"key": "κ", "characters": "\u03BA" }, + {"key": "ϰ", "characters": "\u03F0" }, + {"key": "Ķ", "characters": "\u0136" }, + {"key": "ķ", "characters": "\u0137" }, + {"key": "К", "characters": "\u041A" }, + {"key": "к", "characters": "\u043A" }, + {"key": "𝔎", "characters": "\uD835\uDD0E" }, + {"key": "𝔨", "characters": "\uD835\uDD28" }, + {"key": "ĸ", "characters": "\u0138" }, + {"key": "Х", "characters": "\u0425" }, + {"key": "х", "characters": "\u0445" }, + {"key": "Ќ", "characters": "\u040C" }, + {"key": "ќ", "characters": "\u045C" }, + {"key": "𝕂", "characters": "\uD835\uDD42" }, + {"key": "𝕜", "characters": "\uD835\uDD5C" }, + {"key": "𝒦", "characters": "\uD835\uDCA6" }, + {"key": "𝓀", "characters": "\uD835\uDCC0" }, + {"key": "⇚", "characters": "\u21DA" }, + {"key": "Ĺ", "characters": "\u0139" }, + {"key": "ĺ", "characters": "\u013A" }, + {"key": "⦴", "characters": "\u29B4" }, + {"key": "ℒ", "characters": "\u2112" }, + {"key": "Λ", "characters": "\u039B" }, + {"key": "λ", "characters": "\u03BB" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⟪", "characters": "\u27EA" }, + {"key": "⦑", "characters": "\u2991" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⪅", "characters": "\u2A85" }, + {"key": "ℒ", "characters": "\u2112" }, + {"key": "«", "characters": "\u00AB" }, + {"key": "«", "characters": "\u00AB" }, + {"key": "⇤", "characters": "\u21E4" }, + {"key": "⤟", "characters": "\u291F" }, + {"key": "←", "characters": "\u2190" }, + {"key": "↞", "characters": "\u219E" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⤝", "characters": "\u291D" }, + {"key": "↩", "characters": "\u21A9" }, + {"key": "↫", "characters": "\u21AB" }, + {"key": "⤹", "characters": "\u2939" }, + {"key": "⥳", "characters": "\u2973" }, + {"key": "↢", "characters": "\u21A2" }, + {"key": "⤙", "characters": "\u2919" }, + {"key": "⤛", "characters": "\u291B" }, + {"key": "⪫", "characters": "\u2AAB" }, + {"key": "⪭", "characters": "\u2AAD" }, + {"key": "⪭︀", "characters": "\u2AAD\uFE00" }, + {"key": "⤌", "characters": "\u290C" }, + {"key": "⤎", "characters": "\u290E" }, + {"key": "❲", "characters": "\u2772" }, + {"key": "{", "characters": "\u007B" }, + {"key": "[", "characters": "\u005B" }, + {"key": "⦋", "characters": "\u298B" }, + {"key": "⦏", "characters": "\u298F" }, + {"key": "⦍", "characters": "\u298D" }, + {"key": "Ľ", "characters": "\u013D" }, + {"key": "ľ", "characters": "\u013E" }, + {"key": "Ļ", "characters": "\u013B" }, + {"key": "ļ", "characters": "\u013C" }, + {"key": "⌈", "characters": "\u2308" }, + {"key": "{", "characters": "\u007B" }, + {"key": "Л", "characters": "\u041B" }, + {"key": "л", "characters": "\u043B" }, + {"key": "⤶", "characters": "\u2936" }, + {"key": "“", "characters": "\u201C" }, + {"key": "„", "characters": "\u201E" }, + {"key": "⥧", "characters": "\u2967" }, + {"key": "⥋", "characters": "\u294B" }, + {"key": "↲", "characters": "\u21B2" }, + {"key": "≤", "characters": "\u2264" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⇤", "characters": "\u21E4" }, + {"key": "←", "characters": "\u2190" }, + {"key": "←", "characters": "\u2190" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "↢", "characters": "\u21A2" }, + {"key": "⌈", "characters": "\u2308" }, + {"key": "⟦", "characters": "\u27E6" }, + {"key": "⥡", "characters": "\u2961" }, + {"key": "⥙", "characters": "\u2959" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⌊", "characters": "\u230A" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⇇", "characters": "\u21C7" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "↭", "characters": "\u21AD" }, + {"key": "⥎", "characters": "\u294E" }, + {"key": "↤", "characters": "\u21A4" }, + {"key": "⊣", "characters": "\u22A3" }, + {"key": "⥚", "characters": "\u295A" }, + {"key": "⋋", "characters": "\u22CB" }, + {"key": "⧏", "characters": "\u29CF" }, + {"key": "⊲", "characters": "\u22B2" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "⥑", "characters": "\u2951" }, + {"key": "⥠", "characters": "\u2960" }, + {"key": "⥘", "characters": "\u2958" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "⥒", "characters": "\u2952" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⪋", "characters": "\u2A8B" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "≤", "characters": "\u2264" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "⪨", "characters": "\u2AA8" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "⩿", "characters": "\u2A7F" }, + {"key": "⪁", "characters": "\u2A81" }, + {"key": "⪃", "characters": "\u2A83" }, + {"key": "⋚︀", "characters": "\u22DA\uFE00" }, + {"key": "⪓", "characters": "\u2A93" }, + {"key": "⪅", "characters": "\u2A85" }, + {"key": "⋖", "characters": "\u22D6" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "⪋", "characters": "\u2A8B" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "≶", "characters": "\u2276" }, + {"key": "≶", "characters": "\u2276" }, + {"key": "⪡", "characters": "\u2AA1" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⥼", "characters": "\u297C" }, + {"key": "⌊", "characters": "\u230A" }, + {"key": "𝔏", "characters": "\uD835\uDD0F" }, + {"key": "𝔩", "characters": "\uD835\uDD29" }, + {"key": "≶", "characters": "\u2276" }, + {"key": "⪑", "characters": "\u2A91" }, + {"key": "⥢", "characters": "\u2962" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⥪", "characters": "\u296A" }, + {"key": "▄", "characters": "\u2584" }, + {"key": "Љ", "characters": "\u0409" }, + {"key": "љ", "characters": "\u0459" }, + {"key": "⇇", "characters": "\u21C7" }, + {"key": "≪", "characters": "\u226A" }, + {"key": "⋘", "characters": "\u22D8" }, + {"key": "⌞", "characters": "\u231E" }, + {"key": "⇚", "characters": "\u21DA" }, + {"key": "⥫", "characters": "\u296B" }, + {"key": "◺", "characters": "\u25FA" }, + {"key": "Ŀ", "characters": "\u013F" }, + {"key": "ŀ", "characters": "\u0140" }, + {"key": "⎰", "characters": "\u23B0" }, + {"key": "⎰", "characters": "\u23B0" }, + {"key": "⪉", "characters": "\u2A89" }, + {"key": "⪉", "characters": "\u2A89" }, + {"key": "⪇", "characters": "\u2A87" }, + {"key": "≨", "characters": "\u2268" }, + {"key": "⪇", "characters": "\u2A87" }, + {"key": "≨", "characters": "\u2268" }, + {"key": "⋦", "characters": "\u22E6" }, + {"key": "⟬", "characters": "\u27EC" }, + {"key": "⇽", "characters": "\u21FD" }, + {"key": "⟦", "characters": "\u27E6" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "⟼", "characters": "\u27FC" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟹", "characters": "\u27F9" }, + {"key": "↫", "characters": "\u21AB" }, + {"key": "↬", "characters": "\u21AC" }, + {"key": "⦅", "characters": "\u2985" }, + {"key": "𝕃", "characters": "\uD835\uDD43" }, + {"key": "𝕝", "characters": "\uD835\uDD5D" }, + {"key": "⨭", "characters": "\u2A2D" }, + {"key": "⨴", "characters": "\u2A34" }, + {"key": "∗", "characters": "\u2217" }, + {"key": "_", "characters": "\u005F" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "◊", "characters": "\u25CA" }, + {"key": "◊", "characters": "\u25CA" }, + {"key": "⧫", "characters": "\u29EB" }, + {"key": "(", "characters": "\u0028" }, + {"key": "⦓", "characters": "\u2993" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "⌟", "characters": "\u231F" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "⥭", "characters": "\u296D" }, + {"key": "‎", "characters": "\u200E" }, + {"key": "⊿", "characters": "\u22BF" }, + {"key": "‹", "characters": "\u2039" }, + {"key": "𝓁", "characters": "\uD835\uDCC1" }, + {"key": "ℒ", "characters": "\u2112" }, + {"key": "↰", "characters": "\u21B0" }, + {"key": "↰", "characters": "\u21B0" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⪍", "characters": "\u2A8D" }, + {"key": "⪏", "characters": "\u2A8F" }, + {"key": "[", "characters": "\u005B" }, + {"key": "‘", "characters": "\u2018" }, + {"key": "‚", "characters": "\u201A" }, + {"key": "Ł", "characters": "\u0141" }, + {"key": "ł", "characters": "\u0142" }, + {"key": "⪦", "characters": "\u2AA6" }, + {"key": "⩹", "characters": "\u2A79" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "≪", "characters": "\u226A" }, + {"key": "⋖", "characters": "\u22D6" }, + {"key": "⋋", "characters": "\u22CB" }, + {"key": "⋉", "characters": "\u22C9" }, + {"key": "⥶", "characters": "\u2976" }, + {"key": "⩻", "characters": "\u2A7B" }, + {"key": "◃", "characters": "\u25C3" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "◂", "characters": "\u25C2" }, + {"key": "⦖", "characters": "\u2996" }, + {"key": "⥊", "characters": "\u294A" }, + {"key": "⥦", "characters": "\u2966" }, + {"key": "≨︀", "characters": "\u2268\uFE00" }, + {"key": "≨︀", "characters": "\u2268\uFE00" }, + {"key": "¯", "characters": "\u00AF" }, + {"key": "¯", "characters": "\u00AF" }, + {"key": "♂", "characters": "\u2642" }, + {"key": "✠", "characters": "\u2720" }, + {"key": "✠", "characters": "\u2720" }, + {"key": "⤅", "characters": "\u2905" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "↧", "characters": "\u21A7" }, + {"key": "↤", "characters": "\u21A4" }, + {"key": "↥", "characters": "\u21A5" }, + {"key": "▮", "characters": "\u25AE" }, + {"key": "⨩", "characters": "\u2A29" }, + {"key": "М", "characters": "\u041C" }, + {"key": "м", "characters": "\u043C" }, + {"key": "—", "characters": "\u2014" }, + {"key": "∺", "characters": "\u223A" }, + {"key": "∡", "characters": "\u2221" }, + {"key": " ", "characters": "\u205F" }, + {"key": "ℳ", "characters": "\u2133" }, + {"key": "𝔐", "characters": "\uD835\uDD10" }, + {"key": "𝔪", "characters": "\uD835\uDD2A" }, + {"key": "℧", "characters": "\u2127" }, + {"key": "µ", "characters": "\u00B5" }, + {"key": "µ", "characters": "\u00B5" }, + {"key": "*", "characters": "\u002A" }, + {"key": "⫰", "characters": "\u2AF0" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "⊟", "characters": "\u229F" }, + {"key": "−", "characters": "\u2212" }, + {"key": "∸", "characters": "\u2238" }, + {"key": "⨪", "characters": "\u2A2A" }, + {"key": "∓", "characters": "\u2213" }, + {"key": "⫛", "characters": "\u2ADB" }, + {"key": "…", "characters": "\u2026" }, + {"key": "∓", "characters": "\u2213" }, + {"key": "⊧", "characters": "\u22A7" }, + {"key": "𝕄", "characters": "\uD835\uDD44" }, + {"key": "𝕞", "characters": "\uD835\uDD5E" }, + {"key": "∓", "characters": "\u2213" }, + {"key": "𝓂", "characters": "\uD835\uDCC2" }, + {"key": "ℳ", "characters": "\u2133" }, + {"key": "∾", "characters": "\u223E" }, + {"key": "Μ", "characters": "\u039C" }, + {"key": "μ", "characters": "\u03BC" }, + {"key": "⊸", "characters": "\u22B8" }, + {"key": "⊸", "characters": "\u22B8" }, + {"key": "∇", "characters": "\u2207" }, + {"key": "Ń", "characters": "\u0143" }, + {"key": "ń", "characters": "\u0144" }, + {"key": "∠⃒", "characters": "\u2220\u20D2" }, + {"key": "≉", "characters": "\u2249" }, + {"key": "⩰̸", "characters": "\u2A70\u0338" }, + {"key": "≋̸", "characters": "\u224B\u0338" }, + {"key": "ʼn", "characters": "\u0149" }, + {"key": "≉", "characters": "\u2249" }, + {"key": "♮", "characters": "\u266E" }, + {"key": "ℕ", "characters": "\u2115" }, + {"key": "♮", "characters": "\u266E" }, + {"key": " ", "characters": "\u00A0" }, + {"key": " ", "characters": "\u00A0" }, + {"key": "≎̸", "characters": "\u224E\u0338" }, + {"key": "≏̸", "characters": "\u224F\u0338" }, + {"key": "⩃", "characters": "\u2A43" }, + {"key": "Ň", "characters": "\u0147" }, + {"key": "ň", "characters": "\u0148" }, + {"key": "Ņ", "characters": "\u0145" }, + {"key": "ņ", "characters": "\u0146" }, + {"key": "≇", "characters": "\u2247" }, + {"key": "⩭̸", "characters": "\u2A6D\u0338" }, + {"key": "⩂", "characters": "\u2A42" }, + {"key": "Н", "characters": "\u041D" }, + {"key": "н", "characters": "\u043D" }, + {"key": "–", "characters": "\u2013" }, + {"key": "⤤", "characters": "\u2924" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "⇗", "characters": "\u21D7" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "≠", "characters": "\u2260" }, + {"key": "≐̸", "characters": "\u2250\u0338" }, + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "≢", "characters": "\u2262" }, + {"key": "⤨", "characters": "\u2928" }, + {"key": "≂̸", "characters": "\u2242\u0338" }, + {"key": "≫", "characters": "\u226B" }, + {"key": "≪", "characters": "\u226A" }, + {"key": " ", "characters": "\u000A" }, + {"key": "∄", "characters": "\u2204" }, + {"key": "∄", "characters": "\u2204" }, + {"key": "𝔑", "characters": "\uD835\uDD11" }, + {"key": "𝔫", "characters": "\uD835\uDD2B" }, + {"key": "≧̸", "characters": "\u2267\u0338" }, + {"key": "≱", "characters": "\u2271" }, + {"key": "≱", "characters": "\u2271" }, + {"key": "≧̸", "characters": "\u2267\u0338" }, + {"key": "⩾̸", "characters": "\u2A7E\u0338" }, + {"key": "⩾̸", "characters": "\u2A7E\u0338" }, + {"key": "⋙̸", "characters": "\u22D9\u0338" }, + {"key": "≵", "characters": "\u2275" }, + {"key": "≫⃒", "characters": "\u226B\u20D2" }, + {"key": "≯", "characters": "\u226F" }, + {"key": "≯", "characters": "\u226F" }, + {"key": "≫̸", "characters": "\u226B\u0338" }, + {"key": "↮", "characters": "\u21AE" }, + {"key": "⇎", "characters": "\u21CE" }, + {"key": "⫲", "characters": "\u2AF2" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "⋼", "characters": "\u22FC" }, + {"key": "⋺", "characters": "\u22FA" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "Њ", "characters": "\u040A" }, + {"key": "њ", "characters": "\u045A" }, + {"key": "↚", "characters": "\u219A" }, + {"key": "⇍", "characters": "\u21CD" }, + {"key": "‥", "characters": "\u2025" }, + {"key": "≦̸", "characters": "\u2266\u0338" }, + {"key": "≰", "characters": "\u2270" }, + {"key": "↚", "characters": "\u219A" }, + {"key": "⇍", "characters": "\u21CD" }, + {"key": "↮", "characters": "\u21AE" }, + {"key": "⇎", "characters": "\u21CE" }, + {"key": "≰", "characters": "\u2270" }, + {"key": "≦̸", "characters": "\u2266\u0338" }, + {"key": "⩽̸", "characters": "\u2A7D\u0338" }, + {"key": "⩽̸", "characters": "\u2A7D\u0338" }, + {"key": "≮", "characters": "\u226E" }, + {"key": "⋘̸", "characters": "\u22D8\u0338" }, + {"key": "≴", "characters": "\u2274" }, + {"key": "≪⃒", "characters": "\u226A\u20D2" }, + {"key": "≮", "characters": "\u226E" }, + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + {"key": "≪̸", "characters": "\u226A\u0338" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "⁠", "characters": "\u2060" }, + {"key": " ", "characters": "\u00A0" }, + {"key": "𝕟", "characters": "\uD835\uDD5F" }, + {"key": "ℕ", "characters": "\u2115" }, + {"key": "⫬", "characters": "\u2AEC" }, + {"key": "¬", "characters": "\u00AC" }, + {"key": "¬", "characters": "\u00AC" }, + {"key": "≢", "characters": "\u2262" }, + {"key": "≭", "characters": "\u226D" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "∉", "characters": "\u2209" }, + {"key": "≠", "characters": "\u2260" }, + {"key": "≂̸", "characters": "\u2242\u0338" }, + {"key": "∄", "characters": "\u2204" }, + {"key": "≯", "characters": "\u226F" }, + {"key": "≱", "characters": "\u2271" }, + {"key": "≧̸", "characters": "\u2267\u0338" }, + {"key": "≫̸", "characters": "\u226B\u0338" }, + {"key": "≹", "characters": "\u2279" }, + {"key": "⩾̸", "characters": "\u2A7E\u0338" }, + {"key": "≵", "characters": "\u2275" }, + {"key": "≎̸", "characters": "\u224E\u0338" }, + {"key": "≏̸", "characters": "\u224F\u0338" }, + {"key": "∉", "characters": "\u2209" }, + {"key": "⋵̸", "characters": "\u22F5\u0338" }, + {"key": "⋹̸", "characters": "\u22F9\u0338" }, + {"key": "∉", "characters": "\u2209" }, + {"key": "⋷", "characters": "\u22F7" }, + {"key": "⋶", "characters": "\u22F6" }, + {"key": "⧏̸", "characters": "\u29CF\u0338" }, + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + {"key": "≮", "characters": "\u226E" }, + {"key": "≰", "characters": "\u2270" }, + {"key": "≸", "characters": "\u2278" }, + {"key": "≪̸", "characters": "\u226A\u0338" }, + {"key": "⩽̸", "characters": "\u2A7D\u0338" }, + {"key": "≴", "characters": "\u2274" }, + {"key": "⪢̸", "characters": "\u2AA2\u0338" }, + {"key": "⪡̸", "characters": "\u2AA1\u0338" }, + {"key": "∌", "characters": "\u220C" }, + {"key": "∌", "characters": "\u220C" }, + {"key": "⋾", "characters": "\u22FE" }, + {"key": "⋽", "characters": "\u22FD" }, + {"key": "⊀", "characters": "\u2280" }, + {"key": "⪯̸", "characters": "\u2AAF\u0338" }, + {"key": "⋠", "characters": "\u22E0" }, + {"key": "∌", "characters": "\u220C" }, + {"key": "⧐̸", "characters": "\u29D0\u0338" }, + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + {"key": "⊏̸", "characters": "\u228F\u0338" }, + {"key": "⋢", "characters": "\u22E2" }, + {"key": "⊐̸", "characters": "\u2290\u0338" }, + {"key": "⋣", "characters": "\u22E3" }, + {"key": "⊂⃒", "characters": "\u2282\u20D2" }, + {"key": "⊈", "characters": "\u2288" }, + {"key": "⊁", "characters": "\u2281" }, + {"key": "⪰̸", "characters": "\u2AB0\u0338" }, + {"key": "⋡", "characters": "\u22E1" }, + {"key": "≿̸", "characters": "\u227F\u0338" }, + {"key": "⊃⃒", "characters": "\u2283\u20D2" }, + {"key": "⊉", "characters": "\u2289" }, + {"key": "≁", "characters": "\u2241" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "≇", "characters": "\u2247" }, + {"key": "≉", "characters": "\u2249" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "⫽⃥", "characters": "\u2AFD\u20E5" }, + {"key": "∂̸", "characters": "\u2202\u0338" }, + {"key": "⨔", "characters": "\u2A14" }, + {"key": "⊀", "characters": "\u2280" }, + {"key": "⋠", "characters": "\u22E0" }, + {"key": "⊀", "characters": "\u2280" }, + {"key": "⪯̸", "characters": "\u2AAF\u0338" }, + {"key": "⪯̸", "characters": "\u2AAF\u0338" }, + {"key": "⤳̸", "characters": "\u2933\u0338" }, + {"key": "↛", "characters": "\u219B" }, + {"key": "⇏", "characters": "\u21CF" }, + {"key": "↝̸", "characters": "\u219D\u0338" }, + {"key": "↛", "characters": "\u219B" }, + {"key": "⇏", "characters": "\u21CF" }, + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + {"key": "⊁", "characters": "\u2281" }, + {"key": "⋡", "characters": "\u22E1" }, + {"key": "⪰̸", "characters": "\u2AB0\u0338" }, + {"key": "𝒩", "characters": "\uD835\uDCA9" }, + {"key": "𝓃", "characters": "\uD835\uDCC3" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "≁", "characters": "\u2241" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "⋢", "characters": "\u22E2" }, + {"key": "⋣", "characters": "\u22E3" }, + {"key": "⊄", "characters": "\u2284" }, + {"key": "⫅̸", "characters": "\u2AC5\u0338" }, + {"key": "⊈", "characters": "\u2288" }, + {"key": "⊂⃒", "characters": "\u2282\u20D2" }, + {"key": "⊈", "characters": "\u2288" }, + {"key": "⫅̸", "characters": "\u2AC5\u0338" }, + {"key": "⊁", "characters": "\u2281" }, + {"key": "⪰̸", "characters": "\u2AB0\u0338" }, + {"key": "⊅", "characters": "\u2285" }, + {"key": "⫆̸", "characters": "\u2AC6\u0338" }, + {"key": "⊉", "characters": "\u2289" }, + {"key": "⊃⃒", "characters": "\u2283\u20D2" }, + {"key": "⊉", "characters": "\u2289" }, + {"key": "⫆̸", "characters": "\u2AC6\u0338" }, + {"key": "≹", "characters": "\u2279" }, + {"key": "Ñ", "characters": "\u00D1" }, + {"key": "Ñ", "characters": "\u00D1" }, + {"key": "ñ", "characters": "\u00F1" }, + {"key": "ñ", "characters": "\u00F1" }, + {"key": "≸", "characters": "\u2278" }, + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + {"key": "Ν", "characters": "\u039D" }, + {"key": "ν", "characters": "\u03BD" }, + {"key": "#", "characters": "\u0023" }, + {"key": "№", "characters": "\u2116" }, + {"key": " ", "characters": "\u2007" }, + {"key": "≍⃒", "characters": "\u224D\u20D2" }, + {"key": "⊬", "characters": "\u22AC" }, + {"key": "⊭", "characters": "\u22AD" }, + {"key": "⊮", "characters": "\u22AE" }, + {"key": "⊯", "characters": "\u22AF" }, + {"key": "≥⃒", "characters": "\u2265\u20D2" }, + {"key": ">⃒", "characters": "\u003E\u20D2" }, + {"key": "⤄", "characters": "\u2904" }, + {"key": "⧞", "characters": "\u29DE" }, + {"key": "⤂", "characters": "\u2902" }, + {"key": "≤⃒", "characters": "\u2264\u20D2" }, + {"key": "<⃒", "characters": "\u003C\u20D2" }, + {"key": "⊴⃒", "characters": "\u22B4\u20D2" }, + {"key": "⤃", "characters": "\u2903" }, + {"key": "⊵⃒", "characters": "\u22B5\u20D2" }, + {"key": "∼⃒", "characters": "\u223C\u20D2" }, + {"key": "⤣", "characters": "\u2923" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "⇖", "characters": "\u21D6" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "⤧", "characters": "\u2927" }, + {"key": "Ó", "characters": "\u00D3" }, + {"key": "Ó", "characters": "\u00D3" }, + {"key": "ó", "characters": "\u00F3" }, + {"key": "ó", "characters": "\u00F3" }, + {"key": "⊛", "characters": "\u229B" }, + {"key": "Ô", "characters": "\u00D4" }, + {"key": "Ô", "characters": "\u00D4" }, + {"key": "ô", "characters": "\u00F4" }, + {"key": "ô", "characters": "\u00F4" }, + {"key": "⊚", "characters": "\u229A" }, + {"key": "О", "characters": "\u041E" }, + {"key": "о", "characters": "\u043E" }, + {"key": "⊝", "characters": "\u229D" }, + {"key": "Ő", "characters": "\u0150" }, + {"key": "ő", "characters": "\u0151" }, + {"key": "⨸", "characters": "\u2A38" }, + {"key": "⊙", "characters": "\u2299" }, + {"key": "⦼", "characters": "\u29BC" }, + {"key": "Œ", "characters": "\u0152" }, + {"key": "œ", "characters": "\u0153" }, + {"key": "⦿", "characters": "\u29BF" }, + {"key": "𝔒", "characters": "\uD835\uDD12" }, + {"key": "𝔬", "characters": "\uD835\uDD2C" }, + {"key": "˛", "characters": "\u02DB" }, + {"key": "Ò", "characters": "\u00D2" }, + {"key": "Ò", "characters": "\u00D2" }, + {"key": "ò", "characters": "\u00F2" }, + {"key": "ò", "characters": "\u00F2" }, + {"key": "⧁", "characters": "\u29C1" }, + {"key": "⦵", "characters": "\u29B5" }, + {"key": "Ω", "characters": "\u03A9" }, + {"key": "∮", "characters": "\u222E" }, + {"key": "↺", "characters": "\u21BA" }, + {"key": "⦾", "characters": "\u29BE" }, + {"key": "⦻", "characters": "\u29BB" }, + {"key": "‾", "characters": "\u203E" }, + {"key": "⧀", "characters": "\u29C0" }, + {"key": "Ō", "characters": "\u014C" }, + {"key": "ō", "characters": "\u014D" }, + {"key": "Ω", "characters": "\u03A9" }, + {"key": "ω", "characters": "\u03C9" }, + {"key": "Ο", "characters": "\u039F" }, + {"key": "ο", "characters": "\u03BF" }, + {"key": "⦶", "characters": "\u29B6" }, + {"key": "⊖", "characters": "\u2296" }, + {"key": "𝕆", "characters": "\uD835\uDD46" }, + {"key": "𝕠", "characters": "\uD835\uDD60" }, + {"key": "⦷", "characters": "\u29B7" }, + {"key": "“", "characters": "\u201C" }, + {"key": "‘", "characters": "\u2018" }, + {"key": "⦹", "characters": "\u29B9" }, + {"key": "⊕", "characters": "\u2295" }, + {"key": "↻", "characters": "\u21BB" }, + {"key": "⩔", "characters": "\u2A54" }, + {"key": "∨", "characters": "\u2228" }, + {"key": "⩝", "characters": "\u2A5D" }, + {"key": "ℴ", "characters": "\u2134" }, + {"key": "ℴ", "characters": "\u2134" }, + {"key": "ª", "characters": "\u00AA" }, + {"key": "ª", "characters": "\u00AA" }, + {"key": "º", "characters": "\u00BA" }, + {"key": "º", "characters": "\u00BA" }, + {"key": "⊶", "characters": "\u22B6" }, + {"key": "⩖", "characters": "\u2A56" }, + {"key": "⩗", "characters": "\u2A57" }, + {"key": "⩛", "characters": "\u2A5B" }, + {"key": "Ⓢ", "characters": "\u24C8" }, + {"key": "𝒪", "characters": "\uD835\uDCAA" }, + {"key": "ℴ", "characters": "\u2134" }, + {"key": "Ø", "characters": "\u00D8" }, + {"key": "Ø", "characters": "\u00D8" }, + {"key": "ø", "characters": "\u00F8" }, + {"key": "ø", "characters": "\u00F8" }, + {"key": "⊘", "characters": "\u2298" }, + {"key": "Õ", "characters": "\u00D5" }, + {"key": "Õ", "characters": "\u00D5" }, + {"key": "õ", "characters": "\u00F5" }, + {"key": "õ", "characters": "\u00F5" }, + {"key": "⨶", "characters": "\u2A36" }, + {"key": "⨷", "characters": "\u2A37" }, + {"key": "⊗", "characters": "\u2297" }, + {"key": "Ö", "characters": "\u00D6" }, + {"key": "Ö", "characters": "\u00D6" }, + {"key": "ö", "characters": "\u00F6" }, + {"key": "ö", "characters": "\u00F6" }, + {"key": "⌽", "characters": "\u233D" }, + {"key": "‾", "characters": "\u203E" }, + {"key": "⏞", "characters": "\u23DE" }, + {"key": "⎴", "characters": "\u23B4" }, + {"key": "⏜", "characters": "\u23DC" }, + {"key": "¶", "characters": "\u00B6" }, + {"key": "¶", "characters": "\u00B6" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⫳", "characters": "\u2AF3" }, + {"key": "⫽", "characters": "\u2AFD" }, + {"key": "∂", "characters": "\u2202" }, + {"key": "∂", "characters": "\u2202" }, + {"key": "П", "characters": "\u041F" }, + {"key": "п", "characters": "\u043F" }, + {"key": "%", "characters": "\u0025" }, + {"key": ".", "characters": "\u002E" }, + {"key": "‰", "characters": "\u2030" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "‱", "characters": "\u2031" }, + {"key": "𝔓", "characters": "\uD835\uDD13" }, + {"key": "𝔭", "characters": "\uD835\uDD2D" }, + {"key": "Φ", "characters": "\u03A6" }, + {"key": "φ", "characters": "\u03C6" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "ℳ", "characters": "\u2133" }, + {"key": "☎", "characters": "\u260E" }, + {"key": "Π", "characters": "\u03A0" }, + {"key": "π", "characters": "\u03C0" }, + {"key": "⋔", "characters": "\u22D4" }, + {"key": "ϖ", "characters": "\u03D6" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "ℎ", "characters": "\u210E" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "⨣", "characters": "\u2A23" }, + {"key": "⊞", "characters": "\u229E" }, + {"key": "⨢", "characters": "\u2A22" }, + {"key": "+", "characters": "\u002B" }, + {"key": "∔", "characters": "\u2214" }, + {"key": "⨥", "characters": "\u2A25" }, + {"key": "⩲", "characters": "\u2A72" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "⨦", "characters": "\u2A26" }, + {"key": "⨧", "characters": "\u2A27" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "ℌ", "characters": "\u210C" }, + {"key": "⨕", "characters": "\u2A15" }, + {"key": "𝕡", "characters": "\uD835\uDD61" }, + {"key": "ℙ", "characters": "\u2119" }, + {"key": "£", "characters": "\u00A3" }, + {"key": "£", "characters": "\u00A3" }, + {"key": "⪷", "characters": "\u2AB7" }, + {"key": "⪻", "characters": "\u2ABB" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "⪷", "characters": "\u2AB7" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "⪹", "characters": "\u2AB9" }, + {"key": "⪵", "characters": "\u2AB5" }, + {"key": "⋨", "characters": "\u22E8" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "⪳", "characters": "\u2AB3" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "′", "characters": "\u2032" }, + {"key": "″", "characters": "\u2033" }, + {"key": "ℙ", "characters": "\u2119" }, + {"key": "⪹", "characters": "\u2AB9" }, + {"key": "⪵", "characters": "\u2AB5" }, + {"key": "⋨", "characters": "\u22E8" }, + {"key": "∏", "characters": "\u220F" }, + {"key": "∏", "characters": "\u220F" }, + {"key": "⌮", "characters": "\u232E" }, + {"key": "⌒", "characters": "\u2312" }, + {"key": "⌓", "characters": "\u2313" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "∷", "characters": "\u2237" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "⊰", "characters": "\u22B0" }, + {"key": "𝒫", "characters": "\uD835\uDCAB" }, + {"key": "𝓅", "characters": "\uD835\uDCC5" }, + {"key": "Ψ", "characters": "\u03A8" }, + {"key": "ψ", "characters": "\u03C8" }, + {"key": " ", "characters": "\u2008" }, + {"key": "𝔔", "characters": "\uD835\uDD14" }, + {"key": "𝔮", "characters": "\uD835\uDD2E" }, + {"key": "⨌", "characters": "\u2A0C" }, + {"key": "𝕢", "characters": "\uD835\uDD62" }, + {"key": "ℚ", "characters": "\u211A" }, + {"key": "⁗", "characters": "\u2057" }, + {"key": "𝒬", "characters": "\uD835\uDCAC" }, + {"key": "𝓆", "characters": "\uD835\uDCC6" }, + {"key": "ℍ", "characters": "\u210D" }, + {"key": "⨖", "characters": "\u2A16" }, + {"key": "?", "characters": "\u003F" }, + {"key": "≟", "characters": "\u225F" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": "⇛", "characters": "\u21DB" }, + {"key": "∽̱", "characters": "\u223D\u0331" }, + {"key": "Ŕ", "characters": "\u0154" }, + {"key": "ŕ", "characters": "\u0155" }, + {"key": "√", "characters": "\u221A" }, + {"key": "⦳", "characters": "\u29B3" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "⟫", "characters": "\u27EB" }, + {"key": "⦒", "characters": "\u2992" }, + {"key": "⦥", "characters": "\u29A5" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "»", "characters": "\u00BB" }, + {"key": "»", "characters": "\u00BB" }, + {"key": "⥵", "characters": "\u2975" }, + {"key": "⇥", "characters": "\u21E5" }, + {"key": "⤠", "characters": "\u2920" }, + {"key": "⤳", "characters": "\u2933" }, + {"key": "→", "characters": "\u2192" }, + {"key": "↠", "characters": "\u21A0" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⤞", "characters": "\u291E" }, + {"key": "↪", "characters": "\u21AA" }, + {"key": "↬", "characters": "\u21AC" }, + {"key": "⥅", "characters": "\u2945" }, + {"key": "⥴", "characters": "\u2974" }, + {"key": "⤖", "characters": "\u2916" }, + {"key": "↣", "characters": "\u21A3" }, + {"key": "↝", "characters": "\u219D" }, + {"key": "⤚", "characters": "\u291A" }, + {"key": "⤜", "characters": "\u291C" }, + {"key": "∶", "characters": "\u2236" }, + {"key": "ℚ", "characters": "\u211A" }, + {"key": "⤍", "characters": "\u290D" }, + {"key": "⤏", "characters": "\u290F" }, + {"key": "⤐", "characters": "\u2910" }, + {"key": "❳", "characters": "\u2773" }, + {"key": "}", "characters": "\u007D" }, + {"key": "]", "characters": "\u005D" }, + {"key": "⦌", "characters": "\u298C" }, + {"key": "⦎", "characters": "\u298E" }, + {"key": "⦐", "characters": "\u2990" }, + {"key": "Ř", "characters": "\u0158" }, + {"key": "ř", "characters": "\u0159" }, + {"key": "Ŗ", "characters": "\u0156" }, + {"key": "ŗ", "characters": "\u0157" }, + {"key": "⌉", "characters": "\u2309" }, + {"key": "}", "characters": "\u007D" }, + {"key": "Р", "characters": "\u0420" }, + {"key": "р", "characters": "\u0440" }, + {"key": "⤷", "characters": "\u2937" }, + {"key": "⥩", "characters": "\u2969" }, + {"key": "”", "characters": "\u201D" }, + {"key": "”", "characters": "\u201D" }, + {"key": "↳", "characters": "\u21B3" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "ℛ", "characters": "\u211B" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "ℝ", "characters": "\u211D" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "▭", "characters": "\u25AD" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "⥯", "characters": "\u296F" }, + {"key": "⥽", "characters": "\u297D" }, + {"key": "⌋", "characters": "\u230B" }, + {"key": "𝔯", "characters": "\uD835\uDD2F" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "⥤", "characters": "\u2964" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "⥬", "characters": "\u296C" }, + {"key": "Ρ", "characters": "\u03A1" }, + {"key": "ρ", "characters": "\u03C1" }, + {"key": "ϱ", "characters": "\u03F1" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "⇥", "characters": "\u21E5" }, + {"key": "→", "characters": "\u2192" }, + {"key": "→", "characters": "\u2192" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "↣", "characters": "\u21A3" }, + {"key": "⌉", "characters": "\u2309" }, + {"key": "⟧", "characters": "\u27E7" }, + {"key": "⥝", "characters": "\u295D" }, + {"key": "⥕", "characters": "\u2955" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "⌋", "characters": "\u230B" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "⇉", "characters": "\u21C9" }, + {"key": "↝", "characters": "\u219D" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "⊢", "characters": "\u22A2" }, + {"key": "⥛", "characters": "\u295B" }, + {"key": "⋌", "characters": "\u22CC" }, + {"key": "⧐", "characters": "\u29D0" }, + {"key": "⊳", "characters": "\u22B3" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "⥏", "characters": "\u294F" }, + {"key": "⥜", "characters": "\u295C" }, + {"key": "⥔", "characters": "\u2954" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "⥓", "characters": "\u2953" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "˚", "characters": "\u02DA" }, + {"key": "≓", "characters": "\u2253" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "‏", "characters": "\u200F" }, + {"key": "⎱", "characters": "\u23B1" }, + {"key": "⎱", "characters": "\u23B1" }, + {"key": "⫮", "characters": "\u2AEE" }, + {"key": "⟭", "characters": "\u27ED" }, + {"key": "⇾", "characters": "\u21FE" }, + {"key": "⟧", "characters": "\u27E7" }, + {"key": "⦆", "characters": "\u2986" }, + {"key": "𝕣", "characters": "\uD835\uDD63" }, + {"key": "ℝ", "characters": "\u211D" }, + {"key": "⨮", "characters": "\u2A2E" }, + {"key": "⨵", "characters": "\u2A35" }, + {"key": "⥰", "characters": "\u2970" }, + {"key": ")", "characters": "\u0029" }, + {"key": "⦔", "characters": "\u2994" }, + {"key": "⨒", "characters": "\u2A12" }, + {"key": "⇉", "characters": "\u21C9" }, + {"key": "⇛", "characters": "\u21DB" }, + {"key": "›", "characters": "\u203A" }, + {"key": "𝓇", "characters": "\uD835\uDCC7" }, + {"key": "ℛ", "characters": "\u211B" }, + {"key": "↱", "characters": "\u21B1" }, + {"key": "↱", "characters": "\u21B1" }, + {"key": "]", "characters": "\u005D" }, + {"key": "’", "characters": "\u2019" }, + {"key": "’", "characters": "\u2019" }, + {"key": "⋌", "characters": "\u22CC" }, + {"key": "⋊", "characters": "\u22CA" }, + {"key": "▹", "characters": "\u25B9" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "▸", "characters": "\u25B8" }, + {"key": "⧎", "characters": "\u29CE" }, + {"key": "⧴", "characters": "\u29F4" }, + {"key": "⥨", "characters": "\u2968" }, + {"key": "℞", "characters": "\u211E" }, + {"key": "Ś", "characters": "\u015A" }, + {"key": "ś", "characters": "\u015B" }, + {"key": "‚", "characters": "\u201A" }, + {"key": "⪸", "characters": "\u2AB8" }, + {"key": "Š", "characters": "\u0160" }, + {"key": "š", "characters": "\u0161" }, + {"key": "⪼", "characters": "\u2ABC" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "⪴", "characters": "\u2AB4" }, + {"key": "Ş", "characters": "\u015E" }, + {"key": "ş", "characters": "\u015F" }, + {"key": "Ŝ", "characters": "\u015C" }, + {"key": "ŝ", "characters": "\u015D" }, + {"key": "⪺", "characters": "\u2ABA" }, + {"key": "⪶", "characters": "\u2AB6" }, + {"key": "⋩", "characters": "\u22E9" }, + {"key": "⨓", "characters": "\u2A13" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "С", "characters": "\u0421" }, + {"key": "с", "characters": "\u0441" }, + {"key": "⊡", "characters": "\u22A1" }, + {"key": "⋅", "characters": "\u22C5" }, + {"key": "⩦", "characters": "\u2A66" }, + {"key": "⤥", "characters": "\u2925" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "⇘", "characters": "\u21D8" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "§", "characters": "\u00A7" }, + {"key": "§", "characters": "\u00A7" }, + {"key": ";", "characters": "\u003B" }, + {"key": "⤩", "characters": "\u2929" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "✶", "characters": "\u2736" }, + {"key": "𝔖", "characters": "\uD835\uDD16" }, + {"key": "𝔰", "characters": "\uD835\uDD30" }, + {"key": "⌢", "characters": "\u2322" }, + {"key": "♯", "characters": "\u266F" }, + {"key": "Щ", "characters": "\u0429" }, + {"key": "щ", "characters": "\u0449" }, + {"key": "Ш", "characters": "\u0428" }, + {"key": "ш", "characters": "\u0448" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "←", "characters": "\u2190" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "→", "characters": "\u2192" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "­", "characters": "\u00AD" }, + {"key": "­", "characters": "\u00AD" }, + {"key": "Σ", "characters": "\u03A3" }, + {"key": "σ", "characters": "\u03C3" }, + {"key": "ς", "characters": "\u03C2" }, + {"key": "ς", "characters": "\u03C2" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "⩪", "characters": "\u2A6A" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "⪞", "characters": "\u2A9E" }, + {"key": "⪠", "characters": "\u2AA0" }, + {"key": "⪝", "characters": "\u2A9D" }, + {"key": "⪟", "characters": "\u2A9F" }, + {"key": "≆", "characters": "\u2246" }, + {"key": "⨤", "characters": "\u2A24" }, + {"key": "⥲", "characters": "\u2972" }, + {"key": "←", "characters": "\u2190" }, + {"key": "∘", "characters": "\u2218" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "⨳", "characters": "\u2A33" }, + {"key": "⧤", "characters": "\u29E4" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "⌣", "characters": "\u2323" }, + {"key": "⪪", "characters": "\u2AAA" }, + {"key": "⪬", "characters": "\u2AAC" }, + {"key": "⪬︀", "characters": "\u2AAC\uFE00" }, + {"key": "Ь", "characters": "\u042C" }, + {"key": "ь", "characters": "\u044C" }, + {"key": "⌿", "characters": "\u233F" }, + {"key": "⧄", "characters": "\u29C4" }, + {"key": "/", "characters": "\u002F" }, + {"key": "𝕊", "characters": "\uD835\uDD4A" }, + {"key": "𝕤", "characters": "\uD835\uDD64" }, + {"key": "♠", "characters": "\u2660" }, + {"key": "♠", "characters": "\u2660" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⊓", "characters": "\u2293" }, + {"key": "⊓︀", "characters": "\u2293\uFE00" }, + {"key": "⊔", "characters": "\u2294" }, + {"key": "⊔︀", "characters": "\u2294\uFE00" }, + {"key": "√", "characters": "\u221A" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "⊓", "characters": "\u2293" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "⊔", "characters": "\u2294" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "→", "characters": "\u2192" }, + {"key": "𝒮", "characters": "\uD835\uDCAE" }, + {"key": "𝓈", "characters": "\uD835\uDCC8" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "⌣", "characters": "\u2323" }, + {"key": "⋆", "characters": "\u22C6" }, + {"key": "⋆", "characters": "\u22C6" }, + {"key": "☆", "characters": "\u2606" }, + {"key": "★", "characters": "\u2605" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "¯", "characters": "\u00AF" }, + {"key": "⊂", "characters": "\u2282" }, + {"key": "⋐", "characters": "\u22D0" }, + {"key": "⪽", "characters": "\u2ABD" }, + {"key": "⫅", "characters": "\u2AC5" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⫃", "characters": "\u2AC3" }, + {"key": "⫁", "characters": "\u2AC1" }, + {"key": "⫋", "characters": "\u2ACB" }, + {"key": "⊊", "characters": "\u228A" }, + {"key": "⪿", "characters": "\u2ABF" }, + {"key": "⥹", "characters": "\u2979" }, + {"key": "⊂", "characters": "\u2282" }, + {"key": "⋐", "characters": "\u22D0" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⫅", "characters": "\u2AC5" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⊊", "characters": "\u228A" }, + {"key": "⫋", "characters": "\u2ACB" }, + {"key": "⫇", "characters": "\u2AC7" }, + {"key": "⫕", "characters": "\u2AD5" }, + {"key": "⫓", "characters": "\u2AD3" }, + {"key": "⪸", "characters": "\u2AB8" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "⪺", "characters": "\u2ABA" }, + {"key": "⪶", "characters": "\u2AB6" }, + {"key": "⋩", "characters": "\u22E9" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "∑", "characters": "\u2211" }, + {"key": "∑", "characters": "\u2211" }, + {"key": "♪", "characters": "\u266A" }, + {"key": "¹", "characters": "\u00B9" }, + {"key": "¹", "characters": "\u00B9" }, + {"key": "²", "characters": "\u00B2" }, + {"key": "²", "characters": "\u00B2" }, + {"key": "³", "characters": "\u00B3" }, + {"key": "³", "characters": "\u00B3" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⋑", "characters": "\u22D1" }, + {"key": "⪾", "characters": "\u2ABE" }, + {"key": "⫘", "characters": "\u2AD8" }, + {"key": "⫆", "characters": "\u2AC6" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⫄", "characters": "\u2AC4" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⟉", "characters": "\u27C9" }, + {"key": "⫗", "characters": "\u2AD7" }, + {"key": "⥻", "characters": "\u297B" }, + {"key": "⫂", "characters": "\u2AC2" }, + {"key": "⫌", "characters": "\u2ACC" }, + {"key": "⊋", "characters": "\u228B" }, + {"key": "⫀", "characters": "\u2AC0" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⋑", "characters": "\u22D1" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⫆", "characters": "\u2AC6" }, + {"key": "⊋", "characters": "\u228B" }, + {"key": "⫌", "characters": "\u2ACC" }, + {"key": "⫈", "characters": "\u2AC8" }, + {"key": "⫔", "characters": "\u2AD4" }, + {"key": "⫖", "characters": "\u2AD6" }, + {"key": "⤦", "characters": "\u2926" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "⇙", "characters": "\u21D9" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "⤪", "characters": "\u292A" }, + {"key": "ß", "characters": "\u00DF" }, + {"key": "ß", "characters": "\u00DF" }, + {"key": " ", "characters": "\u0009" }, + {"key": "⌖", "characters": "\u2316" }, + {"key": "Τ", "characters": "\u03A4" }, + {"key": "τ", "characters": "\u03C4" }, + {"key": "⎴", "characters": "\u23B4" }, + {"key": "Ť", "characters": "\u0164" }, + {"key": "ť", "characters": "\u0165" }, + {"key": "Ţ", "characters": "\u0162" }, + {"key": "ţ", "characters": "\u0163" }, + {"key": "Т", "characters": "\u0422" }, + {"key": "т", "characters": "\u0442" }, + {"key": "⃛", "characters": "\u20DB" }, + {"key": "⌕", "characters": "\u2315" }, + {"key": "𝔗", "characters": "\uD835\uDD17" }, + {"key": "𝔱", "characters": "\uD835\uDD31" }, + {"key": "∴", "characters": "\u2234" }, + {"key": "∴", "characters": "\u2234" }, + {"key": "∴", "characters": "\u2234" }, + {"key": "Θ", "characters": "\u0398" }, + {"key": "θ", "characters": "\u03B8" }, + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "  ", "characters": "\u205F\u200A" }, + {"key": " ", "characters": "\u2009" }, + {"key": " ", "characters": "\u2009" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "Þ", "characters": "\u00DE" }, + {"key": "Þ", "characters": "\u00DE" }, + {"key": "þ", "characters": "\u00FE" }, + {"key": "þ", "characters": "\u00FE" }, + {"key": "˜", "characters": "\u02DC" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "≅", "characters": "\u2245" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "⨱", "characters": "\u2A31" }, + {"key": "⊠", "characters": "\u22A0" }, + {"key": "×", "characters": "\u00D7" }, + {"key": "×", "characters": "\u00D7" }, + {"key": "⨰", "characters": "\u2A30" }, + {"key": "∭", "characters": "\u222D" }, + {"key": "⤨", "characters": "\u2928" }, + {"key": "⌶", "characters": "\u2336" }, + {"key": "⫱", "characters": "\u2AF1" }, + {"key": "⊤", "characters": "\u22A4" }, + {"key": "𝕋", "characters": "\uD835\uDD4B" }, + {"key": "𝕥", "characters": "\uD835\uDD65" }, + {"key": "⫚", "characters": "\u2ADA" }, + {"key": "⤩", "characters": "\u2929" }, + {"key": "‴", "characters": "\u2034" }, + {"key": "™", "characters": "\u2122" }, + {"key": "™", "characters": "\u2122" }, + {"key": "▵", "characters": "\u25B5" }, + {"key": "▿", "characters": "\u25BF" }, + {"key": "◃", "characters": "\u25C3" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "≜", "characters": "\u225C" }, + {"key": "▹", "characters": "\u25B9" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "◬", "characters": "\u25EC" }, + {"key": "≜", "characters": "\u225C" }, + {"key": "⨺", "characters": "\u2A3A" }, + {"key": "⃛", "characters": "\u20DB" }, + {"key": "⨹", "characters": "\u2A39" }, + {"key": "⧍", "characters": "\u29CD" }, + {"key": "⨻", "characters": "\u2A3B" }, + {"key": "⏢", "characters": "\u23E2" }, + {"key": "𝒯", "characters": "\uD835\uDCAF" }, + {"key": "𝓉", "characters": "\uD835\uDCC9" }, + {"key": "Ц", "characters": "\u0426" }, + {"key": "ц", "characters": "\u0446" }, + {"key": "Ћ", "characters": "\u040B" }, + {"key": "ћ", "characters": "\u045B" }, + {"key": "Ŧ", "characters": "\u0166" }, + {"key": "ŧ", "characters": "\u0167" }, + {"key": "≬", "characters": "\u226C" }, + {"key": "↞", "characters": "\u219E" }, + {"key": "↠", "characters": "\u21A0" }, + {"key": "Ú", "characters": "\u00DA" }, + {"key": "Ú", "characters": "\u00DA" }, + {"key": "ú", "characters": "\u00FA" }, + {"key": "ú", "characters": "\u00FA" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "↟", "characters": "\u219F" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⥉", "characters": "\u2949" }, + {"key": "Ў", "characters": "\u040E" }, + {"key": "ў", "characters": "\u045E" }, + {"key": "Ŭ", "characters": "\u016C" }, + {"key": "ŭ", "characters": "\u016D" }, + {"key": "Û", "characters": "\u00DB" }, + {"key": "Û", "characters": "\u00DB" }, + {"key": "û", "characters": "\u00FB" }, + {"key": "û", "characters": "\u00FB" }, + {"key": "У", "characters": "\u0423" }, + {"key": "у", "characters": "\u0443" }, + {"key": "⇅", "characters": "\u21C5" }, + {"key": "Ű", "characters": "\u0170" }, + {"key": "ű", "characters": "\u0171" }, + {"key": "⥮", "characters": "\u296E" }, + {"key": "⥾", "characters": "\u297E" }, + {"key": "𝔘", "characters": "\uD835\uDD18" }, + {"key": "𝔲", "characters": "\uD835\uDD32" }, + {"key": "Ù", "characters": "\u00D9" }, + {"key": "Ù", "characters": "\u00D9" }, + {"key": "ù", "characters": "\u00F9" }, + {"key": "ù", "characters": "\u00F9" }, + {"key": "⥣", "characters": "\u2963" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "▀", "characters": "\u2580" }, + {"key": "⌜", "characters": "\u231C" }, + {"key": "⌜", "characters": "\u231C" }, + {"key": "⌏", "characters": "\u230F" }, + {"key": "◸", "characters": "\u25F8" }, + {"key": "Ū", "characters": "\u016A" }, + {"key": "ū", "characters": "\u016B" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "_", "characters": "\u005F" }, + {"key": "⏟", "characters": "\u23DF" }, + {"key": "⎵", "characters": "\u23B5" }, + {"key": "⏝", "characters": "\u23DD" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "⊎", "characters": "\u228E" }, + {"key": "Ų", "characters": "\u0172" }, + {"key": "ų", "characters": "\u0173" }, + {"key": "𝕌", "characters": "\uD835\uDD4C" }, + {"key": "𝕦", "characters": "\uD835\uDD66" }, + {"key": "⤒", "characters": "\u2912" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⇅", "characters": "\u21C5" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "⥮", "characters": "\u296E" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "⊎", "characters": "\u228E" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "υ", "characters": "\u03C5" }, + {"key": "ϒ", "characters": "\u03D2" }, + {"key": "ϒ", "characters": "\u03D2" }, + {"key": "Υ", "characters": "\u03A5" }, + {"key": "υ", "characters": "\u03C5" }, + {"key": "↥", "characters": "\u21A5" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⇈", "characters": "\u21C8" }, + {"key": "⌝", "characters": "\u231D" }, + {"key": "⌝", "characters": "\u231D" }, + {"key": "⌎", "characters": "\u230E" }, + {"key": "Ů", "characters": "\u016E" }, + {"key": "ů", "characters": "\u016F" }, + {"key": "◹", "characters": "\u25F9" }, + {"key": "𝒰", "characters": "\uD835\uDCB0" }, + {"key": "𝓊", "characters": "\uD835\uDCCA" }, + {"key": "⋰", "characters": "\u22F0" }, + {"key": "Ũ", "characters": "\u0168" }, + {"key": "ũ", "characters": "\u0169" }, + {"key": "▵", "characters": "\u25B5" }, + {"key": "▴", "characters": "\u25B4" }, + {"key": "⇈", "characters": "\u21C8" }, + {"key": "Ü", "characters": "\u00DC" }, + {"key": "Ü", "characters": "\u00DC" }, + {"key": "ü", "characters": "\u00FC" }, + {"key": "ü", "characters": "\u00FC" }, + {"key": "⦧", "characters": "\u29A7" }, + {"key": "⦜", "characters": "\u299C" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "ϰ", "characters": "\u03F0" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "ϖ", "characters": "\u03D6" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "ϱ", "characters": "\u03F1" }, + {"key": "ς", "characters": "\u03C2" }, + {"key": "⊊︀", "characters": "\u228A\uFE00" }, + {"key": "⫋︀", "characters": "\u2ACB\uFE00" }, + {"key": "⊋︀", "characters": "\u228B\uFE00" }, + {"key": "⫌︀", "characters": "\u2ACC\uFE00" }, + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "⊲", "characters": "\u22B2" }, + {"key": "⊳", "characters": "\u22B3" }, + {"key": "⫨", "characters": "\u2AE8" }, + {"key": "⫫", "characters": "\u2AEB" }, + {"key": "⫩", "characters": "\u2AE9" }, + {"key": "В", "characters": "\u0412" }, + {"key": "в", "characters": "\u0432" }, + {"key": "⊢", "characters": "\u22A2" }, + {"key": "⊨", "characters": "\u22A8" }, + {"key": "⊩", "characters": "\u22A9" }, + {"key": "⊫", "characters": "\u22AB" }, + {"key": "⫦", "characters": "\u2AE6" }, + {"key": "⊻", "characters": "\u22BB" }, + {"key": "∨", "characters": "\u2228" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "≚", "characters": "\u225A" }, + {"key": "⋮", "characters": "\u22EE" }, + {"key": "|", "characters": "\u007C" }, + {"key": "‖", "characters": "\u2016" }, + {"key": "|", "characters": "\u007C" }, + {"key": "‖", "characters": "\u2016" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "|", "characters": "\u007C" }, + {"key": "❘", "characters": "\u2758" }, + {"key": "≀", "characters": "\u2240" }, + {"key": " ", "characters": "\u200A" }, + {"key": "𝔙", "characters": "\uD835\uDD19" }, + {"key": "𝔳", "characters": "\uD835\uDD33" }, + {"key": "⊲", "characters": "\u22B2" }, + {"key": "⊂⃒", "characters": "\u2282\u20D2" }, + {"key": "⊃⃒", "characters": "\u2283\u20D2" }, + {"key": "𝕍", "characters": "\uD835\uDD4D" }, + {"key": "𝕧", "characters": "\uD835\uDD67" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "⊳", "characters": "\u22B3" }, + {"key": "𝒱", "characters": "\uD835\uDCB1" }, + {"key": "𝓋", "characters": "\uD835\uDCCB" }, + {"key": "⫋︀", "characters": "\u2ACB\uFE00" }, + {"key": "⊊︀", "characters": "\u228A\uFE00" }, + {"key": "⫌︀", "characters": "\u2ACC\uFE00" }, + {"key": "⊋︀", "characters": "\u228B\uFE00" }, + {"key": "⊪", "characters": "\u22AA" }, + {"key": "⦚", "characters": "\u299A" }, + {"key": "Ŵ", "characters": "\u0174" }, + {"key": "ŵ", "characters": "\u0175" }, + {"key": "⩟", "characters": "\u2A5F" }, + {"key": "∧", "characters": "\u2227" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "≙", "characters": "\u2259" }, + {"key": "℘", "characters": "\u2118" }, + {"key": "𝔚", "characters": "\uD835\uDD1A" }, + {"key": "𝔴", "characters": "\uD835\uDD34" }, + {"key": "𝕎", "characters": "\uD835\uDD4E" }, + {"key": "𝕨", "characters": "\uD835\uDD68" }, + {"key": "℘", "characters": "\u2118" }, + {"key": "≀", "characters": "\u2240" }, + {"key": "≀", "characters": "\u2240" }, + {"key": "𝒲", "characters": "\uD835\uDCB2" }, + {"key": "𝓌", "characters": "\uD835\uDCCC" }, + {"key": "⋂", "characters": "\u22C2" }, + {"key": "◯", "characters": "\u25EF" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "▽", "characters": "\u25BD" }, + {"key": "𝔛", "characters": "\uD835\uDD1B" }, + {"key": "𝔵", "characters": "\uD835\uDD35" }, + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "Ξ", "characters": "\u039E" }, + {"key": "ξ", "characters": "\u03BE" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟼", "characters": "\u27FC" }, + {"key": "⋻", "characters": "\u22FB" }, + {"key": "⨀", "characters": "\u2A00" }, + {"key": "𝕏", "characters": "\uD835\uDD4F" }, + {"key": "𝕩", "characters": "\uD835\uDD69" }, + {"key": "⨁", "characters": "\u2A01" }, + {"key": "⨂", "characters": "\u2A02" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟹", "characters": "\u27F9" }, + {"key": "𝒳", "characters": "\uD835\uDCB3" }, + {"key": "𝓍", "characters": "\uD835\uDCCD" }, + {"key": "⨆", "characters": "\u2A06" }, + {"key": "⨄", "characters": "\u2A04" }, + {"key": "△", "characters": "\u25B3" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "Ý", "characters": "\u00DD" }, + {"key": "Ý", "characters": "\u00DD" }, + {"key": "ý", "characters": "\u00FD" }, + {"key": "ý", "characters": "\u00FD" }, + {"key": "Я", "characters": "\u042F" }, + {"key": "я", "characters": "\u044F" }, + {"key": "Ŷ", "characters": "\u0176" }, + {"key": "ŷ", "characters": "\u0177" }, + {"key": "Ы", "characters": "\u042B" }, + {"key": "ы", "characters": "\u044B" }, + {"key": "¥", "characters": "\u00A5" }, + {"key": "¥", "characters": "\u00A5" }, + {"key": "𝔜", "characters": "\uD835\uDD1C" }, + {"key": "𝔶", "characters": "\uD835\uDD36" }, + {"key": "Ї", "characters": "\u0407" }, + {"key": "ї", "characters": "\u0457" }, + {"key": "𝕐", "characters": "\uD835\uDD50" }, + {"key": "𝕪", "characters": "\uD835\uDD6A" }, + {"key": "𝒴", "characters": "\uD835\uDCB4" }, + {"key": "𝓎", "characters": "\uD835\uDCCE" }, + {"key": "Ю", "characters": "\u042E" }, + {"key": "ю", "characters": "\u044E" }, + {"key": "ÿ", "characters": "\u00FF" }, + {"key": "ÿ", "characters": "\u00FF" }, + {"key": "Ÿ", "characters": "\u0178" }, + {"key": "Ź", "characters": "\u0179" }, + {"key": "ź", "characters": "\u017A" }, + {"key": "Ž", "characters": "\u017D" }, + {"key": "ž", "characters": "\u017E" }, + {"key": "З", "characters": "\u0417" }, + {"key": "з", "characters": "\u0437" }, + {"key": "Ż", "characters": "\u017B" }, + {"key": "ż", "characters": "\u017C" }, + {"key": "ℨ", "characters": "\u2128" }, + {"key": "​", "characters": "\u200B" }, + {"key": "Ζ", "characters": "\u0396" }, + {"key": "ζ", "characters": "\u03B6" }, + {"key": "𝔷", "characters": "\uD835\uDD37" }, + {"key": "ℨ", "characters": "\u2128" }, + {"key": "Ж", "characters": "\u0416" }, + {"key": "ж", "characters": "\u0436" }, + {"key": "⇝", "characters": "\u21DD" }, + {"key": "𝕫", "characters": "\uD835\uDD6B" }, + {"key": "ℤ", "characters": "\u2124" }, + {"key": "𝒵", "characters": "\uD835\uDCB5" }, + {"key": "𝓏", "characters": "\uD835\uDCCF" }, + {"key": "‍", "characters": "\u200D" }, + {"key": "‌", "characters": "\u200C" } +]} diff --git a/tests/FSharp.Data.Core.Tests/Data/charrefs.json b/tests/FSharp.Data.Core.Tests/Data/charrefs.json new file mode 100644 index 000000000..99b38ec8a --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/charrefs.json @@ -0,0 +1,2245 @@ +{ +"items":[ + {"key": "Á", "characters": "\u00C1" }, + {"key": "Á", "characters": "\u00C1" }, + {"key": "á", "characters": "\u00E1" }, + {"key": "á", "characters": "\u00E1" }, + {"key": "Ă", "characters": "\u0102" }, + {"key": "ă", "characters": "\u0103" }, + {"key": "∾", "characters": "\u223E" }, + {"key": "∿", "characters": "\u223F" }, + {"key": "Â", "characters": "\u00C2" }, + {"key": "Â", "characters": "\u00C2" }, + {"key": "â", "characters": "\u00E2" }, + {"key": "â", "characters": "\u00E2" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "А", "characters": "\u0410" }, + {"key": "а", "characters": "\u0430" }, + {"key": "Æ", "characters": "\u00C6" }, + {"key": "Æ", "characters": "\u00C6" }, + {"key": "æ", "characters": "\u00E6" }, + {"key": "æ", "characters": "\u00E6" }, + {"key": "⁡", "characters": "\u2061" }, + {"key": "À", "characters": "\u00C0" }, + {"key": "À", "characters": "\u00C0" }, + {"key": "à", "characters": "\u00E0" }, + {"key": "à", "characters": "\u00E0" }, + {"key": "ℵ", "characters": "\u2135" }, + {"key": "ℵ", "characters": "\u2135" }, + {"key": "Α", "characters": "\u0391" }, + {"key": "α", "characters": "\u03B1" }, + {"key": "Ā", "characters": "\u0100" }, + {"key": "ā", "characters": "\u0101" }, + {"key": "⨿", "characters": "\u2A3F" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "&", "characters": "\u0026" }, + {"key": "⩕", "characters": "\u2A55" }, + {"key": "⩓", "characters": "\u2A53" }, + {"key": "∧", "characters": "\u2227" }, + {"key": "⩜", "characters": "\u2A5C" }, + {"key": "⩘", "characters": "\u2A58" }, + {"key": "⩚", "characters": "\u2A5A" }, + {"key": "∠", "characters": "\u2220" }, + {"key": "⦤", "characters": "\u29A4" }, + {"key": "∠", "characters": "\u2220" }, + {"key": "⦨", "characters": "\u29A8" }, + {"key": "⦩", "characters": "\u29A9" }, + {"key": "⦪", "characters": "\u29AA" }, + {"key": "⦫", "characters": "\u29AB" }, + {"key": "⦬", "characters": "\u29AC" }, + {"key": "⦭", "characters": "\u29AD" }, + {"key": "⦮", "characters": "\u29AE" }, + {"key": "⦯", "characters": "\u29AF" }, + {"key": "∡", "characters": "\u2221" }, + {"key": "∟", "characters": "\u221F" }, + {"key": "⊾", "characters": "\u22BE" }, + {"key": "⦝", "characters": "\u299D" }, + {"key": "∢", "characters": "\u2222" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "⍼", "characters": "\u237C" }, + {"key": "Ą", "characters": "\u0104" }, + {"key": "ą", "characters": "\u0105" }, + + + {"key": "⩯", "characters": "\u2A6F" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "⩰", "characters": "\u2A70" }, + {"key": "≊", "characters": "\u224A" }, + {"key": "≋", "characters": "\u224B" }, + {"key": "'", "characters": "\u0027" }, + {"key": "⁡", "characters": "\u2061" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "≊", "characters": "\u224A" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "Å", "characters": "\u00C5" }, + {"key": "å", "characters": "\u00E5" }, + {"key": "å", "characters": "\u00E5" }, + + + {"key": "≔", "characters": "\u2254" }, + {"key": "*", "characters": "\u002A" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "≍", "characters": "\u224D" }, + {"key": "Ã", "characters": "\u00C3" }, + {"key": "Ã", "characters": "\u00C3" }, + {"key": "ã", "characters": "\u00E3" }, + {"key": "ã", "characters": "\u00E3" }, + {"key": "Ä", "characters": "\u00C4" }, + {"key": "Ä", "characters": "\u00C4" }, + {"key": "ä", "characters": "\u00E4" }, + {"key": "ä", "characters": "\u00E4" }, + {"key": "∳", "characters": "\u2233" }, + {"key": "⨑", "characters": "\u2A11" }, + {"key": "≌", "characters": "\u224C" }, + {"key": "϶", "characters": "\u03F6" }, + {"key": "‵", "characters": "\u2035" }, + {"key": "∽", "characters": "\u223D" }, + {"key": "⋍", "characters": "\u22CD" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "⫧", "characters": "\u2AE7" }, + {"key": "⊽", "characters": "\u22BD" }, + {"key": "⌅", "characters": "\u2305" }, + {"key": "⌆", "characters": "\u2306" }, + {"key": "⌅", "characters": "\u2305" }, + {"key": "⎵", "characters": "\u23B5" }, + {"key": "⎶", "characters": "\u23B6" }, + {"key": "≌", "characters": "\u224C" }, + {"key": "Б", "characters": "\u0411" }, + {"key": "б", "characters": "\u0431" }, + {"key": "„", "characters": "\u201E" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "∵", "characters": "\u2235" }, + {"key": "⦰", "characters": "\u29B0" }, + {"key": "϶", "characters": "\u03F6" }, + {"key": "ℬ", "characters": "\u212C" }, + {"key": "ℬ", "characters": "\u212C" }, + {"key": "Β", "characters": "\u0392" }, + {"key": "β", "characters": "\u03B2" }, + {"key": "ℶ", "characters": "\u2136" }, + {"key": "≬", "characters": "\u226C" }, + + + {"key": "⋂", "characters": "\u22C2" }, + {"key": "◯", "characters": "\u25EF" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "⨀", "characters": "\u2A00" }, + {"key": "⨁", "characters": "\u2A01" }, + {"key": "⨂", "characters": "\u2A02" }, + {"key": "⨆", "characters": "\u2A06" }, + {"key": "★", "characters": "\u2605" }, + {"key": "▽", "characters": "\u25BD" }, + {"key": "△", "characters": "\u25B3" }, + {"key": "⨄", "characters": "\u2A04" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "⤍", "characters": "\u290D" }, + {"key": "⧫", "characters": "\u29EB" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "▴", "characters": "\u25B4" }, + {"key": "▾", "characters": "\u25BE" }, + {"key": "◂", "characters": "\u25C2" }, + {"key": "▸", "characters": "\u25B8" }, + {"key": "␣", "characters": "\u2423" }, + {"key": "▒", "characters": "\u2592" }, + {"key": "░", "characters": "\u2591" }, + {"key": "▓", "characters": "\u2593" }, + {"key": "█", "characters": "\u2588" }, + + + {"key": "⫭", "characters": "\u2AED" }, + {"key": "⌐", "characters": "\u2310" }, + + + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⋈", "characters": "\u22C8" }, + {"key": "⧉", "characters": "\u29C9" }, + {"key": "┐", "characters": "\u2510" }, + {"key": "╕", "characters": "\u2555" }, + {"key": "╖", "characters": "\u2556" }, + {"key": "╗", "characters": "\u2557" }, + {"key": "┌", "characters": "\u250C" }, + {"key": "╒", "characters": "\u2552" }, + {"key": "╓", "characters": "\u2553" }, + {"key": "╔", "characters": "\u2554" }, + {"key": "─", "characters": "\u2500" }, + {"key": "═", "characters": "\u2550" }, + {"key": "┬", "characters": "\u252C" }, + {"key": "╤", "characters": "\u2564" }, + {"key": "╥", "characters": "\u2565" }, + {"key": "╦", "characters": "\u2566" }, + {"key": "┴", "characters": "\u2534" }, + {"key": "╧", "characters": "\u2567" }, + {"key": "╨", "characters": "\u2568" }, + {"key": "╩", "characters": "\u2569" }, + {"key": "⊟", "characters": "\u229F" }, + {"key": "⊞", "characters": "\u229E" }, + {"key": "⊠", "characters": "\u22A0" }, + {"key": "┘", "characters": "\u2518" }, + {"key": "╛", "characters": "\u255B" }, + {"key": "╜", "characters": "\u255C" }, + {"key": "╝", "characters": "\u255D" }, + {"key": "└", "characters": "\u2514" }, + {"key": "╘", "characters": "\u2558" }, + {"key": "╙", "characters": "\u2559" }, + {"key": "╚", "characters": "\u255A" }, + {"key": "│", "characters": "\u2502" }, + {"key": "║", "characters": "\u2551" }, + {"key": "┼", "characters": "\u253C" }, + {"key": "╪", "characters": "\u256A" }, + {"key": "╫", "characters": "\u256B" }, + {"key": "╬", "characters": "\u256C" }, + {"key": "┤", "characters": "\u2524" }, + {"key": "╡", "characters": "\u2561" }, + {"key": "╢", "characters": "\u2562" }, + {"key": "╣", "characters": "\u2563" }, + {"key": "├", "characters": "\u251C" }, + {"key": "╞", "characters": "\u255E" }, + {"key": "╟", "characters": "\u255F" }, + {"key": "╠", "characters": "\u2560" }, + {"key": "‵", "characters": "\u2035" }, + {"key": "˘", "characters": "\u02D8" }, + {"key": "˘", "characters": "\u02D8" }, + {"key": "¦", "characters": "\u00A6" }, + {"key": "¦", "characters": "\u00A6" }, + + {"key": "ℬ", "characters": "\u212C" }, + {"key": "⁏", "characters": "\u204F" }, + {"key": "∽", "characters": "\u223D" }, + {"key": "⋍", "characters": "\u22CD" }, + {"key": "⧅", "characters": "\u29C5" }, + {"key": "\", "characters": "\u005C" }, + {"key": "⟈", "characters": "\u27C8" }, + {"key": "•", "characters": "\u2022" }, + {"key": "•", "characters": "\u2022" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "⪮", "characters": "\u2AAE" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "Ć", "characters": "\u0106" }, + {"key": "ć", "characters": "\u0107" }, + {"key": "⩄", "characters": "\u2A44" }, + {"key": "⩉", "characters": "\u2A49" }, + {"key": "⩋", "characters": "\u2A4B" }, + {"key": "∩", "characters": "\u2229" }, + {"key": "⋒", "characters": "\u22D2" }, + {"key": "⩇", "characters": "\u2A47" }, + {"key": "⩀", "characters": "\u2A40" }, + {"key": "ⅅ", "characters": "\u2145" }, + + {"key": "⁁", "characters": "\u2041" }, + {"key": "ˇ", "characters": "\u02C7" }, + {"key": "ℭ", "characters": "\u212D" }, + {"key": "⩍", "characters": "\u2A4D" }, + {"key": "Č", "characters": "\u010C" }, + {"key": "č", "characters": "\u010D" }, + {"key": "Ç", "characters": "\u00C7" }, + {"key": "Ç", "characters": "\u00C7" }, + {"key": "ç", "characters": "\u00E7" }, + {"key": "ç", "characters": "\u00E7" }, + {"key": "Ĉ", "characters": "\u0108" }, + {"key": "ĉ", "characters": "\u0109" }, + {"key": "∰", "characters": "\u2230" }, + {"key": "⩌", "characters": "\u2A4C" }, + {"key": "⩐", "characters": "\u2A50" }, + {"key": "Ċ", "characters": "\u010A" }, + {"key": "ċ", "characters": "\u010B" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "¸", "characters": "\u00B8" }, + {"key": "⦲", "characters": "\u29B2" }, + {"key": "¢", "characters": "\u00A2" }, + {"key": "¢", "characters": "\u00A2" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "·", "characters": "\u00B7" }, + + {"key": "ℭ", "characters": "\u212D" }, + {"key": "Ч", "characters": "\u0427" }, + {"key": "ч", "characters": "\u0447" }, + {"key": "✓", "characters": "\u2713" }, + {"key": "✓", "characters": "\u2713" }, + {"key": "Χ", "characters": "\u03A7" }, + {"key": "χ", "characters": "\u03C7" }, + {"key": "ˆ", "characters": "\u02C6" }, + {"key": "≗", "characters": "\u2257" }, + {"key": "↺", "characters": "\u21BA" }, + {"key": "↻", "characters": "\u21BB" }, + {"key": "⊛", "characters": "\u229B" }, + {"key": "⊚", "characters": "\u229A" }, + {"key": "⊝", "characters": "\u229D" }, + {"key": "⊙", "characters": "\u2299" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "Ⓢ", "characters": "\u24C8" }, + {"key": "⊖", "characters": "\u2296" }, + {"key": "⊕", "characters": "\u2295" }, + {"key": "⊗", "characters": "\u2297" }, + {"key": "○", "characters": "\u25CB" }, + {"key": "⧃", "characters": "\u29C3" }, + {"key": "≗", "characters": "\u2257" }, + {"key": "⨐", "characters": "\u2A10" }, + {"key": "⫯", "characters": "\u2AEF" }, + {"key": "⧂", "characters": "\u29C2" }, + {"key": "∲", "characters": "\u2232" }, + {"key": "”", "characters": "\u201D" }, + {"key": "’", "characters": "\u2019" }, + {"key": "♣", "characters": "\u2663" }, + {"key": "♣", "characters": "\u2663" }, + {"key": ":", "characters": "\u003A" }, + {"key": "∷", "characters": "\u2237" }, + {"key": "⩴", "characters": "\u2A74" }, + {"key": "≔", "characters": "\u2254" }, + {"key": "≔", "characters": "\u2254" }, + {"key": ",", "characters": "\u002C" }, + {"key": "@", "characters": "\u0040" }, + {"key": "∁", "characters": "\u2201" }, + {"key": "∘", "characters": "\u2218" }, + {"key": "∁", "characters": "\u2201" }, + {"key": "ℂ", "characters": "\u2102" }, + {"key": "≅", "characters": "\u2245" }, + {"key": "⩭", "characters": "\u2A6D" }, + {"key": "≡", "characters": "\u2261" }, + {"key": "∮", "characters": "\u222E" }, + {"key": "∯", "characters": "\u222F" }, + {"key": "∮", "characters": "\u222E" }, + + {"key": "ℂ", "characters": "\u2102" }, + {"key": "∐", "characters": "\u2210" }, + {"key": "∐", "characters": "\u2210" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "©", "characters": "\u00A9" }, + {"key": "℗", "characters": "\u2117" }, + {"key": "∳", "characters": "\u2233" }, + {"key": "↵", "characters": "\u21B5" }, + {"key": "✗", "characters": "\u2717" }, + {"key": "⨯", "characters": "\u2A2F" }, + + + {"key": "⫏", "characters": "\u2ACF" }, + {"key": "⫑", "characters": "\u2AD1" }, + {"key": "⫐", "characters": "\u2AD0" }, + {"key": "⫒", "characters": "\u2AD2" }, + {"key": "⋯", "characters": "\u22EF" }, + {"key": "⤸", "characters": "\u2938" }, + {"key": "⤵", "characters": "\u2935" }, + {"key": "⋞", "characters": "\u22DE" }, + {"key": "⋟", "characters": "\u22DF" }, + {"key": "↶", "characters": "\u21B6" }, + {"key": "⤽", "characters": "\u293D" }, + {"key": "⩈", "characters": "\u2A48" }, + {"key": "⩆", "characters": "\u2A46" }, + {"key": "≍", "characters": "\u224D" }, + {"key": "∪", "characters": "\u222A" }, + {"key": "⋓", "characters": "\u22D3" }, + {"key": "⩊", "characters": "\u2A4A" }, + {"key": "⊍", "characters": "\u228D" }, + {"key": "⩅", "characters": "\u2A45" }, + + {"key": "↷", "characters": "\u21B7" }, + {"key": "⤼", "characters": "\u293C" }, + {"key": "⋞", "characters": "\u22DE" }, + {"key": "⋟", "characters": "\u22DF" }, + {"key": "⋎", "characters": "\u22CE" }, + {"key": "⋏", "characters": "\u22CF" }, + {"key": "¤", "characters": "\u00A4" }, + {"key": "¤", "characters": "\u00A4" }, + {"key": "↶", "characters": "\u21B6" }, + {"key": "↷", "characters": "\u21B7" }, + {"key": "⋎", "characters": "\u22CE" }, + {"key": "⋏", "characters": "\u22CF" }, + {"key": "∲", "characters": "\u2232" }, + {"key": "∱", "characters": "\u2231" }, + {"key": "⌭", "characters": "\u232D" }, + {"key": "†", "characters": "\u2020" }, + {"key": "‡", "characters": "\u2021" }, + {"key": "ℸ", "characters": "\u2138" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "↡", "characters": "\u21A1" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "‐", "characters": "\u2010" }, + {"key": "⫤", "characters": "\u2AE4" }, + {"key": "⊣", "characters": "\u22A3" }, + {"key": "⤏", "characters": "\u290F" }, + {"key": "˝", "characters": "\u02DD" }, + {"key": "Ď", "characters": "\u010E" }, + {"key": "ď", "characters": "\u010F" }, + {"key": "Д", "characters": "\u0414" }, + {"key": "д", "characters": "\u0434" }, + {"key": "‡", "characters": "\u2021" }, + {"key": "⇊", "characters": "\u21CA" }, + {"key": "ⅅ", "characters": "\u2145" }, + {"key": "ⅆ", "characters": "\u2146" }, + {"key": "⤑", "characters": "\u2911" }, + {"key": "⩷", "characters": "\u2A77" }, + {"key": "°", "characters": "\u00B0" }, + {"key": "°", "characters": "\u00B0" }, + {"key": "∇", "characters": "\u2207" }, + {"key": "Δ", "characters": "\u0394" }, + {"key": "δ", "characters": "\u03B4" }, + {"key": "⦱", "characters": "\u29B1" }, + {"key": "⥿", "characters": "\u297F" }, + + + {"key": "⥥", "characters": "\u2965" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "´", "characters": "\u00B4" }, + {"key": "˙", "characters": "\u02D9" }, + {"key": "˝", "characters": "\u02DD" }, + {"key": "`", "characters": "\u0060" }, + {"key": "˜", "characters": "\u02DC" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "⋄", "characters": "\u22C4" }, + {"key": "♦", "characters": "\u2666" }, + {"key": "♦", "characters": "\u2666" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "ⅆ", "characters": "\u2146" }, + {"key": "ϝ", "characters": "\u03DD" }, + {"key": "⋲", "characters": "\u22F2" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "÷", "characters": "\u00F7" }, + {"key": "⋇", "characters": "\u22C7" }, + {"key": "⋇", "characters": "\u22C7" }, + {"key": "Ђ", "characters": "\u0402" }, + {"key": "ђ", "characters": "\u0452" }, + {"key": "⌞", "characters": "\u231E" }, + {"key": "⌍", "characters": "\u230D" }, + {"key": "$", "characters": "\u0024" }, + + + {"key": "¨", "characters": "\u00A8" }, + {"key": "˙", "characters": "\u02D9" }, + {"key": "⃜", "characters": "\u20DC" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "≑", "characters": "\u2251" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "∸", "characters": "\u2238" }, + {"key": "∔", "characters": "\u2214" }, + {"key": "⊡", "characters": "\u22A1" }, + {"key": "⌆", "characters": "\u2306" }, + {"key": "∯", "characters": "\u222F" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "⫤", "characters": "\u2AE4" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "⟹", "characters": "\u27F9" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⊨", "characters": "\u22A8" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⤓", "characters": "\u2913" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "⇓", "characters": "\u21D3" }, + {"key": "⇵", "characters": "\u21F5" }, + {"key": "̑", "characters": "\u0311" }, + {"key": "⇊", "characters": "\u21CA" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "⥐", "characters": "\u2950" }, + {"key": "⥞", "characters": "\u295E" }, + {"key": "⥖", "characters": "\u2956" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "⥟", "characters": "\u295F" }, + {"key": "⥗", "characters": "\u2957" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "↧", "characters": "\u21A7" }, + {"key": "⊤", "characters": "\u22A4" }, + {"key": "⤐", "characters": "\u2910" }, + {"key": "⌟", "characters": "\u231F" }, + {"key": "⌌", "characters": "\u230C" }, + + + {"key": "Ѕ", "characters": "\u0405" }, + {"key": "ѕ", "characters": "\u0455" }, + {"key": "⧶", "characters": "\u29F6" }, + {"key": "Đ", "characters": "\u0110" }, + {"key": "đ", "characters": "\u0111" }, + {"key": "⋱", "characters": "\u22F1" }, + {"key": "▿", "characters": "\u25BF" }, + {"key": "▾", "characters": "\u25BE" }, + {"key": "⇵", "characters": "\u21F5" }, + {"key": "⥯", "characters": "\u296F" }, + {"key": "⦦", "characters": "\u29A6" }, + {"key": "Џ", "characters": "\u040F" }, + {"key": "џ", "characters": "\u045F" }, + {"key": "⟿", "characters": "\u27FF" }, + {"key": "É", "characters": "\u00C9" }, + {"key": "É", "characters": "\u00C9" }, + {"key": "é", "characters": "\u00E9" }, + {"key": "é", "characters": "\u00E9" }, + {"key": "⩮", "characters": "\u2A6E" }, + {"key": "Ě", "characters": "\u011A" }, + {"key": "ě", "characters": "\u011B" }, + {"key": "Ê", "characters": "\u00CA" }, + {"key": "Ê", "characters": "\u00CA" }, + {"key": "ê", "characters": "\u00EA" }, + {"key": "ê", "characters": "\u00EA" }, + {"key": "≖", "characters": "\u2256" }, + {"key": "≕", "characters": "\u2255" }, + {"key": "Э", "characters": "\u042D" }, + {"key": "э", "characters": "\u044D" }, + {"key": "⩷", "characters": "\u2A77" }, + {"key": "Ė", "characters": "\u0116" }, + {"key": "ė", "characters": "\u0117" }, + {"key": "≑", "characters": "\u2251" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "≒", "characters": "\u2252" }, + + + {"key": "⪚", "characters": "\u2A9A" }, + {"key": "È", "characters": "\u00C8" }, + {"key": "È", "characters": "\u00C8" }, + {"key": "è", "characters": "\u00E8" }, + {"key": "è", "characters": "\u00E8" }, + {"key": "⪖", "characters": "\u2A96" }, + {"key": "⪘", "characters": "\u2A98" }, + {"key": "⪙", "characters": "\u2A99" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⏧", "characters": "\u23E7" }, + {"key": "ℓ", "characters": "\u2113" }, + {"key": "⪕", "characters": "\u2A95" }, + {"key": "⪗", "characters": "\u2A97" }, + {"key": "Ē", "characters": "\u0112" }, + {"key": "ē", "characters": "\u0113" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "◻", "characters": "\u25FB" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "▫", "characters": "\u25AB" }, + {"key": " ", "characters": "\u2004" }, + {"key": " ", "characters": "\u2005" }, + {"key": " ", "characters": "\u2003" }, + {"key": "Ŋ", "characters": "\u014A" }, + {"key": "ŋ", "characters": "\u014B" }, + {"key": " ", "characters": "\u2002" }, + {"key": "Ę", "characters": "\u0118" }, + {"key": "ę", "characters": "\u0119" }, + + + {"key": "⋕", "characters": "\u22D5" }, + {"key": "⧣", "characters": "\u29E3" }, + {"key": "⩱", "characters": "\u2A71" }, + {"key": "ε", "characters": "\u03B5" }, + {"key": "Ε", "characters": "\u0395" }, + {"key": "ε", "characters": "\u03B5" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "≖", "characters": "\u2256" }, + {"key": "≕", "characters": "\u2255" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "⪖", "characters": "\u2A96" }, + {"key": "⪕", "characters": "\u2A95" }, + {"key": "⩵", "characters": "\u2A75" }, + {"key": "=", "characters": "\u003D" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "≟", "characters": "\u225F" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "≡", "characters": "\u2261" }, + {"key": "⩸", "characters": "\u2A78" }, + {"key": "⧥", "characters": "\u29E5" }, + {"key": "⥱", "characters": "\u2971" }, + {"key": "≓", "characters": "\u2253" }, + {"key": "ℯ", "characters": "\u212F" }, + {"key": "ℰ", "characters": "\u2130" }, + {"key": "≐", "characters": "\u2250" }, + {"key": "⩳", "characters": "\u2A73" }, + {"key": "≂", "characters": "\u2242" }, + {"key": "Η", "characters": "\u0397" }, + {"key": "η", "characters": "\u03B7" }, + {"key": "Ð", "characters": "\u00D0" }, + {"key": "Ð", "characters": "\u00D0" }, + {"key": "ð", "characters": "\u00F0" }, + {"key": "ð", "characters": "\u00F0" }, + {"key": "Ë", "characters": "\u00CB" }, + {"key": "Ë", "characters": "\u00CB" }, + {"key": "ë", "characters": "\u00EB" }, + {"key": "ë", "characters": "\u00EB" }, + {"key": "€", "characters": "\u20AC" }, + {"key": "!", "characters": "\u0021" }, + {"key": "∃", "characters": "\u2203" }, + {"key": "∃", "characters": "\u2203" }, + {"key": "ℰ", "characters": "\u2130" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "ⅇ", "characters": "\u2147" }, + {"key": "≒", "characters": "\u2252" }, + {"key": "Ф", "characters": "\u0424" }, + {"key": "ф", "characters": "\u0444" }, + {"key": "♀", "characters": "\u2640" }, + {"key": "ffi", "characters": "\uFB03" }, + {"key": "ff", "characters": "\uFB00" }, + {"key": "ffl", "characters": "\uFB04" }, + + + {"key": "fi", "characters": "\uFB01" }, + {"key": "◼", "characters": "\u25FC" }, + {"key": "▪", "characters": "\u25AA" }, + + {"key": "♭", "characters": "\u266D" }, + {"key": "fl", "characters": "\uFB02" }, + {"key": "▱", "characters": "\u25B1" }, + {"key": "ƒ", "characters": "\u0192" }, + + + {"key": "∀", "characters": "\u2200" }, + {"key": "∀", "characters": "\u2200" }, + {"key": "⋔", "characters": "\u22D4" }, + {"key": "⫙", "characters": "\u2AD9" }, + {"key": "ℱ", "characters": "\u2131" }, + {"key": "⨍", "characters": "\u2A0D" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "⅓", "characters": "\u2153" }, + {"key": "¼", "characters": "\u00BC" }, + {"key": "¼", "characters": "\u00BC" }, + {"key": "⅕", "characters": "\u2155" }, + {"key": "⅙", "characters": "\u2159" }, + {"key": "⅛", "characters": "\u215B" }, + {"key": "⅔", "characters": "\u2154" }, + {"key": "⅖", "characters": "\u2156" }, + {"key": "¾", "characters": "\u00BE" }, + {"key": "¾", "characters": "\u00BE" }, + {"key": "⅗", "characters": "\u2157" }, + {"key": "⅜", "characters": "\u215C" }, + {"key": "⅘", "characters": "\u2158" }, + {"key": "⅚", "characters": "\u215A" }, + {"key": "⅝", "characters": "\u215D" }, + {"key": "⅞", "characters": "\u215E" }, + {"key": "⁄", "characters": "\u2044" }, + {"key": "⌢", "characters": "\u2322" }, + + {"key": "ℱ", "characters": "\u2131" }, + {"key": "ǵ", "characters": "\u01F5" }, + {"key": "Γ", "characters": "\u0393" }, + {"key": "γ", "characters": "\u03B3" }, + {"key": "Ϝ", "characters": "\u03DC" }, + {"key": "ϝ", "characters": "\u03DD" }, + {"key": "⪆", "characters": "\u2A86" }, + {"key": "Ğ", "characters": "\u011E" }, + {"key": "ğ", "characters": "\u011F" }, + {"key": "Ģ", "characters": "\u0122" }, + {"key": "Ĝ", "characters": "\u011C" }, + {"key": "ĝ", "characters": "\u011D" }, + {"key": "Г", "characters": "\u0413" }, + {"key": "г", "characters": "\u0433" }, + {"key": "Ġ", "characters": "\u0120" }, + {"key": "ġ", "characters": "\u0121" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⪌", "characters": "\u2A8C" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "⪩", "characters": "\u2AA9" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "⪀", "characters": "\u2A80" }, + {"key": "⪂", "characters": "\u2A82" }, + {"key": "⪄", "characters": "\u2A84" }, + + {"key": "⪔", "characters": "\u2A94" }, + + + {"key": "≫", "characters": "\u226B" }, + {"key": "⋙", "characters": "\u22D9" }, + {"key": "⋙", "characters": "\u22D9" }, + {"key": "ℷ", "characters": "\u2137" }, + {"key": "Ѓ", "characters": "\u0403" }, + {"key": "ѓ", "characters": "\u0453" }, + {"key": "⪥", "characters": "\u2AA5" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "⪒", "characters": "\u2A92" }, + {"key": "⪤", "characters": "\u2AA4" }, + {"key": "⪊", "characters": "\u2A8A" }, + {"key": "⪊", "characters": "\u2A8A" }, + {"key": "⪈", "characters": "\u2A88" }, + {"key": "≩", "characters": "\u2269" }, + {"key": "⪈", "characters": "\u2A88" }, + {"key": "≩", "characters": "\u2269" }, + {"key": "⋧", "characters": "\u22E7" }, + + + {"key": "`", "characters": "\u0060" }, + {"key": "≥", "characters": "\u2265" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "≧", "characters": "\u2267" }, + {"key": "⪢", "characters": "\u2AA2" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "⩾", "characters": "\u2A7E" }, + {"key": "≳", "characters": "\u2273" }, + + {"key": "ℊ", "characters": "\u210A" }, + {"key": "≳", "characters": "\u2273" }, + {"key": "⪎", "characters": "\u2A8E" }, + {"key": "⪐", "characters": "\u2A90" }, + {"key": "⪧", "characters": "\u2AA7" }, + {"key": "⩺", "characters": "\u2A7A" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": ">", "characters": "\u003E" }, + {"key": "≫", "characters": "\u226B" }, + {"key": "⋗", "characters": "\u22D7" }, + {"key": "⦕", "characters": "\u2995" }, + {"key": "⩼", "characters": "\u2A7C" }, + {"key": "⪆", "characters": "\u2A86" }, + {"key": "⥸", "characters": "\u2978" }, + {"key": "⋗", "characters": "\u22D7" }, + {"key": "⋛", "characters": "\u22DB" }, + {"key": "⪌", "characters": "\u2A8C" }, + {"key": "≷", "characters": "\u2277" }, + {"key": "≳", "characters": "\u2273" }, + + + {"key": "ˇ", "characters": "\u02C7" }, + {"key": " ", "characters": "\u200A" }, + {"key": "½", "characters": "\u00BD" }, + {"key": "ℋ", "characters": "\u210B" }, + {"key": "Ъ", "characters": "\u042A" }, + {"key": "ъ", "characters": "\u044A" }, + {"key": "⥈", "characters": "\u2948" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "↭", "characters": "\u21AD" }, + {"key": "^", "characters": "\u005E" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "Ĥ", "characters": "\u0124" }, + {"key": "ĥ", "characters": "\u0125" }, + {"key": "♥", "characters": "\u2665" }, + {"key": "♥", "characters": "\u2665" }, + {"key": "…", "characters": "\u2026" }, + {"key": "⊹", "characters": "\u22B9" }, + + {"key": "ℌ", "characters": "\u210C" }, + {"key": "ℋ", "characters": "\u210B" }, + {"key": "⤥", "characters": "\u2925" }, + {"key": "⤦", "characters": "\u2926" }, + {"key": "⇿", "characters": "\u21FF" }, + {"key": "∻", "characters": "\u223B" }, + {"key": "↩", "characters": "\u21A9" }, + {"key": "↪", "characters": "\u21AA" }, + + {"key": "ℍ", "characters": "\u210D" }, + {"key": "―", "characters": "\u2015" }, + {"key": "─", "characters": "\u2500" }, + + {"key": "ℋ", "characters": "\u210B" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "Ħ", "characters": "\u0126" }, + {"key": "ħ", "characters": "\u0127" }, + {"key": "≎", "characters": "\u224E" }, + {"key": "≏", "characters": "\u224F" }, + {"key": "⁃", "characters": "\u2043" }, + {"key": "‐", "characters": "\u2010" }, + {"key": "Í", "characters": "\u00CD" }, + {"key": "Í", "characters": "\u00CD" }, + {"key": "í", "characters": "\u00ED" }, + {"key": "í", "characters": "\u00ED" }, + {"key": "⁣", "characters": "\u2063" }, + {"key": "Î", "characters": "\u00CE" }, + {"key": "Î", "characters": "\u00CE" }, + {"key": "î", "characters": "\u00EE" }, + {"key": "î", "characters": "\u00EE" }, + {"key": "И", "characters": "\u0418" }, + {"key": "и", "characters": "\u0438" }, + {"key": "İ", "characters": "\u0130" }, + {"key": "Е", "characters": "\u0415" }, + {"key": "е", "characters": "\u0435" }, + {"key": "¡", "characters": "\u00A1" }, + {"key": "¡", "characters": "\u00A1" }, + {"key": "⇔", "characters": "\u21D4" }, + + {"key": "ℑ", "characters": "\u2111" }, + {"key": "Ì", "characters": "\u00CC" }, + {"key": "Ì", "characters": "\u00CC" }, + {"key": "ì", "characters": "\u00EC" }, + {"key": "ì", "characters": "\u00EC" }, + {"key": "ⅈ", "characters": "\u2148" }, + {"key": "⨌", "characters": "\u2A0C" }, + {"key": "∭", "characters": "\u222D" }, + {"key": "⧜", "characters": "\u29DC" }, + {"key": "℩", "characters": "\u2129" }, + {"key": "IJ", "characters": "\u0132" }, + {"key": "ij", "characters": "\u0133" }, + {"key": "Ī", "characters": "\u012A" }, + {"key": "ī", "characters": "\u012B" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "ⅈ", "characters": "\u2148" }, + {"key": "ℐ", "characters": "\u2110" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "ı", "characters": "\u0131" }, + {"key": "ℑ", "characters": "\u2111" }, + {"key": "⊷", "characters": "\u22B7" }, + {"key": "Ƶ", "characters": "\u01B5" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "℅", "characters": "\u2105" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "∞", "characters": "\u221E" }, + {"key": "⧝", "characters": "\u29DD" }, + {"key": "ı", "characters": "\u0131" }, + {"key": "⊺", "characters": "\u22BA" }, + {"key": "∫", "characters": "\u222B" }, + {"key": "∬", "characters": "\u222C" }, + {"key": "ℤ", "characters": "\u2124" }, + {"key": "∫", "characters": "\u222B" }, + {"key": "⊺", "characters": "\u22BA" }, + {"key": "⋂", "characters": "\u22C2" }, + {"key": "⨗", "characters": "\u2A17" }, + {"key": "⨼", "characters": "\u2A3C" }, + {"key": "⁣", "characters": "\u2063" }, + {"key": "⁢", "characters": "\u2062" }, + {"key": "Ё", "characters": "\u0401" }, + {"key": "ё", "characters": "\u0451" }, + {"key": "Į", "characters": "\u012E" }, + {"key": "į", "characters": "\u012F" }, + + + {"key": "Ι", "characters": "\u0399" }, + {"key": "ι", "characters": "\u03B9" }, + {"key": "⨼", "characters": "\u2A3C" }, + {"key": "¿", "characters": "\u00BF" }, + {"key": "¿", "characters": "\u00BF" }, + + {"key": "ℐ", "characters": "\u2110" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⋵", "characters": "\u22F5" }, + {"key": "⋹", "characters": "\u22F9" }, + {"key": "⋴", "characters": "\u22F4" }, + {"key": "⋳", "characters": "\u22F3" }, + {"key": "∈", "characters": "\u2208" }, + {"key": "⁢", "characters": "\u2062" }, + {"key": "Ĩ", "characters": "\u0128" }, + {"key": "ĩ", "characters": "\u0129" }, + {"key": "І", "characters": "\u0406" }, + {"key": "і", "characters": "\u0456" }, + {"key": "Ï", "characters": "\u00CF" }, + {"key": "Ï", "characters": "\u00CF" }, + {"key": "ï", "characters": "\u00EF" }, + {"key": "ï", "characters": "\u00EF" }, + {"key": "Ĵ", "characters": "\u0134" }, + {"key": "ĵ", "characters": "\u0135" }, + {"key": "Й", "characters": "\u0419" }, + {"key": "й", "characters": "\u0439" }, + + + {"key": "ȷ", "characters": "\u0237" }, + + + + + {"key": "Ј", "characters": "\u0408" }, + {"key": "ј", "characters": "\u0458" }, + {"key": "Є", "characters": "\u0404" }, + {"key": "є", "characters": "\u0454" }, + {"key": "Κ", "characters": "\u039A" }, + {"key": "κ", "characters": "\u03BA" }, + {"key": "ϰ", "characters": "\u03F0" }, + {"key": "Ķ", "characters": "\u0136" }, + {"key": "ķ", "characters": "\u0137" }, + {"key": "К", "characters": "\u041A" }, + {"key": "к", "characters": "\u043A" }, + + + {"key": "ĸ", "characters": "\u0138" }, + {"key": "Х", "characters": "\u0425" }, + {"key": "х", "characters": "\u0445" }, + {"key": "Ќ", "characters": "\u040C" }, + {"key": "ќ", "characters": "\u045C" }, + + + + + {"key": "⇚", "characters": "\u21DA" }, + {"key": "Ĺ", "characters": "\u0139" }, + {"key": "ĺ", "characters": "\u013A" }, + {"key": "⦴", "characters": "\u29B4" }, + {"key": "ℒ", "characters": "\u2112" }, + {"key": "Λ", "characters": "\u039B" }, + {"key": "λ", "characters": "\u03BB" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⟪", "characters": "\u27EA" }, + {"key": "⦑", "characters": "\u2991" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⪅", "characters": "\u2A85" }, + {"key": "ℒ", "characters": "\u2112" }, + {"key": "«", "characters": "\u00AB" }, + {"key": "«", "characters": "\u00AB" }, + {"key": "⇤", "characters": "\u21E4" }, + {"key": "⤟", "characters": "\u291F" }, + {"key": "←", "characters": "\u2190" }, + {"key": "↞", "characters": "\u219E" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⤝", "characters": "\u291D" }, + {"key": "↩", "characters": "\u21A9" }, + {"key": "↫", "characters": "\u21AB" }, + {"key": "⤹", "characters": "\u2939" }, + {"key": "⥳", "characters": "\u2973" }, + {"key": "↢", "characters": "\u21A2" }, + {"key": "⤙", "characters": "\u2919" }, + {"key": "⤛", "characters": "\u291B" }, + {"key": "⪫", "characters": "\u2AAB" }, + {"key": "⪭", "characters": "\u2AAD" }, + + {"key": "⤌", "characters": "\u290C" }, + {"key": "⤎", "characters": "\u290E" }, + {"key": "❲", "characters": "\u2772" }, + {"key": "{", "characters": "\u007B" }, + {"key": "[", "characters": "\u005B" }, + {"key": "⦋", "characters": "\u298B" }, + {"key": "⦏", "characters": "\u298F" }, + {"key": "⦍", "characters": "\u298D" }, + {"key": "Ľ", "characters": "\u013D" }, + {"key": "ľ", "characters": "\u013E" }, + {"key": "Ļ", "characters": "\u013B" }, + {"key": "ļ", "characters": "\u013C" }, + {"key": "⌈", "characters": "\u2308" }, + {"key": "{", "characters": "\u007B" }, + {"key": "Л", "characters": "\u041B" }, + {"key": "л", "characters": "\u043B" }, + {"key": "⤶", "characters": "\u2936" }, + {"key": "“", "characters": "\u201C" }, + {"key": "„", "characters": "\u201E" }, + {"key": "⥧", "characters": "\u2967" }, + {"key": "⥋", "characters": "\u294B" }, + {"key": "↲", "characters": "\u21B2" }, + {"key": "≤", "characters": "\u2264" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "⟨", "characters": "\u27E8" }, + {"key": "⇤", "characters": "\u21E4" }, + {"key": "←", "characters": "\u2190" }, + {"key": "←", "characters": "\u2190" }, + {"key": "⇐", "characters": "\u21D0" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "↢", "characters": "\u21A2" }, + {"key": "⌈", "characters": "\u2308" }, + {"key": "⟦", "characters": "\u27E6" }, + {"key": "⥡", "characters": "\u2961" }, + {"key": "⥙", "characters": "\u2959" }, + {"key": "⇃", "characters": "\u21C3" }, + {"key": "⌊", "characters": "\u230A" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⇇", "characters": "\u21C7" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "↔", "characters": "\u2194" }, + {"key": "⇔", "characters": "\u21D4" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "↭", "characters": "\u21AD" }, + {"key": "⥎", "characters": "\u294E" }, + {"key": "↤", "characters": "\u21A4" }, + {"key": "⊣", "characters": "\u22A3" }, + {"key": "⥚", "characters": "\u295A" }, + {"key": "⋋", "characters": "\u22CB" }, + {"key": "⧏", "characters": "\u29CF" }, + {"key": "⊲", "characters": "\u22B2" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "⥑", "characters": "\u2951" }, + {"key": "⥠", "characters": "\u2960" }, + {"key": "⥘", "characters": "\u2958" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "⥒", "characters": "\u2952" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⪋", "characters": "\u2A8B" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "≤", "characters": "\u2264" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "⪨", "characters": "\u2AA8" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "⩿", "characters": "\u2A7F" }, + {"key": "⪁", "characters": "\u2A81" }, + {"key": "⪃", "characters": "\u2A83" }, + + {"key": "⪓", "characters": "\u2A93" }, + {"key": "⪅", "characters": "\u2A85" }, + {"key": "⋖", "characters": "\u22D6" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "⪋", "characters": "\u2A8B" }, + {"key": "⋚", "characters": "\u22DA" }, + {"key": "≦", "characters": "\u2266" }, + {"key": "≶", "characters": "\u2276" }, + {"key": "≶", "characters": "\u2276" }, + {"key": "⪡", "characters": "\u2AA1" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⩽", "characters": "\u2A7D" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⥼", "characters": "\u297C" }, + {"key": "⌊", "characters": "\u230A" }, + + + {"key": "≶", "characters": "\u2276" }, + {"key": "⪑", "characters": "\u2A91" }, + {"key": "⥢", "characters": "\u2962" }, + {"key": "↽", "characters": "\u21BD" }, + {"key": "↼", "characters": "\u21BC" }, + {"key": "⥪", "characters": "\u296A" }, + {"key": "▄", "characters": "\u2584" }, + {"key": "Љ", "characters": "\u0409" }, + {"key": "љ", "characters": "\u0459" }, + {"key": "⇇", "characters": "\u21C7" }, + {"key": "≪", "characters": "\u226A" }, + {"key": "⋘", "characters": "\u22D8" }, + {"key": "⌞", "characters": "\u231E" }, + {"key": "⇚", "characters": "\u21DA" }, + {"key": "⥫", "characters": "\u296B" }, + {"key": "◺", "characters": "\u25FA" }, + {"key": "Ŀ", "characters": "\u013F" }, + {"key": "ŀ", "characters": "\u0140" }, + {"key": "⎰", "characters": "\u23B0" }, + {"key": "⎰", "characters": "\u23B0" }, + {"key": "⪉", "characters": "\u2A89" }, + {"key": "⪉", "characters": "\u2A89" }, + {"key": "⪇", "characters": "\u2A87" }, + {"key": "≨", "characters": "\u2268" }, + {"key": "⪇", "characters": "\u2A87" }, + {"key": "≨", "characters": "\u2268" }, + {"key": "⋦", "characters": "\u22E6" }, + {"key": "⟬", "characters": "\u27EC" }, + {"key": "⇽", "characters": "\u21FD" }, + {"key": "⟦", "characters": "\u27E6" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "⟼", "characters": "\u27FC" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟹", "characters": "\u27F9" }, + {"key": "↫", "characters": "\u21AB" }, + {"key": "↬", "characters": "\u21AC" }, + {"key": "⦅", "characters": "\u2985" }, + + + {"key": "⨭", "characters": "\u2A2D" }, + {"key": "⨴", "characters": "\u2A34" }, + {"key": "∗", "characters": "\u2217" }, + {"key": "_", "characters": "\u005F" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "◊", "characters": "\u25CA" }, + {"key": "◊", "characters": "\u25CA" }, + {"key": "⧫", "characters": "\u29EB" }, + {"key": "(", "characters": "\u0028" }, + {"key": "⦓", "characters": "\u2993" }, + {"key": "⇆", "characters": "\u21C6" }, + {"key": "⌟", "characters": "\u231F" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "⥭", "characters": "\u296D" }, + {"key": "‎", "characters": "\u200E" }, + {"key": "⊿", "characters": "\u22BF" }, + {"key": "‹", "characters": "\u2039" }, + + {"key": "ℒ", "characters": "\u2112" }, + {"key": "↰", "characters": "\u21B0" }, + {"key": "↰", "characters": "\u21B0" }, + {"key": "≲", "characters": "\u2272" }, + {"key": "⪍", "characters": "\u2A8D" }, + {"key": "⪏", "characters": "\u2A8F" }, + {"key": "[", "characters": "\u005B" }, + {"key": "‘", "characters": "\u2018" }, + {"key": "‚", "characters": "\u201A" }, + {"key": "Ł", "characters": "\u0141" }, + {"key": "ł", "characters": "\u0142" }, + {"key": "⪦", "characters": "\u2AA6" }, + {"key": "⩹", "characters": "\u2A79" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "<", "characters": "\u003C" }, + {"key": "≪", "characters": "\u226A" }, + {"key": "⋖", "characters": "\u22D6" }, + {"key": "⋋", "characters": "\u22CB" }, + {"key": "⋉", "characters": "\u22C9" }, + {"key": "⥶", "characters": "\u2976" }, + {"key": "⩻", "characters": "\u2A7B" }, + {"key": "◃", "characters": "\u25C3" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "◂", "characters": "\u25C2" }, + {"key": "⦖", "characters": "\u2996" }, + {"key": "⥊", "characters": "\u294A" }, + {"key": "⥦", "characters": "\u2966" }, + + + {"key": "¯", "characters": "\u00AF" }, + {"key": "¯", "characters": "\u00AF" }, + {"key": "♂", "characters": "\u2642" }, + {"key": "✠", "characters": "\u2720" }, + {"key": "✠", "characters": "\u2720" }, + {"key": "⤅", "characters": "\u2905" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "↧", "characters": "\u21A7" }, + {"key": "↤", "characters": "\u21A4" }, + {"key": "↥", "characters": "\u21A5" }, + {"key": "▮", "characters": "\u25AE" }, + {"key": "⨩", "characters": "\u2A29" }, + {"key": "М", "characters": "\u041C" }, + {"key": "м", "characters": "\u043C" }, + {"key": "—", "characters": "\u2014" }, + {"key": "∺", "characters": "\u223A" }, + {"key": "∡", "characters": "\u2221" }, + {"key": " ", "characters": "\u205F" }, + {"key": "ℳ", "characters": "\u2133" }, + + + {"key": "℧", "characters": "\u2127" }, + {"key": "µ", "characters": "\u00B5" }, + {"key": "µ", "characters": "\u00B5" }, + {"key": "*", "characters": "\u002A" }, + {"key": "⫰", "characters": "\u2AF0" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "·", "characters": "\u00B7" }, + {"key": "⊟", "characters": "\u229F" }, + {"key": "−", "characters": "\u2212" }, + {"key": "∸", "characters": "\u2238" }, + {"key": "⨪", "characters": "\u2A2A" }, + {"key": "∓", "characters": "\u2213" }, + {"key": "⫛", "characters": "\u2ADB" }, + {"key": "…", "characters": "\u2026" }, + {"key": "∓", "characters": "\u2213" }, + {"key": "⊧", "characters": "\u22A7" }, + + + {"key": "∓", "characters": "\u2213" }, + + {"key": "ℳ", "characters": "\u2133" }, + {"key": "∾", "characters": "\u223E" }, + {"key": "Μ", "characters": "\u039C" }, + {"key": "μ", "characters": "\u03BC" }, + {"key": "⊸", "characters": "\u22B8" }, + {"key": "⊸", "characters": "\u22B8" }, + {"key": "∇", "characters": "\u2207" }, + {"key": "Ń", "characters": "\u0143" }, + {"key": "ń", "characters": "\u0144" }, + + {"key": "≉", "characters": "\u2249" }, + + + {"key": "ʼn", "characters": "\u0149" }, + {"key": "≉", "characters": "\u2249" }, + {"key": "♮", "characters": "\u266E" }, + {"key": "ℕ", "characters": "\u2115" }, + {"key": "♮", "characters": "\u266E" }, + {"key": " ", "characters": "\u00A0" }, + {"key": " ", "characters": "\u00A0" }, + + + {"key": "⩃", "characters": "\u2A43" }, + {"key": "Ň", "characters": "\u0147" }, + {"key": "ň", "characters": "\u0148" }, + {"key": "Ņ", "characters": "\u0145" }, + {"key": "ņ", "characters": "\u0146" }, + {"key": "≇", "characters": "\u2247" }, + + {"key": "⩂", "characters": "\u2A42" }, + {"key": "Н", "characters": "\u041D" }, + {"key": "н", "characters": "\u043D" }, + {"key": "–", "characters": "\u2013" }, + {"key": "⤤", "characters": "\u2924" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "⇗", "characters": "\u21D7" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "≠", "characters": "\u2260" }, + + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "​", "characters": "\u200B" }, + {"key": "≢", "characters": "\u2262" }, + {"key": "⤨", "characters": "\u2928" }, + + {"key": "≫", "characters": "\u226B" }, + {"key": "≪", "characters": "\u226A" }, + {"key": " ", "characters": "\u000A" }, + {"key": "∄", "characters": "\u2204" }, + {"key": "∄", "characters": "\u2204" }, + + + + {"key": "≱", "characters": "\u2271" }, + {"key": "≱", "characters": "\u2271" }, + + + + + {"key": "≵", "characters": "\u2275" }, + + {"key": "≯", "characters": "\u226F" }, + {"key": "≯", "characters": "\u226F" }, + + {"key": "↮", "characters": "\u21AE" }, + {"key": "⇎", "characters": "\u21CE" }, + {"key": "⫲", "characters": "\u2AF2" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "⋼", "characters": "\u22FC" }, + {"key": "⋺", "characters": "\u22FA" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "Њ", "characters": "\u040A" }, + {"key": "њ", "characters": "\u045A" }, + {"key": "↚", "characters": "\u219A" }, + {"key": "⇍", "characters": "\u21CD" }, + {"key": "‥", "characters": "\u2025" }, + + {"key": "≰", "characters": "\u2270" }, + {"key": "↚", "characters": "\u219A" }, + {"key": "⇍", "characters": "\u21CD" }, + {"key": "↮", "characters": "\u21AE" }, + {"key": "⇎", "characters": "\u21CE" }, + {"key": "≰", "characters": "\u2270" }, + + + + {"key": "≮", "characters": "\u226E" }, + + {"key": "≴", "characters": "\u2274" }, + + {"key": "≮", "characters": "\u226E" }, + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + + {"key": "∤", "characters": "\u2224" }, + {"key": "⁠", "characters": "\u2060" }, + {"key": " ", "characters": "\u00A0" }, + + {"key": "ℕ", "characters": "\u2115" }, + {"key": "⫬", "characters": "\u2AEC" }, + {"key": "¬", "characters": "\u00AC" }, + {"key": "¬", "characters": "\u00AC" }, + {"key": "≢", "characters": "\u2262" }, + {"key": "≭", "characters": "\u226D" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "∉", "characters": "\u2209" }, + {"key": "≠", "characters": "\u2260" }, + + {"key": "∄", "characters": "\u2204" }, + {"key": "≯", "characters": "\u226F" }, + {"key": "≱", "characters": "\u2271" }, + + + {"key": "≹", "characters": "\u2279" }, + + {"key": "≵", "characters": "\u2275" }, + + + {"key": "∉", "characters": "\u2209" }, + + + {"key": "∉", "characters": "\u2209" }, + {"key": "⋷", "characters": "\u22F7" }, + {"key": "⋶", "characters": "\u22F6" }, + + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + {"key": "≮", "characters": "\u226E" }, + {"key": "≰", "characters": "\u2270" }, + {"key": "≸", "characters": "\u2278" }, + + + {"key": "≴", "characters": "\u2274" }, + + + {"key": "∌", "characters": "\u220C" }, + {"key": "∌", "characters": "\u220C" }, + {"key": "⋾", "characters": "\u22FE" }, + {"key": "⋽", "characters": "\u22FD" }, + {"key": "⊀", "characters": "\u2280" }, + + {"key": "⋠", "characters": "\u22E0" }, + {"key": "∌", "characters": "\u220C" }, + + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + + {"key": "⋢", "characters": "\u22E2" }, + + {"key": "⋣", "characters": "\u22E3" }, + + {"key": "⊈", "characters": "\u2288" }, + {"key": "⊁", "characters": "\u2281" }, + + {"key": "⋡", "characters": "\u22E1" }, + + + {"key": "⊉", "characters": "\u2289" }, + {"key": "≁", "characters": "\u2241" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "≇", "characters": "\u2247" }, + {"key": "≉", "characters": "\u2249" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "∦", "characters": "\u2226" }, + + + {"key": "⨔", "characters": "\u2A14" }, + {"key": "⊀", "characters": "\u2280" }, + {"key": "⋠", "characters": "\u22E0" }, + {"key": "⊀", "characters": "\u2280" }, + + + + {"key": "↛", "characters": "\u219B" }, + {"key": "⇏", "characters": "\u21CF" }, + + {"key": "↛", "characters": "\u219B" }, + {"key": "⇏", "characters": "\u21CF" }, + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + {"key": "⊁", "characters": "\u2281" }, + {"key": "⋡", "characters": "\u22E1" }, + + + + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "≁", "characters": "\u2241" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "≄", "characters": "\u2244" }, + {"key": "∤", "characters": "\u2224" }, + {"key": "∦", "characters": "\u2226" }, + {"key": "⋢", "characters": "\u22E2" }, + {"key": "⋣", "characters": "\u22E3" }, + {"key": "⊄", "characters": "\u2284" }, + + {"key": "⊈", "characters": "\u2288" }, + + {"key": "⊈", "characters": "\u2288" }, + + {"key": "⊁", "characters": "\u2281" }, + + {"key": "⊅", "characters": "\u2285" }, + + {"key": "⊉", "characters": "\u2289" }, + + {"key": "⊉", "characters": "\u2289" }, + + {"key": "≹", "characters": "\u2279" }, + {"key": "Ñ", "characters": "\u00D1" }, + {"key": "Ñ", "characters": "\u00D1" }, + {"key": "ñ", "characters": "\u00F1" }, + {"key": "ñ", "characters": "\u00F1" }, + {"key": "≸", "characters": "\u2278" }, + {"key": "⋪", "characters": "\u22EA" }, + {"key": "⋬", "characters": "\u22EC" }, + {"key": "⋫", "characters": "\u22EB" }, + {"key": "⋭", "characters": "\u22ED" }, + {"key": "Ν", "characters": "\u039D" }, + {"key": "ν", "characters": "\u03BD" }, + {"key": "#", "characters": "\u0023" }, + {"key": "№", "characters": "\u2116" }, + {"key": " ", "characters": "\u2007" }, + + {"key": "⊬", "characters": "\u22AC" }, + {"key": "⊭", "characters": "\u22AD" }, + {"key": "⊮", "characters": "\u22AE" }, + {"key": "⊯", "characters": "\u22AF" }, + + + {"key": "⤄", "characters": "\u2904" }, + {"key": "⧞", "characters": "\u29DE" }, + {"key": "⤂", "characters": "\u2902" }, + + + + {"key": "⤃", "characters": "\u2903" }, + + + {"key": "⤣", "characters": "\u2923" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "⇖", "characters": "\u21D6" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "⤧", "characters": "\u2927" }, + {"key": "Ó", "characters": "\u00D3" }, + {"key": "Ó", "characters": "\u00D3" }, + {"key": "ó", "characters": "\u00F3" }, + {"key": "ó", "characters": "\u00F3" }, + {"key": "⊛", "characters": "\u229B" }, + {"key": "Ô", "characters": "\u00D4" }, + {"key": "Ô", "characters": "\u00D4" }, + {"key": "ô", "characters": "\u00F4" }, + {"key": "ô", "characters": "\u00F4" }, + {"key": "⊚", "characters": "\u229A" }, + {"key": "О", "characters": "\u041E" }, + {"key": "о", "characters": "\u043E" }, + {"key": "⊝", "characters": "\u229D" }, + {"key": "Ő", "characters": "\u0150" }, + {"key": "ő", "characters": "\u0151" }, + {"key": "⨸", "characters": "\u2A38" }, + {"key": "⊙", "characters": "\u2299" }, + {"key": "⦼", "characters": "\u29BC" }, + {"key": "Œ", "characters": "\u0152" }, + {"key": "œ", "characters": "\u0153" }, + {"key": "⦿", "characters": "\u29BF" }, + + + {"key": "˛", "characters": "\u02DB" }, + {"key": "Ò", "characters": "\u00D2" }, + {"key": "Ò", "characters": "\u00D2" }, + {"key": "ò", "characters": "\u00F2" }, + {"key": "ò", "characters": "\u00F2" }, + {"key": "⧁", "characters": "\u29C1" }, + {"key": "⦵", "characters": "\u29B5" }, + {"key": "Ω", "characters": "\u03A9" }, + {"key": "∮", "characters": "\u222E" }, + {"key": "↺", "characters": "\u21BA" }, + {"key": "⦾", "characters": "\u29BE" }, + {"key": "⦻", "characters": "\u29BB" }, + {"key": "‾", "characters": "\u203E" }, + {"key": "⧀", "characters": "\u29C0" }, + {"key": "Ō", "characters": "\u014C" }, + {"key": "ō", "characters": "\u014D" }, + {"key": "Ω", "characters": "\u03A9" }, + {"key": "ω", "characters": "\u03C9" }, + {"key": "Ο", "characters": "\u039F" }, + {"key": "ο", "characters": "\u03BF" }, + {"key": "⦶", "characters": "\u29B6" }, + {"key": "⊖", "characters": "\u2296" }, + + + {"key": "⦷", "characters": "\u29B7" }, + {"key": "“", "characters": "\u201C" }, + {"key": "‘", "characters": "\u2018" }, + {"key": "⦹", "characters": "\u29B9" }, + {"key": "⊕", "characters": "\u2295" }, + {"key": "↻", "characters": "\u21BB" }, + {"key": "⩔", "characters": "\u2A54" }, + {"key": "∨", "characters": "\u2228" }, + {"key": "⩝", "characters": "\u2A5D" }, + {"key": "ℴ", "characters": "\u2134" }, + {"key": "ℴ", "characters": "\u2134" }, + {"key": "ª", "characters": "\u00AA" }, + {"key": "ª", "characters": "\u00AA" }, + {"key": "º", "characters": "\u00BA" }, + {"key": "º", "characters": "\u00BA" }, + {"key": "⊶", "characters": "\u22B6" }, + {"key": "⩖", "characters": "\u2A56" }, + {"key": "⩗", "characters": "\u2A57" }, + {"key": "⩛", "characters": "\u2A5B" }, + {"key": "Ⓢ", "characters": "\u24C8" }, + + {"key": "ℴ", "characters": "\u2134" }, + {"key": "Ø", "characters": "\u00D8" }, + {"key": "Ø", "characters": "\u00D8" }, + {"key": "ø", "characters": "\u00F8" }, + {"key": "ø", "characters": "\u00F8" }, + {"key": "⊘", "characters": "\u2298" }, + {"key": "Õ", "characters": "\u00D5" }, + {"key": "Õ", "characters": "\u00D5" }, + {"key": "õ", "characters": "\u00F5" }, + {"key": "õ", "characters": "\u00F5" }, + {"key": "⨶", "characters": "\u2A36" }, + {"key": "⨷", "characters": "\u2A37" }, + {"key": "⊗", "characters": "\u2297" }, + {"key": "Ö", "characters": "\u00D6" }, + {"key": "Ö", "characters": "\u00D6" }, + {"key": "ö", "characters": "\u00F6" }, + {"key": "ö", "characters": "\u00F6" }, + {"key": "⌽", "characters": "\u233D" }, + {"key": "‾", "characters": "\u203E" }, + {"key": "⏞", "characters": "\u23DE" }, + {"key": "⎴", "characters": "\u23B4" }, + {"key": "⏜", "characters": "\u23DC" }, + {"key": "¶", "characters": "\u00B6" }, + {"key": "¶", "characters": "\u00B6" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⫳", "characters": "\u2AF3" }, + {"key": "⫽", "characters": "\u2AFD" }, + {"key": "∂", "characters": "\u2202" }, + {"key": "∂", "characters": "\u2202" }, + {"key": "П", "characters": "\u041F" }, + {"key": "п", "characters": "\u043F" }, + {"key": "%", "characters": "\u0025" }, + {"key": ".", "characters": "\u002E" }, + {"key": "‰", "characters": "\u2030" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "‱", "characters": "\u2031" }, + + + {"key": "Φ", "characters": "\u03A6" }, + {"key": "φ", "characters": "\u03C6" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "ℳ", "characters": "\u2133" }, + {"key": "☎", "characters": "\u260E" }, + {"key": "Π", "characters": "\u03A0" }, + {"key": "π", "characters": "\u03C0" }, + {"key": "⋔", "characters": "\u22D4" }, + {"key": "ϖ", "characters": "\u03D6" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "ℎ", "characters": "\u210E" }, + {"key": "ℏ", "characters": "\u210F" }, + {"key": "⨣", "characters": "\u2A23" }, + {"key": "⊞", "characters": "\u229E" }, + {"key": "⨢", "characters": "\u2A22" }, + {"key": "+", "characters": "\u002B" }, + {"key": "∔", "characters": "\u2214" }, + {"key": "⨥", "characters": "\u2A25" }, + {"key": "⩲", "characters": "\u2A72" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "⨦", "characters": "\u2A26" }, + {"key": "⨧", "characters": "\u2A27" }, + {"key": "±", "characters": "\u00B1" }, + {"key": "ℌ", "characters": "\u210C" }, + {"key": "⨕", "characters": "\u2A15" }, + + {"key": "ℙ", "characters": "\u2119" }, + {"key": "£", "characters": "\u00A3" }, + {"key": "£", "characters": "\u00A3" }, + {"key": "⪷", "characters": "\u2AB7" }, + {"key": "⪻", "characters": "\u2ABB" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "⪷", "characters": "\u2AB7" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "≺", "characters": "\u227A" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "≼", "characters": "\u227C" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "⪹", "characters": "\u2AB9" }, + {"key": "⪵", "characters": "\u2AB5" }, + {"key": "⋨", "characters": "\u22E8" }, + {"key": "⪯", "characters": "\u2AAF" }, + {"key": "⪳", "characters": "\u2AB3" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "′", "characters": "\u2032" }, + {"key": "″", "characters": "\u2033" }, + {"key": "ℙ", "characters": "\u2119" }, + {"key": "⪹", "characters": "\u2AB9" }, + {"key": "⪵", "characters": "\u2AB5" }, + {"key": "⋨", "characters": "\u22E8" }, + {"key": "∏", "characters": "\u220F" }, + {"key": "∏", "characters": "\u220F" }, + {"key": "⌮", "characters": "\u232E" }, + {"key": "⌒", "characters": "\u2312" }, + {"key": "⌓", "characters": "\u2313" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "∷", "characters": "\u2237" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "≾", "characters": "\u227E" }, + {"key": "⊰", "characters": "\u22B0" }, + + + {"key": "Ψ", "characters": "\u03A8" }, + {"key": "ψ", "characters": "\u03C8" }, + {"key": " ", "characters": "\u2008" }, + + + {"key": "⨌", "characters": "\u2A0C" }, + + {"key": "ℚ", "characters": "\u211A" }, + {"key": "⁗", "characters": "\u2057" }, + + + {"key": "ℍ", "characters": "\u210D" }, + {"key": "⨖", "characters": "\u2A16" }, + {"key": "?", "characters": "\u003F" }, + {"key": "≟", "characters": "\u225F" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": """, "characters": "\u0022" }, + {"key": "⇛", "characters": "\u21DB" }, + + {"key": "Ŕ", "characters": "\u0154" }, + {"key": "ŕ", "characters": "\u0155" }, + {"key": "√", "characters": "\u221A" }, + {"key": "⦳", "characters": "\u29B3" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "⟫", "characters": "\u27EB" }, + {"key": "⦒", "characters": "\u2992" }, + {"key": "⦥", "characters": "\u29A5" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "»", "characters": "\u00BB" }, + {"key": "»", "characters": "\u00BB" }, + {"key": "⥵", "characters": "\u2975" }, + {"key": "⇥", "characters": "\u21E5" }, + {"key": "⤠", "characters": "\u2920" }, + {"key": "⤳", "characters": "\u2933" }, + {"key": "→", "characters": "\u2192" }, + {"key": "↠", "characters": "\u21A0" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⤞", "characters": "\u291E" }, + {"key": "↪", "characters": "\u21AA" }, + {"key": "↬", "characters": "\u21AC" }, + {"key": "⥅", "characters": "\u2945" }, + {"key": "⥴", "characters": "\u2974" }, + {"key": "⤖", "characters": "\u2916" }, + {"key": "↣", "characters": "\u21A3" }, + {"key": "↝", "characters": "\u219D" }, + {"key": "⤚", "characters": "\u291A" }, + {"key": "⤜", "characters": "\u291C" }, + {"key": "∶", "characters": "\u2236" }, + {"key": "ℚ", "characters": "\u211A" }, + {"key": "⤍", "characters": "\u290D" }, + {"key": "⤏", "characters": "\u290F" }, + {"key": "⤐", "characters": "\u2910" }, + {"key": "❳", "characters": "\u2773" }, + {"key": "}", "characters": "\u007D" }, + {"key": "]", "characters": "\u005D" }, + {"key": "⦌", "characters": "\u298C" }, + {"key": "⦎", "characters": "\u298E" }, + {"key": "⦐", "characters": "\u2990" }, + {"key": "Ř", "characters": "\u0158" }, + {"key": "ř", "characters": "\u0159" }, + {"key": "Ŗ", "characters": "\u0156" }, + {"key": "ŗ", "characters": "\u0157" }, + {"key": "⌉", "characters": "\u2309" }, + {"key": "}", "characters": "\u007D" }, + {"key": "Р", "characters": "\u0420" }, + {"key": "р", "characters": "\u0440" }, + {"key": "⤷", "characters": "\u2937" }, + {"key": "⥩", "characters": "\u2969" }, + {"key": "”", "characters": "\u201D" }, + {"key": "”", "characters": "\u201D" }, + {"key": "↳", "characters": "\u21B3" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "ℛ", "characters": "\u211B" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "ℝ", "characters": "\u211D" }, + {"key": "ℜ", "characters": "\u211C" }, + {"key": "▭", "characters": "\u25AD" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "®", "characters": "\u00AE" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "⇋", "characters": "\u21CB" }, + {"key": "⥯", "characters": "\u296F" }, + {"key": "⥽", "characters": "\u297D" }, + {"key": "⌋", "characters": "\u230B" }, + + {"key": "ℜ", "characters": "\u211C" }, + {"key": "⥤", "characters": "\u2964" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "⥬", "characters": "\u296C" }, + {"key": "Ρ", "characters": "\u03A1" }, + {"key": "ρ", "characters": "\u03C1" }, + {"key": "ϱ", "characters": "\u03F1" }, + {"key": "⟩", "characters": "\u27E9" }, + {"key": "⇥", "characters": "\u21E5" }, + {"key": "→", "characters": "\u2192" }, + {"key": "→", "characters": "\u2192" }, + {"key": "⇒", "characters": "\u21D2" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "↣", "characters": "\u21A3" }, + {"key": "⌉", "characters": "\u2309" }, + {"key": "⟧", "characters": "\u27E7" }, + {"key": "⥝", "characters": "\u295D" }, + {"key": "⥕", "characters": "\u2955" }, + {"key": "⇂", "characters": "\u21C2" }, + {"key": "⌋", "characters": "\u230B" }, + {"key": "⇁", "characters": "\u21C1" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "⇉", "characters": "\u21C9" }, + {"key": "↝", "characters": "\u219D" }, + {"key": "↦", "characters": "\u21A6" }, + {"key": "⊢", "characters": "\u22A2" }, + {"key": "⥛", "characters": "\u295B" }, + {"key": "⋌", "characters": "\u22CC" }, + {"key": "⧐", "characters": "\u29D0" }, + {"key": "⊳", "characters": "\u22B3" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "⥏", "characters": "\u294F" }, + {"key": "⥜", "characters": "\u295C" }, + {"key": "⥔", "characters": "\u2954" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "⥓", "characters": "\u2953" }, + {"key": "⇀", "characters": "\u21C0" }, + {"key": "˚", "characters": "\u02DA" }, + {"key": "≓", "characters": "\u2253" }, + {"key": "⇄", "characters": "\u21C4" }, + {"key": "⇌", "characters": "\u21CC" }, + {"key": "‏", "characters": "\u200F" }, + {"key": "⎱", "characters": "\u23B1" }, + {"key": "⎱", "characters": "\u23B1" }, + {"key": "⫮", "characters": "\u2AEE" }, + {"key": "⟭", "characters": "\u27ED" }, + {"key": "⇾", "characters": "\u21FE" }, + {"key": "⟧", "characters": "\u27E7" }, + {"key": "⦆", "characters": "\u2986" }, + + {"key": "ℝ", "characters": "\u211D" }, + {"key": "⨮", "characters": "\u2A2E" }, + {"key": "⨵", "characters": "\u2A35" }, + {"key": "⥰", "characters": "\u2970" }, + {"key": ")", "characters": "\u0029" }, + {"key": "⦔", "characters": "\u2994" }, + {"key": "⨒", "characters": "\u2A12" }, + {"key": "⇉", "characters": "\u21C9" }, + {"key": "⇛", "characters": "\u21DB" }, + {"key": "›", "characters": "\u203A" }, + + {"key": "ℛ", "characters": "\u211B" }, + {"key": "↱", "characters": "\u21B1" }, + {"key": "↱", "characters": "\u21B1" }, + {"key": "]", "characters": "\u005D" }, + {"key": "’", "characters": "\u2019" }, + {"key": "’", "characters": "\u2019" }, + {"key": "⋌", "characters": "\u22CC" }, + {"key": "⋊", "characters": "\u22CA" }, + {"key": "▹", "characters": "\u25B9" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "▸", "characters": "\u25B8" }, + {"key": "⧎", "characters": "\u29CE" }, + {"key": "⧴", "characters": "\u29F4" }, + {"key": "⥨", "characters": "\u2968" }, + {"key": "℞", "characters": "\u211E" }, + {"key": "Ś", "characters": "\u015A" }, + {"key": "ś", "characters": "\u015B" }, + {"key": "‚", "characters": "\u201A" }, + {"key": "⪸", "characters": "\u2AB8" }, + {"key": "Š", "characters": "\u0160" }, + {"key": "š", "characters": "\u0161" }, + {"key": "⪼", "characters": "\u2ABC" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "⪴", "characters": "\u2AB4" }, + {"key": "Ş", "characters": "\u015E" }, + {"key": "ş", "characters": "\u015F" }, + {"key": "Ŝ", "characters": "\u015C" }, + {"key": "ŝ", "characters": "\u015D" }, + {"key": "⪺", "characters": "\u2ABA" }, + {"key": "⪶", "characters": "\u2AB6" }, + {"key": "⋩", "characters": "\u22E9" }, + {"key": "⨓", "characters": "\u2A13" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "С", "characters": "\u0421" }, + {"key": "с", "characters": "\u0441" }, + {"key": "⊡", "characters": "\u22A1" }, + {"key": "⋅", "characters": "\u22C5" }, + {"key": "⩦", "characters": "\u2A66" }, + {"key": "⤥", "characters": "\u2925" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "⇘", "characters": "\u21D8" }, + {"key": "↘", "characters": "\u2198" }, + {"key": "§", "characters": "\u00A7" }, + {"key": "§", "characters": "\u00A7" }, + {"key": ";", "characters": "\u003B" }, + {"key": "⤩", "characters": "\u2929" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "✶", "characters": "\u2736" }, + + + {"key": "⌢", "characters": "\u2322" }, + {"key": "♯", "characters": "\u266F" }, + {"key": "Щ", "characters": "\u0429" }, + {"key": "щ", "characters": "\u0449" }, + {"key": "Ш", "characters": "\u0428" }, + {"key": "ш", "characters": "\u0448" }, + {"key": "↓", "characters": "\u2193" }, + {"key": "←", "characters": "\u2190" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "→", "characters": "\u2192" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "­", "characters": "\u00AD" }, + {"key": "­", "characters": "\u00AD" }, + {"key": "Σ", "characters": "\u03A3" }, + {"key": "σ", "characters": "\u03C3" }, + {"key": "ς", "characters": "\u03C2" }, + {"key": "ς", "characters": "\u03C2" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "⩪", "characters": "\u2A6A" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "⪞", "characters": "\u2A9E" }, + {"key": "⪠", "characters": "\u2AA0" }, + {"key": "⪝", "characters": "\u2A9D" }, + {"key": "⪟", "characters": "\u2A9F" }, + {"key": "≆", "characters": "\u2246" }, + {"key": "⨤", "characters": "\u2A24" }, + {"key": "⥲", "characters": "\u2972" }, + {"key": "←", "characters": "\u2190" }, + {"key": "∘", "characters": "\u2218" }, + {"key": "∖", "characters": "\u2216" }, + {"key": "⨳", "characters": "\u2A33" }, + {"key": "⧤", "characters": "\u29E4" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "⌣", "characters": "\u2323" }, + {"key": "⪪", "characters": "\u2AAA" }, + {"key": "⪬", "characters": "\u2AAC" }, + + {"key": "Ь", "characters": "\u042C" }, + {"key": "ь", "characters": "\u044C" }, + {"key": "⌿", "characters": "\u233F" }, + {"key": "⧄", "characters": "\u29C4" }, + {"key": "/", "characters": "\u002F" }, + + + {"key": "♠", "characters": "\u2660" }, + {"key": "♠", "characters": "\u2660" }, + {"key": "∥", "characters": "\u2225" }, + {"key": "⊓", "characters": "\u2293" }, + + {"key": "⊔", "characters": "\u2294" }, + + {"key": "√", "characters": "\u221A" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "⊓", "characters": "\u2293" }, + {"key": "⊏", "characters": "\u228F" }, + {"key": "⊑", "characters": "\u2291" }, + {"key": "⊐", "characters": "\u2290" }, + {"key": "⊒", "characters": "\u2292" }, + {"key": "⊔", "characters": "\u2294" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "□", "characters": "\u25A1" }, + {"key": "▪", "characters": "\u25AA" }, + {"key": "→", "characters": "\u2192" }, + + + {"key": "∖", "characters": "\u2216" }, + {"key": "⌣", "characters": "\u2323" }, + {"key": "⋆", "characters": "\u22C6" }, + {"key": "⋆", "characters": "\u22C6" }, + {"key": "☆", "characters": "\u2606" }, + {"key": "★", "characters": "\u2605" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "¯", "characters": "\u00AF" }, + {"key": "⊂", "characters": "\u2282" }, + {"key": "⋐", "characters": "\u22D0" }, + {"key": "⪽", "characters": "\u2ABD" }, + {"key": "⫅", "characters": "\u2AC5" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⫃", "characters": "\u2AC3" }, + {"key": "⫁", "characters": "\u2AC1" }, + {"key": "⫋", "characters": "\u2ACB" }, + {"key": "⊊", "characters": "\u228A" }, + {"key": "⪿", "characters": "\u2ABF" }, + {"key": "⥹", "characters": "\u2979" }, + {"key": "⊂", "characters": "\u2282" }, + {"key": "⋐", "characters": "\u22D0" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⫅", "characters": "\u2AC5" }, + {"key": "⊆", "characters": "\u2286" }, + {"key": "⊊", "characters": "\u228A" }, + {"key": "⫋", "characters": "\u2ACB" }, + {"key": "⫇", "characters": "\u2AC7" }, + {"key": "⫕", "characters": "\u2AD5" }, + {"key": "⫓", "characters": "\u2AD3" }, + {"key": "⪸", "characters": "\u2AB8" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "≻", "characters": "\u227B" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "≽", "characters": "\u227D" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "⪰", "characters": "\u2AB0" }, + {"key": "⪺", "characters": "\u2ABA" }, + {"key": "⪶", "characters": "\u2AB6" }, + {"key": "⋩", "characters": "\u22E9" }, + {"key": "≿", "characters": "\u227F" }, + {"key": "∋", "characters": "\u220B" }, + {"key": "∑", "characters": "\u2211" }, + {"key": "∑", "characters": "\u2211" }, + {"key": "♪", "characters": "\u266A" }, + {"key": "¹", "characters": "\u00B9" }, + {"key": "¹", "characters": "\u00B9" }, + {"key": "²", "characters": "\u00B2" }, + {"key": "²", "characters": "\u00B2" }, + {"key": "³", "characters": "\u00B3" }, + {"key": "³", "characters": "\u00B3" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⋑", "characters": "\u22D1" }, + {"key": "⪾", "characters": "\u2ABE" }, + {"key": "⫘", "characters": "\u2AD8" }, + {"key": "⫆", "characters": "\u2AC6" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⫄", "characters": "\u2AC4" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⟉", "characters": "\u27C9" }, + {"key": "⫗", "characters": "\u2AD7" }, + {"key": "⥻", "characters": "\u297B" }, + {"key": "⫂", "characters": "\u2AC2" }, + {"key": "⫌", "characters": "\u2ACC" }, + {"key": "⊋", "characters": "\u228B" }, + {"key": "⫀", "characters": "\u2AC0" }, + {"key": "⊃", "characters": "\u2283" }, + {"key": "⋑", "characters": "\u22D1" }, + {"key": "⊇", "characters": "\u2287" }, + {"key": "⫆", "characters": "\u2AC6" }, + {"key": "⊋", "characters": "\u228B" }, + {"key": "⫌", "characters": "\u2ACC" }, + {"key": "⫈", "characters": "\u2AC8" }, + {"key": "⫔", "characters": "\u2AD4" }, + {"key": "⫖", "characters": "\u2AD6" }, + {"key": "⤦", "characters": "\u2926" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "⇙", "characters": "\u21D9" }, + {"key": "↙", "characters": "\u2199" }, + {"key": "⤪", "characters": "\u292A" }, + {"key": "ß", "characters": "\u00DF" }, + {"key": "ß", "characters": "\u00DF" }, + {"key": " ", "characters": "\u0009" }, + {"key": "⌖", "characters": "\u2316" }, + {"key": "Τ", "characters": "\u03A4" }, + {"key": "τ", "characters": "\u03C4" }, + {"key": "⎴", "characters": "\u23B4" }, + {"key": "Ť", "characters": "\u0164" }, + {"key": "ť", "characters": "\u0165" }, + {"key": "Ţ", "characters": "\u0162" }, + {"key": "ţ", "characters": "\u0163" }, + {"key": "Т", "characters": "\u0422" }, + {"key": "т", "characters": "\u0442" }, + {"key": "⃛", "characters": "\u20DB" }, + {"key": "⌕", "characters": "\u2315" }, + + + {"key": "∴", "characters": "\u2234" }, + {"key": "∴", "characters": "\u2234" }, + {"key": "∴", "characters": "\u2234" }, + {"key": "Θ", "characters": "\u0398" }, + {"key": "θ", "characters": "\u03B8" }, + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "∼", "characters": "\u223C" }, + + {"key": " ", "characters": "\u2009" }, + {"key": " ", "characters": "\u2009" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "Þ", "characters": "\u00DE" }, + {"key": "Þ", "characters": "\u00DE" }, + {"key": "þ", "characters": "\u00FE" }, + {"key": "þ", "characters": "\u00FE" }, + {"key": "˜", "characters": "\u02DC" }, + {"key": "∼", "characters": "\u223C" }, + {"key": "≃", "characters": "\u2243" }, + {"key": "≅", "characters": "\u2245" }, + {"key": "≈", "characters": "\u2248" }, + {"key": "⨱", "characters": "\u2A31" }, + {"key": "⊠", "characters": "\u22A0" }, + {"key": "×", "characters": "\u00D7" }, + {"key": "×", "characters": "\u00D7" }, + {"key": "⨰", "characters": "\u2A30" }, + {"key": "∭", "characters": "\u222D" }, + {"key": "⤨", "characters": "\u2928" }, + {"key": "⌶", "characters": "\u2336" }, + {"key": "⫱", "characters": "\u2AF1" }, + {"key": "⊤", "characters": "\u22A4" }, + + + {"key": "⫚", "characters": "\u2ADA" }, + {"key": "⤩", "characters": "\u2929" }, + {"key": "‴", "characters": "\u2034" }, + {"key": "™", "characters": "\u2122" }, + {"key": "™", "characters": "\u2122" }, + {"key": "▵", "characters": "\u25B5" }, + {"key": "▿", "characters": "\u25BF" }, + {"key": "◃", "characters": "\u25C3" }, + {"key": "⊴", "characters": "\u22B4" }, + {"key": "≜", "characters": "\u225C" }, + {"key": "▹", "characters": "\u25B9" }, + {"key": "⊵", "characters": "\u22B5" }, + {"key": "◬", "characters": "\u25EC" }, + {"key": "≜", "characters": "\u225C" }, + {"key": "⨺", "characters": "\u2A3A" }, + {"key": "⃛", "characters": "\u20DB" }, + {"key": "⨹", "characters": "\u2A39" }, + {"key": "⧍", "characters": "\u29CD" }, + {"key": "⨻", "characters": "\u2A3B" }, + {"key": "⏢", "characters": "\u23E2" }, + + + {"key": "Ц", "characters": "\u0426" }, + {"key": "ц", "characters": "\u0446" }, + {"key": "Ћ", "characters": "\u040B" }, + {"key": "ћ", "characters": "\u045B" }, + {"key": "Ŧ", "characters": "\u0166" }, + {"key": "ŧ", "characters": "\u0167" }, + {"key": "≬", "characters": "\u226C" }, + {"key": "↞", "characters": "\u219E" }, + {"key": "↠", "characters": "\u21A0" }, + {"key": "Ú", "characters": "\u00DA" }, + {"key": "Ú", "characters": "\u00DA" }, + {"key": "ú", "characters": "\u00FA" }, + {"key": "ú", "characters": "\u00FA" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "↟", "characters": "\u219F" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⥉", "characters": "\u2949" }, + {"key": "Ў", "characters": "\u040E" }, + {"key": "ў", "characters": "\u045E" }, + {"key": "Ŭ", "characters": "\u016C" }, + {"key": "ŭ", "characters": "\u016D" }, + {"key": "Û", "characters": "\u00DB" }, + {"key": "Û", "characters": "\u00DB" }, + {"key": "û", "characters": "\u00FB" }, + {"key": "û", "characters": "\u00FB" }, + {"key": "У", "characters": "\u0423" }, + {"key": "у", "characters": "\u0443" }, + {"key": "⇅", "characters": "\u21C5" }, + {"key": "Ű", "characters": "\u0170" }, + {"key": "ű", "characters": "\u0171" }, + {"key": "⥮", "characters": "\u296E" }, + {"key": "⥾", "characters": "\u297E" }, + + + {"key": "Ù", "characters": "\u00D9" }, + {"key": "Ù", "characters": "\u00D9" }, + {"key": "ù", "characters": "\u00F9" }, + {"key": "ù", "characters": "\u00F9" }, + {"key": "⥣", "characters": "\u2963" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "▀", "characters": "\u2580" }, + {"key": "⌜", "characters": "\u231C" }, + {"key": "⌜", "characters": "\u231C" }, + {"key": "⌏", "characters": "\u230F" }, + {"key": "◸", "characters": "\u25F8" }, + {"key": "Ū", "characters": "\u016A" }, + {"key": "ū", "characters": "\u016B" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "¨", "characters": "\u00A8" }, + {"key": "_", "characters": "\u005F" }, + {"key": "⏟", "characters": "\u23DF" }, + {"key": "⎵", "characters": "\u23B5" }, + {"key": "⏝", "characters": "\u23DD" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "⊎", "characters": "\u228E" }, + {"key": "Ų", "characters": "\u0172" }, + {"key": "ų", "characters": "\u0173" }, + + + {"key": "⤒", "characters": "\u2912" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "↑", "characters": "\u2191" }, + {"key": "⇑", "characters": "\u21D1" }, + {"key": "⇅", "characters": "\u21C5" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "⥮", "characters": "\u296E" }, + {"key": "↿", "characters": "\u21BF" }, + {"key": "↾", "characters": "\u21BE" }, + {"key": "⊎", "characters": "\u228E" }, + {"key": "↖", "characters": "\u2196" }, + {"key": "↗", "characters": "\u2197" }, + {"key": "υ", "characters": "\u03C5" }, + {"key": "ϒ", "characters": "\u03D2" }, + {"key": "ϒ", "characters": "\u03D2" }, + {"key": "Υ", "characters": "\u03A5" }, + {"key": "υ", "characters": "\u03C5" }, + {"key": "↥", "characters": "\u21A5" }, + {"key": "⊥", "characters": "\u22A5" }, + {"key": "⇈", "characters": "\u21C8" }, + {"key": "⌝", "characters": "\u231D" }, + {"key": "⌝", "characters": "\u231D" }, + {"key": "⌎", "characters": "\u230E" }, + {"key": "Ů", "characters": "\u016E" }, + {"key": "ů", "characters": "\u016F" }, + {"key": "◹", "characters": "\u25F9" }, + + + {"key": "⋰", "characters": "\u22F0" }, + {"key": "Ũ", "characters": "\u0168" }, + {"key": "ũ", "characters": "\u0169" }, + {"key": "▵", "characters": "\u25B5" }, + {"key": "▴", "characters": "\u25B4" }, + {"key": "⇈", "characters": "\u21C8" }, + {"key": "Ü", "characters": "\u00DC" }, + {"key": "Ü", "characters": "\u00DC" }, + {"key": "ü", "characters": "\u00FC" }, + {"key": "ü", "characters": "\u00FC" }, + {"key": "⦧", "characters": "\u29A7" }, + {"key": "⦜", "characters": "\u299C" }, + {"key": "ϵ", "characters": "\u03F5" }, + {"key": "ϰ", "characters": "\u03F0" }, + {"key": "∅", "characters": "\u2205" }, + {"key": "ϕ", "characters": "\u03D5" }, + {"key": "ϖ", "characters": "\u03D6" }, + {"key": "∝", "characters": "\u221D" }, + {"key": "↕", "characters": "\u2195" }, + {"key": "⇕", "characters": "\u21D5" }, + {"key": "ϱ", "characters": "\u03F1" }, + {"key": "ς", "characters": "\u03C2" }, + + + + + {"key": "ϑ", "characters": "\u03D1" }, + {"key": "⊲", "characters": "\u22B2" }, + {"key": "⊳", "characters": "\u22B3" }, + {"key": "⫨", "characters": "\u2AE8" }, + {"key": "⫫", "characters": "\u2AEB" }, + {"key": "⫩", "characters": "\u2AE9" }, + {"key": "В", "characters": "\u0412" }, + {"key": "в", "characters": "\u0432" }, + {"key": "⊢", "characters": "\u22A2" }, + {"key": "⊨", "characters": "\u22A8" }, + {"key": "⊩", "characters": "\u22A9" }, + {"key": "⊫", "characters": "\u22AB" }, + {"key": "⫦", "characters": "\u2AE6" }, + {"key": "⊻", "characters": "\u22BB" }, + {"key": "∨", "characters": "\u2228" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "≚", "characters": "\u225A" }, + {"key": "⋮", "characters": "\u22EE" }, + {"key": "|", "characters": "\u007C" }, + {"key": "‖", "characters": "\u2016" }, + {"key": "|", "characters": "\u007C" }, + {"key": "‖", "characters": "\u2016" }, + {"key": "∣", "characters": "\u2223" }, + {"key": "|", "characters": "\u007C" }, + {"key": "❘", "characters": "\u2758" }, + {"key": "≀", "characters": "\u2240" }, + {"key": " ", "characters": "\u200A" }, + + + {"key": "⊲", "characters": "\u22B2" }, + + + + + {"key": "∝", "characters": "\u221D" }, + {"key": "⊳", "characters": "\u22B3" }, + + + + + + + {"key": "⊪", "characters": "\u22AA" }, + {"key": "⦚", "characters": "\u299A" }, + {"key": "Ŵ", "characters": "\u0174" }, + {"key": "ŵ", "characters": "\u0175" }, + {"key": "⩟", "characters": "\u2A5F" }, + {"key": "∧", "characters": "\u2227" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "≙", "characters": "\u2259" }, + {"key": "℘", "characters": "\u2118" }, + + + + + {"key": "℘", "characters": "\u2118" }, + {"key": "≀", "characters": "\u2240" }, + {"key": "≀", "characters": "\u2240" }, + + + {"key": "⋂", "characters": "\u22C2" }, + {"key": "◯", "characters": "\u25EF" }, + {"key": "⋃", "characters": "\u22C3" }, + {"key": "▽", "characters": "\u25BD" }, + + + {"key": "⟷", "characters": "\u27F7" }, + {"key": "⟺", "characters": "\u27FA" }, + {"key": "Ξ", "characters": "\u039E" }, + {"key": "ξ", "characters": "\u03BE" }, + {"key": "⟵", "characters": "\u27F5" }, + {"key": "⟸", "characters": "\u27F8" }, + {"key": "⟼", "characters": "\u27FC" }, + {"key": "⋻", "characters": "\u22FB" }, + {"key": "⨀", "characters": "\u2A00" }, + + + {"key": "⨁", "characters": "\u2A01" }, + {"key": "⨂", "characters": "\u2A02" }, + {"key": "⟶", "characters": "\u27F6" }, + {"key": "⟹", "characters": "\u27F9" }, + + + {"key": "⨆", "characters": "\u2A06" }, + {"key": "⨄", "characters": "\u2A04" }, + {"key": "△", "characters": "\u25B3" }, + {"key": "⋁", "characters": "\u22C1" }, + {"key": "⋀", "characters": "\u22C0" }, + {"key": "Ý", "characters": "\u00DD" }, + {"key": "Ý", "characters": "\u00DD" }, + {"key": "ý", "characters": "\u00FD" }, + {"key": "ý", "characters": "\u00FD" }, + {"key": "Я", "characters": "\u042F" }, + {"key": "я", "characters": "\u044F" }, + {"key": "Ŷ", "characters": "\u0176" }, + {"key": "ŷ", "characters": "\u0177" }, + {"key": "Ы", "characters": "\u042B" }, + {"key": "ы", "characters": "\u044B" }, + {"key": "¥", "characters": "\u00A5" }, + {"key": "¥", "characters": "\u00A5" }, + + + {"key": "Ї", "characters": "\u0407" }, + {"key": "ї", "characters": "\u0457" }, + + + + + {"key": "Ю", "characters": "\u042E" }, + {"key": "ю", "characters": "\u044E" }, + {"key": "ÿ", "characters": "\u00FF" }, + {"key": "ÿ", "characters": "\u00FF" }, + {"key": "Ÿ", "characters": "\u0178" }, + {"key": "Ź", "characters": "\u0179" }, + {"key": "ź", "characters": "\u017A" }, + {"key": "Ž", "characters": "\u017D" }, + {"key": "ž", "characters": "\u017E" }, + {"key": "З", "characters": "\u0417" }, + {"key": "з", "characters": "\u0437" }, + {"key": "Ż", "characters": "\u017B" }, + {"key": "ż", "characters": "\u017C" }, + {"key": "ℨ", "characters": "\u2128" }, + {"key": "​", "characters": "\u200B" }, + {"key": "Ζ", "characters": "\u0396" }, + {"key": "ζ", "characters": "\u03B6" }, + + {"key": "ℨ", "characters": "\u2128" }, + {"key": "Ж", "characters": "\u0416" }, + {"key": "ж", "characters": "\u0436" }, + {"key": "⇝", "characters": "\u21DD" }, + + {"key": "ℤ", "characters": "\u2124" }, + + + {"key": "‍", "characters": "\u200D" }, + {"key": "‌", "characters": "\u200C" }, + {"key": " ", "characters": "\u00A0"}, + {"key": "@", "characters": "@" }, + {"key": "A", "characters": "A" }, + {"key": " ", "characters": "\u00A0"}, + {"key": "@", "characters": "@" }, + {"key": "A", "characters": "A" }, + {"key": "&xA0;", "characters": "\u00A0" }, + {"key": " ", "characters": " " }, + {"key": " ", "characters": " "}, + {"key": "&x40;", "characters": "@" }, + {"key": "&x41;", "characters": "A" }, + {"key": "&XA0;", "characters": "\u00A0"}, + {"key": "&X40;", "characters": "@" }, + {"key": "&X41;", "characters": "A" } +]} diff --git a/tests/FSharp.Data.Core.Tests/Data/contacts.json b/tests/FSharp.Data.Core.Tests/Data/contacts.json new file mode 100644 index 000000000..8131f3eed --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/contacts.json @@ -0,0 +1,58 @@ +{ + "ab": { + "persons": [ + { + "contacts": [ + { + }, + { + "emailCapability": [ + null, + "0", + null + ], + "emailIMEnabled": [ + false, + false, + false + ], + "emails": [ + null, + "a@b.c", + null + ], + "phones": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + } + ], + "emails": [ + null, + null + ], + "phones": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + } + ] + } +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/cp932.csv b/tests/FSharp.Data.Core.Tests/Data/cp932.csv new file mode 100644 index 000000000..60f23bdb8 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/cp932.csv @@ -0,0 +1,4 @@ +id,value +1,1.0 +2,NaN (񐔒l) + diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who.html new file mode 100644 index 000000000..2eb0f8fbd --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/doctor_who.html @@ -0,0 +1,5742 @@ + + + + +List of Doctor Who serials - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +

      List of Doctor Who serials

      +
      +
      From Wikipedia, the free encyclopedia
      +
      +
      + Jump to: navigation, search +
      +
      +

      Doctor Who is a British science fiction television programme produced by the BBC. As of 11 October 2014, 808 individual episodes, including one television movie of Doctor Who, have been aired, encompassing 249 stories. Additionally, four charity specials and two animated serials have also been aired. The show's high episode count resulted in Doctor Who holding the world record for the highest number of episodes for a science-fiction programme.[1] For comparison, the Guinness World Record holder for the highest number of consecutive episodes, Smallville,[2] aired 218 episodes.

      +

      Doctor Who ceased airing in 1989 and began again in 2005. Each story in the original series (1963–89) is a multi-episode serial, with two exceptions: the 1965 cutaway episode "Mission to the Unknown" and the 20th anniversary story The Five Doctors. The characters in the column after the serial titles indicate the code used by the production team to designate the serial, where applicable, and are followed either by the titles of the individual episodes where given or by the number of episodes otherwise. Unless otherwise noted, episodes in this period are 25 minutes long. During the early seasons of the programme most serials were linked together and one would usually lead directly into the next. Starting with the 2005 revival, the production team abandoned the traditional serial format for a largely self-contained episodic format with occasional multi-part stories and loose story arcs. Unless otherwise noted, the new episodes are 45 minutes long.

      +

      Due to the BBC's 1970s junking policy, 97 episodes from the 1960s are missing, with the result that 26 serials are incomplete, although all of these still exist as audio recordings, and some have been reconstructed. In the first two seasons and most of the third, each episode of a serial had an individual title; no serial had an overall on-screen title until The Savages. The serial titles given below are the most common title for the serials as a whole, used in sources such as the Doctor Who Reference Guide and the BBC's classic episode guide, and are generally those used for commercial release. The practice of individually titled episodes resurfaced with the show's 2005 revival, when Doctor Who's serial nature was abandoned in favour of an episodic format.

      +

      The three-digit story numbers are not official designations but are merely to serve as a guide to where the story stands in the overall context of the programme. There is some dispute about, for example, whether to count Season 23's The Trial of a Time Lord as one or four serials,[3] and whether the uncompleted Shada should be included.[4] The numbering scheme used here reflects the current internal practice of describing "Planet of the Dead" (2009) as the 200th story, used in the official magazine's 407th issue.[5] Other sources, such as the Region 1 DVDs of classic Doctor Who serials, use different numbering schemes which diverge after the 108th story, The Horns of Nimon (1979/80).

      +
      +
      +
      +

      Contents

      +
      + +
      +
      +

      Overview of seasons and series

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Season/SeriesDoctorSerialsEpisodesPremiere Date
      +(UK)
      Premiere
      +viewers
      +(in millions)
      Finale Date
      +(UK)
      Finale
      +viewers
      +(in millions)
      Average
      +viewers
      +(in millions)
      Season 1First Doctor84223 November 19634.412 September 19646.47.96
      Season 293931 October 19648.424 July 19658.310.38
      Season 3104511 September 19659.016 July 19665.57.38
      Season 4Second Doctor94310 September 19664.31 July 19676.17.11
      Season 57402 September 19676.01 June 19686.56.63
      Season 674410 August 19686.121 June 19695.06.57
      Season 7Third Doctor4253 January 19708.420 June 19705.57.18
      Season 85252 January 19717.319 June 19718.37.96
      Season 95261 January 19729.824 June 19727.68.48
      Season 1052630 December 19729.623 June 19737.08.98
      Season 1152615 December 19738.78 June 19748.98.78
      Season 12Fourth Doctor52028 December 197410.110 May 19759.010.14
      Season 1362630 August 19757.56 March 197610.910.08
      Season 146264 September 19769.52 April 197710.411.17
      Season 156263 September 19778.411 March 197810.58.91
      Season 16[α]6262 September 19788.124 February 19798.58.56
      Season 175[β]201 September 197913.512 January 19808.811.22
      Season 1872830 August 19805.121 March 19816.75.81
      Season 19Fifth Doctor7264 January 19829.630 March 19828.99.30
      Season 206224 January 19837.216 March 19837.557.00
      Season 217245 January 19847.2530 March 19847.18.37
      Season 22Sixth Doctor6135 January 19858.0530 March 19857.557.17
      Season 23[γ]4146 September 19864.356 December 19865.04.83
      Season 24Seventh Doctor4147 September 19874.637 December 19875.074.98
      Season 254145 October 19885.354 January 19895.455.35
      Season 264146 September 19893.656 December 19894.94.19
      Series 1Ninth Doctor101326 March 200510.8118 June 20056.917.31
      Series 2Tenth Doctor101315 April 20068.628 July 20068.227.64
      Series 391331 March 20078.7130 June 20078.617.54
      Series 410135 April 20089.145 July 200810.578.04
      Series 5Eleventh Doctor10133 April 201010.0926 June 20106.707.73
      Series 6111323 April 20118.861 October 20117.677.51
      Series 713131 September 20128.3318 May 20137.457.44
      Series 8Twelfth Doctor111223 August 20149.178 November 2014TBATBA
      +

      Specials

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      DoctorSeason/SeriesEpisodesPremiere Date
      +(UK)
      Finale Date
      +(UK)
      Average
      +viewers
      +(in millions)
      Fifth Doctor20th anniversary special125 November 198325 November 19837.70
      First DoctorSeason 1 pilot126 August 199126 August 19911.70
      Eighth DoctorTelevision movie127 May 199627 May 19969.10
      Tenth Doctor2005 specials218 November 200525 December 2005
      2006 Christmas special125 December 200625 December 2006
      2007 specials216 November 200725 November 2007
      2008-10 specials525 December 20081 January 2010
      Eleventh Doctor2010-11 specials325 December 201018 March 2011
      2011-12 specials625 December 201131 August 2012
      2012 specials312 October 201225 December 2012
      2013 specials414 November 201325 December 2013
      Twelfth Doctor2014 Christmas special1Christmas 2014Christmas 2014
      +

      First Doctor

      +

      The first incarnation of the Doctor was portrayed by William Hartnell. During Hartnell's tenure, the Doctor visited a mixture of stories set in the future and in historical events that had no extraterrestrial influence, such as fifteenth century Mesoamerica. In his last story, The Tenth Planet, the Doctor gradually grew weaker to the point of collapsing at the end of the fourth episode, leading to his regeneration.

      +

      Season 1 (1963–64)

      +
      Main article: Doctor Who (season 1)
      +

      Verity Lambert was producer with David Whitaker serving as script editor.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      001An Unearthly Child
      +aka 100,000 BC
      +aka The Tribe of Gum
      A"An Unearthly Child"
      +"The Cave of Skulls"
      +"The Forest of Fear"
      +"The Firemaker"
      Anthony Coburn
      +(and C. E. Webber)[δ]
      Waris Hussein23 November 1963
      +30 November 1963
      +7 December 1963
      +14 December 1963
      002The Daleks
      +aka The Mutants
      +aka The Dead Planet
      B"The Dead Planet"
      +"The Survivors"
      +"The Escape"
      +"The Ambush"
      +"The Expedition"
      +"The Ordeal"
      +"The Rescue"
      Terry NationRichard Martin &
      +Christopher Barry
      21 December 1963
      +28 December 1963
      +4 January 1964
      +11 January 1964
      +18 January 1964
      +25 January 1964
      +1 February 1964
      003The Edge of Destruction
      +aka Inside the Spaceship
      C"The Edge of Destruction"
      +"The Brink of Disaster"
      David WhitakerRichard Martin &
      +Frank Cox
      8 February 1964
      +15 February 1964
      004Marco Polo
      +aka A Journey to Cathay
      D"The Roof of the World"
      +"The Singing Sands"
      +"Five Hundred Eyes"
      +"The Wall of Lies"
      +"Rider from Shang-Tu"
      +"Mighty Kublai Khan"
      +"Assassin at Peking"
      +(all missing)
      John LucarottiWaris Hussein &
      +John Crockett
      22 February 1964
      +29 February 1964
      +7 March 1964
      +14 March 1964
      +21 March 1964
      +28 March 1964
      +4 April 1964
      005The Keys of Marinus
      +aka The Sea of Death
      E"The Sea of Death"
      +"The Velvet Web"
      +"The Screaming Jungle"
      +"The Snows of Terror"
      +"Sentence of Death"
      +"The Keys of Marinus"
      Terry NationJohn Gorrie11 April 1964
      +18 April 1964
      +25 April 1964
      +2 May 1964
      +9 May 1964
      +16 May 1964
      006The AztecsF"The Temple of Evil"
      +"The Warriors of Death"
      +"The Bride of Sacrifice"
      +"The Day of Darkness"
      John LucarottiJohn Crockett23 May 1964
      +30 May 1964
      +6 June 1964
      +13 June 1964
      007The SensoritesG"Strangers in Space"
      +"The Unwilling Warriors"
      +"Hidden Danger"
      +"A Race Against Death"
      +"Kidnap"
      +"A Desperate Venture"
      Peter R. NewmanMervyn Pinfield &
      +Frank Cox
      20 June 1964
      +27 June 1964
      +11 July 1964
      +18 July 1964
      +25 July 1964
      +1 August 1964
      008The Reign of Terror
      +aka The French Revolution
      H"A Land of Fear"
      +"Guests of Madame Guillotine"
      +"A Change of Identity"
      +"The Tyrant of France"
      +"A Bargain of Necessity"
      +"Prisoners of Conciergerie"
      +(episodes 4–5 missing)
      Dennis SpoonerHenric Hirsch8 August 1964
      +15 August 1964
      +22 August 1964
      +29 August 1964
      +5 September 1964
      +12 September 1964
      +

      Season 2 (1964–65)

      +
      Main article: Doctor Who (season 2)
      +

      Dennis Spooner replaced David Whitaker as script editor after The Dalek Invasion of Earth, and edited the remainder of the season apart from The Time Meddler, which was edited by Donald Tosh.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      009Planet of GiantsJ"Planet of Giants"
      +"Dangerous Journey"
      +"Crisis"
      Louis MarksMervyn Pinfield &
      +Douglas Camfield
      31 October 1964
      +7 November 1964
      +14 November 1964
      010The Dalek Invasion of Earth
      +aka World's End
      K"World's End"
      +"The Daleks"
      +"Day of Reckoning"
      +"The End of Tomorrow"
      +"The Waking Ally"
      +"Flashpoint"
      Terry NationRichard Martin21 November 1964
      +28 November 1964
      +5 December 1964
      +12 December 1964
      +19 December 1964
      +26 December 1964
      011The RescueL"The Powerful Enemy"
      +"Desperate Measures"
      David WhitakerChristopher Barry2 January 1965
      +9 January 1965
      012The RomansM"The Slave Traders"
      +"All Roads Lead to Rome"
      +"Conspiracy"
      +"Inferno"
      Dennis SpoonerChristopher Barry16 January 1965
      +23 January 1965
      +30 January 1965
      +6 February 1965
      013The Web Planet
      +aka The Zarbi
      N"The Web Planet"
      +"The Zarbi"
      +"Escape to Danger"
      +"Crater of Needles"
      +"Invasion"
      +"The Centre"
      Bill StruttonRichard Martin13 February 1965
      +20 February 1965
      +27 February 1965
      +6 March 1965
      +13 March 1965
      +20 March 1965
      014The Crusade
      +aka The Lionheart
      +aka The Crusaders
      P"The Lion"
      +"The Knight of Jaffa"
      +"The Wheel of Fortune"
      +"The Warlords"
      +(episodes 2 & 4 missing)
      David WhitakerDouglas Camfield27 March 1965
      +3 April 1965
      +10 April 1965
      +17 April 1965
      015The Space MuseumQ"The Space Museum"
      +"The Dimensions of Time"
      +"The Search"
      +"The Final Phase"
      Glyn JonesMervyn Pinfield24 April 1965
      +1 May 1965
      +8 May 1965
      +15 May 1965
      016The ChaseR"The Executioners"
      +"The Death of Time"
      +"Flight Through Eternity"
      +"Journey into Terror"
      +"The Death of Doctor Who"
      +"The Planet of Decision"
      Terry NationRichard Martin &
      +Douglas Camfield
      22 May 1965
      +29 May 1965
      +5 June 1965
      +12 June 1965
      +19 June 1965
      +26 June 1965
      017The Time MeddlerS"The Watcher"
      +"The Meddling Monk"
      +"A Battle of Wits"
      +"Checkmate"
      Dennis SpoonerDouglas Camfield3 July 1965
      +10 July 1965
      +17 July 1965
      +24 July 1965
      +

      Season 3 (1965–66)

      +
      Main article: Doctor Who (season 3)
      +

      John Wiles replaced Verity Lambert as producer after Mission to the Unknown. Innes Lloyd, in turn, replaced Wiles after The Ark. Donald Tosh continued as script editor until The Massacre of St Bartholomew's Eve, which was also script-edited by his replacement, Gerry Davis. The practice of giving each individual episode a different title was abandoned after The Gunfighters, near the end of the season.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      018Galaxy 4T"Four Hundred Dawns"
      +"Trap of Steel"
      +"Air Lock"
      +"The Exploding Planet"
      +(episodes 1, 2, & 4 missing)
      William EmmsDerek Martinus &
      +Mervyn Pinfield
      11 September 1965
      +18 September 1965
      +25 September 1965
      +2 October 1965
      019"Mission to the Unknown"
      +aka "Dalek Cutaway"
      T/A, TA or DC"Mission to the Unknown"
      +(missing)
      Terry NationDerek Martinus9 October 1965
      020The Myth MakersU"Temple of Secrets"
      +"Small Prophet, Quick Return"
      +"Death of a Spy"
      +"Horse of Destruction"
      +(all missing)
      Donald CottonMichael Leeston-Smith16 October 1965
      +23 October 1965
      +30 October 1965
      +6 November 1965
      021The Daleks' Master PlanV"The Nightmare Begins"
      +"Day of Armageddon"
      +"Devil's Planet"
      +"The Traitors"
      +"Counter Plot"
      +"Coronas of the Sun"
      +"The Feast of Steven"
      +"Volcano"
      +"Golden Death"
      +"Escape Switch"
      +"The Abandoned Planet"
      +"Destruction of Time"
      +(episodes 1, 3–4, 6–9, & 11–12 missing)
      Terry Nation &
      +Dennis Spooner
      Douglas Camfield13 November 1965
      +20 November 1965
      +27 November 1965
      +4 December 1965
      +11 December 1965
      +18 December 1965
      +25 December 1965
      +1 January 1966
      +8 January 1966
      +15 January 1966
      +22 January 1966
      +29 January 1966
      022The Massacre of St Bartholomew's Eve
      +aka The Massacre
      W"War of God"
      +"The Sea Beggar"
      +"Priest of Death"
      +"Bell of Doom"
      +(all missing)
      John Lucarotti &
      +Donald Tosh
      Paddy Russell5 February 1966
      +12 February 1966
      +19 February 1966
      +26 February 1966
      023The ArkX"The Steel Sky"
      +"The Plague"
      +"The Return"
      +"The Bomb"
      Paul Erickson &
      +Lesley Scott
      Michael Imison5 March 1966
      +12 March 1966
      +19 March 1966
      +26 March 1966
      024The Celestial ToymakerY"The Celestial Toyroom"
      +"The Hall of Dolls"
      +"The Dancing Floor"
      +"The Final Test"
      +(episodes 1–3 missing)
      Brian Hayles &
      +Donald Tosh
      Bill Sellars2 April 1966
      +9 April 1966
      +16 April 1966
      +23 April 1966
      025The GunfightersZ"A Holiday for the Doctor"
      +"Don't Shoot the Pianist"
      +"Johnny Ringo"
      +"The OK Corral"
      Donald CottonRex Tucker30 April 1966
      +7 May 1966
      +14 May 1966
      +21 May 1966
      026The Savages[ε]AA4 episodes
      +(all missing)
      Ian Stuart BlackChristopher Barry28 May – 18 June 1966
      027The War MachinesBB4 episodesIan Stuart Black
      +(and Kit Pedler)
      Michael Ferguson25 June – 16 July 1966
      +

      Season 4 (1966–67)

      +
      Main article: Doctor Who (season 4)
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      028The SmugglersCC4 episodes
      +(all missing)
      Brian HaylesJulia Smith10 September – 1 October 1966
      029The Tenth PlanetDD4 episodes
      +(episode 4 missing)
      Kit Pedler &
      +Gerry Davis
      Derek Martinus8–29 October 1966
      +

      Second Doctor

      +

      The Second Doctor was portrayed by Patrick Troughton, whose serials were more action-oriented than those of his predecessor. Additionally, after The Highlanders, stories moved away from the purely historical ones that featured during William Hartnell's tenure; instead, any historical tales also included a science fiction element. Patrick Troughton retained the role until the last episode of The War Games when members of the Doctor's race, the Time Lords, put him on trial for breaking the laws of time and forced him to regenerate.

      +

      Season 4 (1966–67) continued

      +

      Peter Bryant joined as associate producer for The Faceless Ones, and replaced Gerry Davis as script editor for the last four episodes of The Evil of the Daleks.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      030The Power of the DaleksEE6 episodes
      +(all missing)
      David Whitaker
      +(and Dennis Spooner)
      Christopher Barry5 November – 10 December 1966
      031The HighlandersFF4 episodes
      +(all missing)
      Elwyn Jones &
      +Gerry Davis
      Hugh David17 December 1966 – 7 January 1967
      032The Underwater MenaceGG4 episodes
      +(episodes 1 & 4 missing)
      Geoffrey OrmeJulia Smith14 January – 4 February 1967
      033The MoonbaseHH4 episodes
      +(episodes 1 & 3 missing)
      Kit PedlerMorris Barry11 February – 4 March 1967
      034The Macra TerrorJJ4 episodes
      +(all missing)
      Ian Stuart BlackJohn Davies11 March – 1 April 1967
      035The Faceless OnesKK6 episodes
      +(episodes 2 & 4–6 missing)
      David Ellis &
      +Malcolm Hulke
      Gerry Mill8 April – 13 May 1967
      036The Evil of the DaleksLL7 episodes
      +(episodes 1 & 3–7 missing)
      David WhitakerDerek Martinus20 May – 1 July 1967
      +

      Season 5 (1967–68)

      +
      Main article: Doctor Who (season 5)
      +

      Victor Pemberton was script editor for The Tomb of the Cybermen, with Peter Bryant as producer. After this, Bryant resumed the role of script editor, with Innes Lloyd returning as producer, until The Web of Fear when Bryant took over from Lloyd as producer. Derrick Sherwin replaced Bryant as script editor at the same time.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      037The Tomb of the CybermenMM4 episodesKit Pedler &
      +Gerry Davis
      Morris Barry2–23 September 1967
      038The Abominable SnowmenNN6 episodes
      +(episodes 1 & 3–6 missing)
      Mervyn Haisman &
      +Henry Lincoln
      Gerald Blake30 September – 4 November 1967
      039The Ice WarriorsOO6 episodes
      +(episodes 2 & 3 missing)
      Brian HaylesDerek Martinus11 November – 16 December 1967
      040The Enemy of the WorldPP6 episodes
      David WhitakerBarry Letts23 December 1967 – 27 January 1968
      041The Web of FearQQ6 episodes
      +(episode 3 missing)
      Mervyn Haisman and Henry LincolnDouglas Camfield3 February – 9 March 1968
      042Fury from the DeepRR6 episodes
      +(all missing)
      Victor PembertonHugh David16 March – 20 April 1968
      043The Wheel in SpaceSS6 episodes
      +(episodes 1–2 & 4–5 missing)
      David Whitaker and Kit PedlerTristan de Vere Cole27 April – 1 June 1968
      +

      Season 6 (1968–69)

      +
      Main article: Doctor Who (season 6)
      +

      Terrance Dicks took over from Derrick Sherwin as script editor from The Invasion, with Sherwin resuming the role for The Space Pirates. Derrick Sherwin took over as producer from Peter Bryant for The War Games.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      044The DominatorsTT5 episodesNorman Ashby
      +(aka Mervyn Haisman & Henry Lincoln)
      Morris Barry10 August – 7 September 1968
      045The Mind RobberUU5 episodes (20 mins each)Peter Ling
      +(and Derrick Sherwin)
      David Maloney14 September – 12 October 1968
      046The InvasionVV8 episodes
      +(episodes 1 & 4 missing)
      Derrick Sherwin and Kit PedlerDouglas Camfield2 November – 21 December 1968
      047The KrotonsWW4 episodesRobert HolmesDavid Maloney28 December 1968 – 18 January 1969
      048The Seeds of DeathXX6 episodesBrian Hayles
      +(and Terrance Dicks)
      Michael Ferguson25 January – 1 March 1969
      049The Space PiratesYY6 episodes
      +(episodes 1 & 3–6 missing)
      Robert HolmesMichael Hart8 March – 12 April 1969
      050The War GamesZZ10 episodesMalcolm Hulke &
      +Terrance Dicks
      David Maloney19 April – 21 June 1969
      +

      Third Doctor

      +

      The Third Doctor was portrayed by Jon Pertwee. Sentenced to exile on Earth and forcibly regenerated at the end of The War Games, the Doctor spent his time working for UNIT. After The Three Doctors, the Time Lords repealed his exile; however, the Doctor still worked closely with UNIT from time to time. The Third Doctor regenerated into his fourth incarnation as a result of radiation poisoning in the last moments of Planet of the Spiders.

      +

      Season 7 (1970)

      +
      Main article: Doctor Who (season 7)
      +

      Barry Letts took over as producer from Derrick Sherwin after Spearhead from Space. From this season onwards the programme was produced in colour. To accommodate the new production methods the number of episodes in a season was cut: season 6 has 44 episodes; season 7 has 25 episodes. The seasons would continue to have between 20 and 28 episodes until season 22.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      051Spearhead from SpaceAAA4 episodesRobert HolmesDerek Martinus3–24 January 1970
      052Doctor Who and the SiluriansBBB7 episodesMalcolm HulkeTimothy Combe31 January – 14 March 1970
      053The Ambassadors of DeathCCC7 episodes[ζ]David Whitaker, Trevor Ray, Terrance Dicks, and Malcolm HulkeMichael Ferguson21 March – 2 May 1970
      054InfernoDDD7 episodesDon HoughtonDouglas Camfield & Barry Letts9 May – 20 June 1970
      +

      Season 8 (1971)

      +
      Main article: Doctor Who (season 8)
      +

      This season forms a loose arc with the introduction of the Master, the villain in each of the season's storylines, and introduces the companion Jo Grant.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      055Terror of the AutonsEEE4 episodesRobert HolmesBarry Letts2–23 January 1971
      056The Mind of EvilFFF6 episodesDon HoughtonTimothy Combe30 January – 6 March 1971
      057The Claws of AxosGGG4 episodesBob Baker & Dave MartinMichael Ferguson13 March – 3 April 1971
      058Colony in SpaceHHH6 episodesMalcolm HulkeMichael E. Briant10 April – 15 May 1971
      059The DæmonsJJJ5 episodes"Guy Leopold" (pseudonym for Robert Sloman and Barry Letts)Christopher Barry22 May – 19 June 1971
      +

      Season 9 (1972)

      +
      Main article: Doctor Who (season 9)
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      060Day of the DaleksKKK4 episodesLouis MarksPaul Bernard1–22 January 1972
      061The Curse of PeladonMMM4 episodesBrian HaylesLennie Mayne29 January – 19 February 1972
      062The Sea DevilsLLL6 episodesMalcolm HulkeMichael Briant26 February – 1 April 1972
      063The MutantsNNN6 episodesBob Baker and Dave MartinChristopher Barry8 April – 13 May 1972
      064The Time MonsterOOO6 episodesRobert Sloman (and Barry Letts)Paul Bernard20 May – 24 June 1972
      +

      Season 10 (1972–73)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      065The Three Doctors[η]RRR4 episodesBob Baker and Dave MartinLennie Mayne30 December 1972 – 20 January 1973
      066Carnival of MonstersPPP4 episodesRobert HolmesBarry Letts27 January – 17 February 1973
      067Frontier in SpaceQQQ6 episodesMalcolm HulkePaul Bernard24 February – 31 March 1973
      068Planet of the DaleksSSS6 episodes[θ]Terry NationDavid Maloney7 April – 12 May 1973
      069The Green DeathTTT6 episodesRobert Sloman (and Barry Letts)Michael Briant19 May – 23 June 1973
      +

      Season 11 (1973–74)

      + +

      This season introduces the companion Sarah Jane Smith.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      070The Time WarriorUUU4 episodesRobert HolmesAlan Bromly15 December 1973 – 5 January 1974
      071Invasion of the Dinosaurs[ι]WWW6 episodes[κ]Malcolm HulkePaddy Russell12 January – 16 February 1974
      072Death to the DaleksXXX4 episodesTerry NationMichael Briant23 February – 16 March 1974
      073The Monster of PeladonYYY6 episodesBrian HaylesLennie Mayne23 March – 27 April 1974
      074Planet of the SpidersZZZ6 episodesRobert Sloman (and Barry Letts)Barry Letts4 May – 8 June 1974
      +

      Fourth Doctor

      +

      The Fourth Doctor was portrayed by Tom Baker. He is, to date, the actor who has played the Doctor on television for the longest time,[7] having held the role for seven seasons.

      +

      Season 12 (1974–75)

      + +

      Barry Letts served as producer for Robot, after which he was succeeded by Philip Hinchcliffe. Robert Holmes took over from Terrance Dicks as script editor. All serials in this season continue directly one after the other, tracing one single problematic voyage of the TARDIS crew. Despite the continuity, each serial is considered its own standalone story. This season also introduced the character of Harry Sullivan as a companion; this character was intended to undertake action scenes, during the period prior to Tom Baker being cast, when it was unclear how old the actor playing the new Doctor would be.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      075Robot4A4 episodesTerrance DicksChristopher Barry28 December 1974 – 18 January 1975
      076The Ark in Space4C4 episodesRobert Holmes (and John Lucarotti)Rodney Bennett25 January – 15 February 1975
      077The Sontaran Experiment4B2 episodesBob Baker & Dave MartinRodney Bennett22 February – 1 March 1975
      078Genesis of the Daleks4E6 episodesTerry NationDavid Maloney8 March – 12 April 1975
      079Revenge of the Cybermen4D4 episodesGerry DavisMichael Briant19 April – 10 May 1975
      +

      Season 13 (1975–76)

      + +

      During this season, Ian Marter (Harry Sullivan) left after Terror of the Zygons, but returned for a guest appearance in The Android Invasion. Terror of the Zygons also saw the last semi-regular appearance of Nicholas Courtney (Brigadier Lethbridge-Stewart) who would not return until Season 20 in Mawdryn Undead.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      080Terror of the Zygons4F4 episodesRobert Banks StewartDouglas Camfield30 August – 20 September 1975
      081Planet of Evil4H4 episodesLouis MarksDavid Maloney27 September – 18 October 1975
      082Pyramids of Mars4G4 episodesStephen Harris (pseudonym for Robert Holmes and Lewis Greifer)Paddy Russell25 October – 15 November 1975
      083The Android Invasion4J4 episodesTerry NationBarry Letts22 November – 13 December 1975
      084The Brain of Morbius4K4 episodesRobin Bland (pseudonym for Terrance Dicks and Robert Holmes)Christopher Barry3–24 January 1976
      085The Seeds of Doom4L6 episodesRobert Banks StewartDouglas Camfield31 January – 6 March 1976
      +

      Season 14 (1976–77)

      + +

      Elizabeth Sladen (Sarah Jane Smith) left the series this season and was replaced by Louise Jameson (Leela). The season also saw the first story in which the Doctor did not have a companion, The Deadly Assassin.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      086The Masque of Mandragora4M4 episodesLouis MarksRodney Bennett4–25 September 1976
      087The Hand of Fear4N4 episodesBob Baker & Dave MartinLennie Mayne2–23 October 1976
      088The Deadly Assassin4P4 episodesRobert HolmesDavid Maloney30 October – 20 November 1976
      089The Face of Evil4Q4 episodesChris BoucherPennant Roberts1–22 January 1977
      090The Robots of Death4R4 episodesChris BoucherMichael Briant29 January – 19 February 1977
      091The Talons of Weng-Chiang4S6 episodesRobert Holmes (and Robert Banks Stewart)David Maloney26 February – 2 April 1977
      +

      Season 15 (1977–78)

      + +

      Graham Williams took over as producer from Philip Hinchcliffe. Robert Holmes was replaced as script editor by Anthony Read during The Sun Makers.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      092Horror of Fang Rock4V4 episodesTerrance DicksPaddy Russell3–24 September 1977
      093The Invisible Enemy4T4 episodesBob Baker & Dave MartinDerrick Goodwin1–22 October 1977
      094Image of the Fendahl4X4 episodesChris BoucherGeorge Spenton-Foster29 October – 19 November 1977
      095The Sun Makers4W4 episodesRobert HolmesPennant Roberts26 November – 17 December 1977
      096Underworld4Y4 episodesBob Baker & Dave MartinNorman Stewart7–28 January 1978
      097The Invasion of Time4Z6 episodesDavid Agnew (pseudonym for Graham Williams and Anthony Read)Gerald Blake4 February – 11 March 1978
      +

      Season 16 (1978–79)

      + +

      Douglas Adams took over as script editor from Anthony Read for The Armageddon Factor. Season 16 consists of one long story arc encompassing six separate, linked stories. This season is referred to by the umbrella title The Key to Time and has been released on DVD under this title.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      098The Ribos Operation5A4 episodesRobert HolmesGeorge Spenton-Foster2–23 September 1978
      099The Pirate Planet5B4 episodesDouglas AdamsPennant Roberts30 September – 21 October 1978
      100The Stones of Blood5C4 episodesDavid FisherDarrol Blake28 October – 18 November 1978
      101The Androids of Tara5D4 episodesDavid FisherMichael Hayes25 November – 16 December 1978
      102The Power of Kroll5E4 episodesRobert HolmesNorman Stewart23 December 1978 – 13 January 1979
      103The Armageddon Factor5F6 episodesBob Baker and Dave MartinMichael Hayes20 January – 24 February 1979
      +

      Season 17 (1979–80)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      104Destiny of the Daleks5J4 episodesTerry NationKen Grieve1–22 September 1979
      105City of Death5H4 episodesDavid Agnew (pseudonym for Douglas Adams, Graham Williams, and David Fisher)Michael Hayes29 September – 20 October 1979
      106The Creature from the Pit5G4 episodesDavid FisherChristopher Barry27 October – 17 November 1979
      107Nightmare of Eden5K4 episodesBob BakerAlan Bromly24 November – 15 December 1979
      108The Horns of Nimon5L4 episodesAnthony ReadKenny McBain22 December 1979 – 12 January 1980
      Shada[β]5M6 episodesDouglas AdamsPennant RobertsUnaired
      +

      Season 18 (1980–81)

      + +

      John Nathan-Turner replaced Graham Williams as producer. Barry Letts returned, as executive producer, for just this season. Christopher H. Bidmead replaced Douglas Adams as script editor. In a return to the format of early seasons, virtually all serials from Seasons 18 through 20 are linked together, often running directly into each other.

      +

      Season 18 forms a loose story arc dealing with the theme of entropy. Full Circle, State of Decay, and Warriors' Gate trace the Doctor's adventures in E-Space; they were released in both VHS and DVD boxsets with the umbrella title The E-Space Trilogy.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      109The Leisure Hive5N4 episodesDavid FisherLovett Bickford30 August – 20 September 1980
      110Meglos5Q4 episodesJohn Flanagan and Andrew McCullochTerence Dudley27 September – 18 October 1980
      111Full Circle5R4 episodesAndrew SmithPeter Grimwade25 October – 15 November 1980
      112State of Decay5P4 episodesTerrance DicksPeter Moffatt22 November – 13 December 1980
      113Warriors' Gate5S4 episodesStephen GallagherPaul Joyce & Graeme Harper3–24 January 1981
      114The Keeper of Traken5T4 episodesJohnny ByrneJohn Black31 January – 21 February 1981
      115Logopolis5V4 episodesChristopher H. BidmeadPeter Grimwade28 February – 21 March 1981
      +

      Fifth Doctor

      +

      The Fifth Doctor was portrayed by Peter Davison.

      +

      Season 19 (1982)

      + +

      Antony Root took over from Bidmead as script editor for Four to Doomsday and The Visitation, after which he was replaced by Eric Saward. The show moved from its traditional once-weekly Saturday broadcast to being broadcast twice-weekly primarily on Monday and Tuesday, although there were regional variations to the schedule.

      +

      Castrovalva, together with the previous two serials, The Keeper of Traken and Logopolis, form a trilogy involving the return of the Master. They were released on DVD under the banner title New Beginnings.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      116Castrovalva5Z4 episodesChristopher H. BidmeadFiona Cumming4–12 January 1982
      117Four to Doomsday5W4 episodesTerence DudleyJohn Black18–26 January 1982
      118Kinda5Y4 episodesChristopher BaileyPeter Grimwade1–9 February 1982
      119The Visitation5X4 episodesEric SawardPeter Moffatt15–23 February 1982
      120Black Orchid6A2 episodesTerence DudleyRon Jones1–2 March 1982
      121Earthshock6B4 episodesEric SawardPeter Grimwade8–16 March 1982
      122Time-Flight6C4 episodesPeter GrimwadeRon Jones22–30 March 1982
      +

      Season 20 (1983)

      + +

      To commemorate the twentieth season, the stories in this season involve the return of previous villains. Mawdryn Undead, Terminus and Enlightenment involve the Black Guardian's plot to kill the Doctor; they were released individually on VHS and as a set on DVD as parts of The Black Guardian Trilogy. This season was broadcast twice weekly on Tuesday and Wednesday evenings on BBC1.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      123Arc of Infinity6E4 episodesJohnny ByrneRon Jones3–12 January 1983
      124Snakedance6D4 episodesChristopher BaileyFiona Cumming18–26 January 1983
      125Mawdryn Undead6F4 episodesPeter GrimwadePeter Moffatt1–9 February 1983
      126Terminus6G4 episodesStephen GallagherMary Ridge15–23 February 1983
      127Enlightenment6H4 episodesBarbara CleggFiona Cumming1–9 March 1983
      128The King's Demons6J2 episodesTerence DudleyTony Virgo15–16 March 1983
      +

      Special (1983)

      + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      129The Five Doctors[λ]6K20th anniversary special (90 mins)Terrance DicksPeter Moffatt23 November 1983 (USA)
      +25 November 1983 (UK)
      +

      Season 21 (1984)

      + +

      Episodes were broadcast twice weekly on Thursday and Friday evenings, with Resurrection of the Daleks broadcast on two consecutive Wednesday nights.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      130Warriors of the Deep6L4 episodesJohnny ByrnePennant Roberts5–13 January 1984
      131The Awakening6M2 episodesEric PringleMichael Owen Morris19–20 January 1984
      132Frontios6N4 episodesChristopher H. BidmeadRon Jones26 January – 3 February 1984
      133Resurrection of the Daleks6P2 episodes (45 mins each)[μ]Eric SawardMatthew Robinson8–15 February 1984
      134Planet of Fire6Q4 episodesPeter GrimwadeFiona Cumming23 February – 2 March 1984
      135The Caves of Androzani6R4 episodesRobert HolmesGraeme Harper8–16 March 1984
      +

      Sixth Doctor

      +

      The Sixth Doctor was portrayed by Colin Baker.

      +

      Season 21 (1984) continued

      + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      136The Twin Dilemma6S4 episodesAnthony StevenPeter Moffatt22–30 March 1984
      +

      Season 22 (1985)

      + +

      The series moved back to once-weekly Saturday broadcasts. All episodes were 45 minutes long, though they also exist in 25-minute versions. Although there were now only 13 episodes in the season, the total running time remained approximately the same as in previous seasons since the episodes were almost twice as long.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      137Attack of the Cybermen6T2 episodesPaula MooreMatthew Robinson5–12 January 1985
      138Vengeance on Varos6V2 episodesPhilip MartinRon Jones19–26 January 1985
      139The Mark of the Rani6X2 episodesPip and Jane BakerSarah Hellings2–9 February 1985
      140The Two Doctors6W3 episodesRobert HolmesPeter Moffatt16 February – 2 March 1985
      141Timelash6Y2 episodesGlen McCoyPennant Roberts9–16 March 1985
      142Revelation of the Daleks6Z2 episodesEric SawardGraeme Harper23–30 March 1985
      +

      Season 23 (1986)

      + +

      After an 18-month production hiatus, the series returned. Eric Saward was script editor up to part eight, when Nathan-Turner unofficially took over script editing the remainder of the season because of Saward's departure. The whole season is titled as The Trial of a Time Lord, and is split into four segments. The segments are commonly referred to by their working titles[8] (listed below) but the season was broadcast as one fourteen-part story and the working titles did not appear on screen. Episode length returned to 25 minutes, but with only fourteen episodes in the season, making the total running time of this season (and subsequent seasons) just over half of the previous seasons, going back to season 7.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      143Episodes 1-4 (The Mysterious Planet)7A4 episodesRobert HolmesNicholas Mallett6–27 September 1986
      Episodes 5-8 (Mindwarp)7B4 episodesPhilip MartinRon Jones4–25 October 1986
      Episodes 9-12 (Terror of the Vervoids)7C[9]4 episodesPip and Jane BakerChris Clough1–22 November 1986
      Episodes 13-14 (The Ultimate Foe)7C[9]2 episodes
      +(Episode 2 is 30 minutes)
      Robert Holmes and Pip and Jane BakerChris Clough29 November – 6 December 1986
      +

      Seventh Doctor

      +

      The Seventh Doctor was portrayed by Sylvester McCoy.

      +

      Season 24 (1987)

      + +

      Andrew Cartmel took over as script editor. This season was moved to a Monday schedule.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      144Time and the Rani7D4 episodesPip and Jane BakerAndrew Morgan7–28 September 1987
      145Paradise Towers7E4 episodesStephen WyattNicholas Mallett5–26 October 1987
      146Delta and the Bannermen7F3 episodesMalcolm KohllChris Clough2–16 November 1987
      147Dragonfire7G3 episodesIan BriggsChris Clough23 November – 7 December 1987
      +

      Season 25 (1988–89)

      + +

      The series was moved to Wednesdays.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      148Remembrance of the Daleks7H4 episodesBen AaronovitchAndrew Morgan5–26 October 1988
      149The Happiness Patrol7L3 episodesGraeme CurryChris Clough2–16 November 1988
      150Silver Nemesis7K3 episodesKevin ClarkeChris Clough23 November – 7 December 1988 (UK)
      +25 November 1988 (New Zealand)[ν]
      151The Greatest Show in the Galaxy7J4 episodesStephen WyattAlan Wareing14 December 1988 – 4 January 1989
      +

      Season 26 (1989)

      + +

      The final season continued to push the series towards a darker approach, focusing this time more on Ace's personal life as well as The Doctor's past and manipulations. This season set the tone for the Virgin New Adventures novels that followed.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      152Battlefield7N4 episodesBen AaronovitchMichael Kerrigan6–27 September 1989
      153Ghost Light7Q3 episodesMarc PlattAlan Wareing4–18 October 1989
      154The Curse of Fenric7M4 episodesIan BriggsNicholas Mallett25 October – 15 November 1989
      155Survival7P3 episodesRona MunroAlan Wareing22 November – 6 December 1989
      +

      Eighth Doctor

      +

      The Eighth Doctor was portrayed by Paul McGann. The movie is the only television appearance of this Doctor during his tenure. The only production title held by this story was Doctor Who. However, producer Philip Segal later suggested Enemy Within as an alternative title. Lacking any other specific name, many fans have adopted this to refer to the movie. Fan groups have also used other informal titles. The DVD release is titled Doctor Who: The Movie. In 2013, Paul McGann returned for the second television appearance of the Eighth Doctor in the minisode titled, "The Night of the Doctor".

      +

      Television movie (1996)

      + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      156Doctor WhoTVM[ξ]Television movie (89 mins)Matthew JacobsGeoffrey Sax12 May 1996 (Canada)
      +14 May 1996 (USA)
      +27 May 1996 (UK)
      +

      Ninth Doctor

      +

      In 2005, the BBC relaunched Doctor Who after a 16-year absence from episodic television, with Russell T Davies, Julie Gardner and Mal Young as executive producers, Phil Collinson as producer, and Christopher Eccleston taking the lead role of the Ninth Doctor.

      +

      The revival adheres to the original continuity. The new series is formatted to a 16:9 widescreen display ratio, and a standard episode length of 45 minutes. For the first time since the 1965/66 season each episode has an individual title, although most stories do not span more than one episode. The show also returned to its traditional Saturday evening slot.

      +

      Series 1 (2005)

      +
      Main article: Doctor Who (series 1)
      +

      The 2005 series constitutes a loose story arc, dealing with the consequences of the Time War and the mysterious Bad Wolf.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      157"Rose"1.11 episodeRussell T DaviesKeith Boak26 March 2005
      158"The End of the World"1.21 episodeRussell T DaviesEuros Lyn2 April 2005
      159"The Unquiet Dead"1.31 episodeMark GatissEuros Lyn9 April 2005
      160"Aliens of London"
      +"World War Three"
      1.4
      +1.5
      2 episodesRussell T DaviesKeith Boak16 April 2005
      +23 April 2005
      161"Dalek"1.61 episodeRobert ShearmanJoe Ahearne30 April 2005
      162"The Long Game"1.71 episodeRussell T DaviesBrian Grant7 May 2005
      163"Father's Day"1.81 episodePaul CornellJoe Ahearne14 May 2005
      164"The Empty Child"
      +"The Doctor Dances"
      1.9
      +1.10
      2 episodesSteven MoffatJames Hawes21 May 2005
      +28 May 2005
      165"Boom Town"1.111 episodeRussell T DaviesJoe Ahearne4 June 2005
      166"Bad Wolf"
      +"The Parting of the Ways"
      1.12
      +1.13
      2 episodesRussell T DaviesJoe Ahearne11 June 2005
      +18 June 2005
      +

      Tenth Doctor

      +

      The Tenth Doctor was portrayed by David Tennant, who was cast before the first series aired.[14] Mal Young vacated his position as executive producer when he departed the BBC after Series 1. He was not replaced in that capacity.

      +

      Specials (2005)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      "Doctor Who: Children in Need"CINChildren in Need special (7 mins)Russell T DaviesEuros Lyn18 November 2005
      167"The Christmas Invasion"2.XChristmas special (60 mins)Russell T DaviesJames Hawes25 December 2005
      +

      Series 2 (2006)

      +
      Main article: Doctor Who (series 2)
      +

      The back-story for the spin-off series Torchwood is "seeded" in various episodes in the 2006 series. Each episode also has an accompanying online TARDISODE.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      168"New Earth"2.11 episodeRussell T DaviesJames Hawes15 April 2006
      169"Tooth and Claw"2.21 episodeRussell T DaviesEuros Lyn22 April 2006
      170"School Reunion"2.31 episodeToby WhithouseJames Hawes29 April 2006
      171"The Girl in the Fireplace"2.41 episodeSteven MoffatEuros Lyn6 May 2006
      172"Rise of the Cybermen"
      +"The Age of Steel"
      2.5
      +2.6
      2 episodesTom MacRaeGraeme Harper13 May 2006
      +20 May 2006
      173"The Idiot's Lantern"2.71 episodeMark GatissEuros Lyn27 May 2006
      174"The Impossible Planet"
      +"The Satan Pit"
      2.8
      +2.9
      2 episodesMatt JonesJames Strong3 June 2006
      +10 June 2006
      175"Love & Monsters"2.101 episodeRussell T DaviesDan Zeff17 June 2006
      176"Fear Her"2.111 episodeMatthew GrahamEuros Lyn24 June 2006
      177"Army of Ghosts"
      +"Doomsday"
      2.12
      +2.13
      2 episodesRussell T DaviesGraeme Harper1 July 2006
      +8 July 2006
      +

      Special (2006)

      + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      178"The Runaway Bride"3.XChristmas special (60 mins)Russell T DaviesEuros Lyn25 December 2006
      +

      Series 3 (2007)

      +
      Main article: Doctor Who (series 3)
      +

      This series introduces Martha Jones and deals with the Face of Boe's final message, the mysterious Mr. Saxon, and the Doctor dealing with the loss of Rose Tyler. Susie Liggat was the producer for "Human Nature" and "The Family of Blood", with Phil Collinson credited as executive producer for those episodes.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      179"Smith and Jones"3.11 episodeRussell T DaviesCharles Palmer31 March 2007
      180"The Shakespeare Code"3.21 episodeGareth RobertsCharles Palmer7 April 2007
      181"Gridlock"3.31 episodeRussell T DaviesRichard Clark14 April 2007
      182"Daleks in Manhattan"
      +"Evolution of the Daleks"
      3.4
      +3.5
      2 episodesHelen RaynorJames Strong21 April 2007
      +28 April 2007
      183"The Lazarus Experiment"3.61 episodeStephen GreenhornRichard Clark5 May 2007
      184"42"3.71 episodeChris ChibnallGraeme Harper19 May 2007
      185"Human Nature"
      +"The Family of Blood"
      3.8
      +3.9
      2 episodesPaul CornellCharles Palmer26 May 2007
      +2 June 2007
      186"Blink"3.101 episodeSteven MoffatHettie MacDonald9 June 2007
      187"Utopia"
      +"The Sound of Drums"
      +"Last of the Time Lords"
      3.11
      +3.12
      +3.13
      3 episodes
      +(3.13 is 52 mins)
      Russell T DaviesGraeme Harper (3.11)
      +Colin Teague (3.12 & 3.13)
      16 June 2007
      +23 June 2007
      +30 June 2007
      +

      Specials (2007)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      "Time Crash"CIN2Children in Need special (8 mins)Steven MoffatGraeme Harper16 November 2007
      188"Voyage of the Damned"4.XChristmas special (72 mins)Russell T DaviesJames Strong25 December 2007
      +

      Series 4 (2008)

      +
      Main article: Doctor Who (series 4)
      +

      This series explores the coincidences binding the Doctor and Donna together. Susie Liggat was the producer for "Planet of the Ood", "The Sontaran Stratagem", "The Poison Sky", "The Unicorn and the Wasp" and "Turn Left", with Phil Collinson credited as executive producer for those episodes. Phil Collinson left the position of producer at the end of the series.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      189"Partners in Crime"4.11 episode (50 mins)Russell T DaviesJames Strong5 April 2008
      190"The Fires of Pompeii"4.3[ο]1 episode (50 mins)James MoranColin Teague12 April 2008
      191"Planet of the Ood"4.2[ο]1 episodeKeith TempleGraeme Harper19 April 2008
      192"The Sontaran Stratagem"
      +"The Poison Sky"
      4.4
      +4.5
      2 episodesHelen RaynorDouglas Mackinnon26 April 2008
      +3 May 2008
      193"The Doctor's Daughter"4.61 episodeStephen GreenhornAlice Troughton10 May 2008
      194"The Unicorn and the Wasp"4.71 episodeGareth RobertsGraeme Harper17 May 2008
      195"Silence in the Library"
      +"Forest of the Dead"
      4.9[ο]
      +4.10[ο]
      2 episodesSteven MoffatEuros Lyn31 May 2008
      +7 June 2008
      196"Midnight"4.8[ο]1 episodeRussell T DaviesAlice Troughton14 June 2008
      197"Turn Left"4.111 episode (50 mins)Russell T DaviesGraeme Harper21 June 2008
      198"The Stolen Earth"
      +"Journey's End"
      4.12
      +4.13
      2 episodes
      +(4.13 is 65 mins)
      Russell T DaviesGraeme Harper28 June 2008
      +5 July 2008
      +

      Specials (2008–10)

      + +

      From "Planet of the Dead", episodes were filmed in HD.[16] Susie Liggat produced "The Next Doctor", while Nikki Wilson produced "The Waters of Mars" and Tracie Simpson produced "Planet of the Dead" and The End of Time. For practical reasons, these specials continued to use Series 4 production codes.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      199"The Next Doctor"4.14Christmas special (60 mins)Russell T DaviesAndy Goddard25 December 2008
      200"Planet of the Dead"4.15Easter special (60 mins)Russell T Davies & Gareth RobertsJames Strong11 April 2009
      201"The Waters of Mars"4.16Autumn special (60 mins)Russell T Davies & Phil FordGraeme Harper15 November 2009
      202The End of Time4.17
      +4.18
      Christmas special (60 mins)
      +New Year's special (75 mins)
      Russell T DaviesEuros Lyn25 December 2009
      +1 January 2010
      +

      Eleventh Doctor

      +

      The Eleventh Doctor was portrayed by Matt Smith. Steven Moffat took over as head writer and executive producer after Russell T Davies stepped down. Julie Gardner also stepped down as executive producer and was replaced by Piers Wenger and Beth Willis.

      +

      Series 5 (2010)

      +
      Main article: Doctor Who (series 5)
      +

      Tracie Simpson and Peter Bennett shared producer duties for this series only, with Patrick Schweitzer co-producing with Simpson for "The Vampires of Venice" and "Vincent and the Doctor".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      203"The Eleventh Hour"1.11 episode (65 mins)Steven MoffatAdam Smith3 April 2010
      204"The Beast Below"1.21 episodeSteven MoffatAndrew Gunn10 April 2010
      205"Victory of the Daleks"1.31 episodeMark GatissAndrew Gunn17 April 2010
      206"The Time of Angels"
      +"Flesh and Stone"
      1.4
      +1.5
      2 episodesSteven MoffatAdam Smith24 April 2010
      +1 May 2010
      207"The Vampires of Venice"1.61 episode (50 mins)Toby WhithouseJonny Campbell8 May 2010
      208"Amy's Choice"1.71 episodeSimon NyeCatherine Morshead15 May 2010
      209"The Hungry Earth"
      +"Cold Blood"
      1.8
      +1.9
      2 episodes
      Chris ChibnallAshley Way22 May 2010
      +29 May 2010
      210"Vincent and the Doctor"1.101 episodeRichard CurtisJonny Campbell5 June 2010
      211"The Lodger"1.111 episodeGareth RobertsCatherine Morshead12 June 2010
      212"The Pandorica Opens"
      +"The Big Bang"
      1.12
      +1.13
      2 episodes
      +(50 and 55 mins)
      Steven MoffatToby Haynes19 June 2010
      +26 June 2010
      +

      Specials (2010–11)

      +

      Sanne Wohlenberg produced "A Christmas Carol".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      213"A Christmas Carol"2.XChristmas special (60 mins)Steven MoffatToby Haynes25 December 2010
      "Space"
      +"Time"
      2 Comic Relief specials (3 mins each)Steven MoffatRichard Senior18 March 2011
      +

      Series 6 (2011)

      +
      Main article: Doctor Who (series 6)
      +

      The original transmission of series 6 was split into two parts, with the first seven episodes airing April to June 2011 and the final six from late August to October 2011. Sanne Wohlenberg continued as producer for the first block of filming, consisting of "The Doctor's Wife" and "Night Terrors". Marcus Wilson then took over as series producer, with Denise Paul producing "Closing Time".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      214"The Impossible Astronaut"
      +"Day of the Moon"
      2.1
      +2.2
      2 episodesSteven MoffatToby Haynes23 April 2011
      +30 April 2011
      215"The Curse of the Black Spot"2.9[π]1 episodeStephen ThompsonJeremy Webb7 May 2011
      216"The Doctor's Wife"2.3[π]1 episodeNeil GaimanRichard Clark14 May 2011
      217"The Rebel Flesh"
      +"The Almost People"
      2.5
      +2.6
      2 episodesMatthew GrahamJulian Simpson21 May 2011
      +28 May 2011
      218"A Good Man Goes to War"2.71 episode (50 mins)Steven MoffatPeter Hoar4 June 2011
      219"Let's Kill Hitler"2.81 episode (50 mins)Steven MoffatRichard Senior27 August 2011
      220"Night Terrors"2.4[π]1 episodeMark GatissRichard Clark3 September 2011
      221"The Girl Who Waited"2.101 episodeTom MacRaeNick Hurran10 September 2011
      222"The God Complex"2.111 episode (50 mins)Toby WhithouseNick Hurran17 September 2011
      223"Closing Time"2.121 episodeGareth RobertsSteve Hughes24 September 2011
      224"The Wedding of River Song"2.131 episodeSteven MoffatJeremy Webb1 October 2011
      +

      Specials (2011–12)

      +

      The Christmas special was executive produced by Moffat, Wenger and Caroline Skinner.[17] Beth Willis left the BBC and stepped down as executive producer after series 6[18] and Wenger also departed following the Christmas special, leaving Moffat and Skinner as executive producers for series 7.[19]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleCodeEpisodesWriterDirectorOriginal airdate
      225"The Doctor, the Widow and the Wardrobe"X11Christmas special (60 mins)Steven MoffatFarren Blackburn25 December 2011
      Pond Life5 mini-episodesChris ChibnallSaul Metzstein27–31 August 2012 (webcast)
      +1 September 2012 (BBC Red Button)
      +

      Series 7 (2012–13)

      +
      Main article: Doctor Who (series 7)
      +

      Series 7 started with five episodes in late 2012, followed by a Christmas special and eight episodes in 2013. From this series on, the use of production codes were abandoned.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleEpisodesWriterDirectorOriginal airdate
      226"Asylum of the Daleks"1 episode (50 mins)Steven MoffatNick Hurran1 September 2012
      227"Dinosaurs on a Spaceship"1 episodeChris ChibnallSaul Metzstein8 September 2012
      228"A Town Called Mercy"1 episodeToby WhithouseSaul Metzstein15 September 2012
      229"The Power of Three"1 episodeChris ChibnallDouglas Mackinnon22 September 2012
      230"The Angels Take Manhattan"1 episodeSteven MoffatNick Hurran29 September 2012
      +

      Specials (2012)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleEpisodesWriterDirectorOriginal airdate
      "P.S."1 mini-episode (5 mins)Chris Chibnall12 October 2012 (webcast)
      "The Great Detective"1 mini-episode (3 mins)Steven Moffat16 November 2012
      231"The Snowmen"Christmas special (60 mins)Steven MoffatSaul Metzstein25 December 2012
      +

      Series 7 (2012–13) continued

      +

      Denise Paul produced "The Bells of Saint John", "The Rings of Akhaten", "Nightmare in Silver" and "The Name of the Doctor" with Marcus Wilson credited as series producer on those episodes.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleEpisodesWriterDirectorOriginal airdate
      232"The Bells of Saint John"1 episodeSteven MoffatColm McCarthy30 March 2013
      233"The Rings of Akhaten"1 episodeNeil CrossFarren Blackburn6 April 2013
      234"Cold War"1 episodeMark GatissDouglas Mackinnon13 April 2013
      235"Hide"1 episodeNeil CrossJamie Payne20 April 2013
      236"Journey to the Centre of the TARDIS"1 episodeStephen ThompsonMat King27 April 2013
      237"The Crimson Horror"1 episodeMark GatissSaul Metzstein4 May 2013
      238"Nightmare in Silver"1 episodeNeil GaimanStephen Woolfenden11 May 2013
      239"The Name of the Doctor"1 episodeSteven MoffatSaul Metzstein18 May 2013
      +

      Specials (2013)

      + +

      Following Caroline Skinner's departure, BBC Wales' Head of Drama, Faith Penhale, served as Executive Producer with Moffat for the 50th anniversary special;[20] Brian Minchin, previously a script editor in series 5, took over the role thereafter.[21]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleEpisodesWriterDirectorOriginal airdate
      "The Night of the Doctor"1 mini-episode (7 mins)Steven MoffatJohn Hayes14 November 2013 (webcast)
      +16 November 2013 (BBC Red Button)
      "The Last Day"1 mini-episode (4 mins)Steven MoffatJamie Stone21 November 2013 (webcast)
      240"The Day of the Doctor"50th anniversary special (75 mins)Steven MoffatNick Hurran23 November 2013
      241"The Time of the Doctor"Christmas special (60 mins)Steven MoffatJamie Payne25 December 2013
      +

      Twelfth Doctor

      +

      The Twelfth Doctor is portrayed by Peter Capaldi.

      +

      Series 8 (2014)

      +
      Main article: Doctor Who (series 8)
      +

      Producer Marcus Wilson was replaced by Nikki Wilson and Peter Bennett.[22]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitle[23]EpisodesWriter[23]Director[23]Original airdate[24]
      242"Deep Breath"1 episode (76 mins)Steven MoffatBen Wheatley23 August 2014
      243"Into the Dalek"1 episodePhil Ford & Steven MoffatBen Wheatley30 August 2014
      244"Robot of Sherwood"1 episodeMark GatissPaul Murphy6 September 2014
      245"Listen"1 episodeSteven MoffatDouglas Mackinnon13 September 2014
      246"Time Heist"1 episodeStephen Thompson & Steven MoffatDouglas Mackinnon20 September 2014
      247"The Caretaker"1 episodeGareth Roberts & Steven MoffatPaul Murphy27 September 2014
      248"Kill the Moon"1 episodePeter HarnessPaul Wilmshurst4 October 2014
      249"Mummy on the Orient Express"1 episodeJamie MathiesonPaul Wilmshurst11 October 2014
      250"Flatline"1 episodeJamie MathiesonDouglas Mackinnon18 October 2014
      251"In the Forest of the Night"1 episodeFrank Cottrell BoyceSheree Folkson25 October 2014
      252"Dark Water"
      +"Death in Heaven"
      2 episodesSteven MoffatRachel Talalay1 November 2014
      +8 November 2014
      +

      Special (2014)

      +

      Filming on the 2014 Christmas Special began in September 2014, with both Peter Capaldi and Jenna Coleman confirmed to return.[25] Filming wrapped 3 October 2014.[26]

      + + + + + + + + + + + + + + + + + +
      NoTitleEpisodesWriterDirectorOriginal airdate
      253TBAChristmas special[27]Steven Moffat[27]Paul Wilmshurst[28]25 December 2014
      +

      Other stories

      +

      Television broadcasts

      +

      There have also been several special Doctor Who episodes and serials that are produced by the BBC. They usually consist of spoofs and crossovers with other TV shows, and stories produced for special occasions.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirectorOriginal airdate
      "A Fix with Sontarans"1 episode, 9 minutesEric SawardMarcus Mortimer23 February 1985
      A segment of Jim'll Fix It during Colin Baker's tenure as the Sixth Doctor, also starring Janet Fielding as Tegan Jovanka.
      "Search Out Science: The Ultimate Challenge"[29]1 episode, 20 minutesLambros Atteshlis and Stuart Berry-Anne BillingsleyStuart Berry-Anne Billingsley21 November 1990
      A special edition of the children's education programme Search Out Science featuring Sylvester McCoy as the Seventh Doctor, Sophie Aldred as Ace and John Leeson as K-9.
      Dimensions in Time2 episodes, 13 minutes totalJohn Nathan-Turner and David RodenStuart MacDonald26–27 November 1993
      A thirtieth anniversary programme for Doctor Who. The special was also a crossover with EastEnders. It featured Jon Pertwee, Tom Baker, Peter Davison, Colin Baker and Sylvester McCoy as the Doctor plus many of the companions.
      Doctor Who and the Curse of Fatal Death4 parts, 23 minutes totalSteven MoffatJohn Henderson12 March 1999
      A Comic Relief spoof, starring Rowan Atkinson, Richard E. Grant, Jim Broadbent, Hugh Grant, and Joanna Lumley as the Doctor, and Jonathan Pryce as the Master.
      "Attack of the Graske"14-minute interactive episodeGareth RobertsAshley Way25 December 2005
      An interactive "mini-episode" debuting on the BBC Red Button service
      The Infinite Quest13 parts, 45 minutes totalAlan BarnesGary Russell2 April – 30 June 2007
      An animated serial debuting as segments during Totally Doctor Who made during David Tennant's tenure as The Doctor, plus his companion Martha Jones.
      "Music of the Spheres"7 minutesRussell T DaviesEuros Lyn27 July 2008
      +BBC iPlayer and BBC Radio 3 (audio only)
      +1 January 2009[30]
      +BBC One
      A segment of the 2008 BBC Proms
      "Doctor Who: Tonight's the Night"3 minutesRussell T DaviesAlice Troughton23 May 2009
      A segment of Tonight's the Night written for the winner of the Doctor Who Alien Talent Search competition.[31] Starring the competition winner Tim Ingham as Sao Til,[32] John Barrowman as Captain Jack Harkness and David Tennant as himself.
      Dreamland6 parts, 45 minutes totalPhil FordGary Russell21–26 November 2009[33]
      +BBC Red Button and online
      +5 December 2009
      +BBC Two
      An animated serial debuting on the BBC Red Button service and the BBC Doctor Who website, and later broadcast as one episode on BBC Two.
      "Death Is the Only Answer"[34]4 minutesThe Children of Oakley Junior SchoolJeremy Webb1 October 2011
      Doctor Who Confidential special
      "Good as Gold"[35][36]3 minutesThe Children of Ashdene SchoolSaul Metzstein[37]24 May 2012
      Blue Peter special
      The Five(ish) Doctors Reboot31 minutesPeter DavisonPeter Davison23 November 2013
      A 50th anniversary Doctor Who comedy homage debuting on the BBC Red Button service, featuring former stars Peter Davison, Colin Baker, Sylvester McCoy and others.
      +

      Home video releases

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirectorRelease date
      Meanwhile in the TARDIS2 episodes, 7 minutes totalSteven MoffatEuros Lyn8 November 2010
      Two additional scenes, starring Matt Smith and Karen Gillan, specially filmed for "The Complete Fifth Series" boxset which reveal what occurred between selected regular episodes. The first instalment is set between "The Eleventh Hour" and "The Beast Below", the second is set between "Flesh and Stone" and "The Vampires of Venice".
      Night and the Doctor[38]"Bad Night"
      +"Good Night"
      +"First Night"
      +"Last Night"
      +"Up All Night", 16 minutes total
      Steven MoffatRichard Senior[39]21 November 2011
      Five additional scenes written and produced for "The Complete Sixth Series" boxset.
      +

      Radio broadcasts

      +

      There have been many Doctor Who radio broadcasts over the years. In addition to a small number of in-house BBC productions, a larger number of radio plays produced by Big Finish began to be broadcast on BBC Radio 7 from 2005, featuring the Eighth Doctor (again played by Paul McGann) with mainstay companions Charley Pollard and later Lucie Miller. Initially, these were broadcasts of Big Finish productions that had already been released on CD. However, the series that began with Blood of the Daleks and concluded with Human Resources was specially commissioned by the BBC from Big Finish for broadcast prior to the CD release. Many more of these were released on CD than were broadcast on the radio; only those plays broadcast by the BBC are listed here. See the list of Doctor Who audio releases as a starting point for other audio plays and audio books, notably the list of Doctor Who audio plays by Big Finish which includes considerably more plays than were broadcast.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirector/ProducerOriginal airdate
      Movietime: "Daleks – Invasion Earth – 2150 A.D."1 episodeGordon Gow (adaptation)Tony Luke18 November 1966[40][41]
      A narrated broadcast of the soundtrack of the second Dalek film on the BBC Light Programme
      "Exploration Earth: The Time Machine"1 episode, 20 minutesBernard VenablesMike Howarth and David Lyttle4 October 1976
      An educational Radio 4 drama featuring the Fourth Doctor
      Slipback6 episodes, 10 minutes eachEric SawardPaul Spencer25 July – 8 August 1985
      A Radio 4 serial featuring the Sixth Doctor
      The Paradise of Death5 episodes, 30 minutes eachBarry LettsPhil Clarke27 August – 24 September 1993
      A Radio 5 serial featuring the Third Doctor
      Doctor Who and the Ghosts of N-Space6 episodes, 30 minutes eachBarry LettsPhil Clarke20 January – 24 February 1996
      A Radio 2 drama featuring the Third Doctor
      +

      The following are all Eighth Doctor dramas produced by Big Finish and broadcast on BBC Radio 7.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirector/ProducerOriginal airdate
      Storm Warning4 episodes, 25 minutes eachAlan BarnesGary Russell6–27 August 2005
      Sword of Orion4 episodes, 25 minutes eachNicholas BriggsNicholas Briggs3–24 September 2005
      The Stones of Venice4 episodes, 25 minutes eachPaul MagrsGary Russell1–22 October 2005
      Invaders from Mars4 episodes, 25 minutes eachMark GatissMark Gatiss29 October – 19 November 2005
      Shada1 episode, 150 minutesDouglas Adams & Gary RussellNicholas Pegg10 December 2005
      The Chimes of Midnight4 episodes, 25 minutes eachRobert ShearmanBarnaby Edwards17 December 2005 – 7 January 2006
      Blood of the Daleks2 episodes, 50 minutes eachSteve LyonsNicholas Briggs31 December 2006 – 7 January 2007
      Horror of Glam Rock1 episode, 50 minutesPaul MagrsBarnaby Edwards14 January 2007
      Immortal Beloved1 episode, 50 minutesJonathan ClementsJason Haigh-Ellery21 January 2007
      Phobos1 episode, 50 minutesEddie RobsonBarnaby Edwards28 January 2007
      No More Lies1 episode, 50 minutesPaul SuttonBarnaby Edwards4 February 2007
      Human Resources2 episodes, 50 minutes eachEddie RobsonNicholas Briggs11–18 February 2007
      Dead London1 episode, 50 minutesPat MillsBarnaby Edwards19 October 2008
      Max Warp1 episode, 50 minutesJonathan MorrisBarnaby Edwards26 October 2008
      Brave New Town1 episode, 50 minutesJonathan ClementsBarnaby Edwards2 November 2008
      The Skull of Sobek1 episode, 50 minutesMarc PlattBarnaby Edwards9 November 2008
      Grand Theft Cosmos1 episode, 50 minutesEddie RobsonBarnaby Edwards19 November 2008
      The Zygon Who Fell to Earth1 episode, 50 minutesPaul MagrsBarnaby Edwards23 November 2008
      Sisters of the Flame1 episode, 55 minutesNicholas BriggsNicholas Briggs31 October 2009[42]
      Vengeance of Morbius1 episode, 55 minutesNicholas BriggsNicholas Briggs18 December 2009
      Orbis2 episodes, 30 minutes eachAlan Barnes & Nicholas BriggsNicholas Briggs16–23 May 2010
      The Beast of Orlok2 episodes, 30 minutes eachBarnaby EdwardsBarnaby Edwards30 May – 6 June 2010
      Scapegoat2 episodes, 30 minutes eachPat MillsNicholas Briggs13–20 June 2010
      The Cannibalists2 episodes, 30 minutes eachJonathan MorrisJason Haigh-Ellery27 June – 4 July 2010
      Death in Blackpool1 60-minute episodeAlan BarnesBarnaby Edwards7 January 2013
      Situation Vacant1 60-minute episodeEddie RobsonNicholas Briggs8 January 2013
      Nevermore1 60-minute episodeAlan BarnesNicholas Briggs9 January 2013
      The Books of Kells1 60-minute episodeBarnaby EdwardsBarnaby Edwards10 January 2013
      Deimos1 60-minute episodeJonathan MorrisBarnaby Edwards11 January 2013
      The Resurrection of Mars1 60-minute episodeJonathan MorrisBarnaby Edwards14 January 2013
      Relative Dimensions1 60-minute episodeMarc PlattBarnaby Edwards15 January 2013
      Prisoner of the Sun1 60-minute episodeEddie RobsonJason Haigh-Ellery16 January 2013
      Lucie Miller1 60-minute episodeNicholas BriggsNicholas Briggs17 January 2013
      To the Death1 60-minute episodeNicholas BriggsNicholas Briggs18 January 2013
      +

      In 2011, BBC Radio 4 Extra began a series of Fifth Doctor dramas produced by Big Finish.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirector/ProducerOriginal airdate
      Cobwebs4 episodes, 30 minutes eachJonathan MorrisBarnaby Edwards16–20 May 2011[43]
      The Whispering Forest4 episodes, 30 minutes eachStephen ColeBarnaby Edwards20–25 May 2011[43]
      The Cradle of the Snake4 episodes, 30 minutes eachMarc PlattBarnaby Edwards26 May – 1 June 2011
      +

      December 2011 saw the broadcast of the Fourth Doctor audio Hornets' Nest on BBC Radio 4 Extra.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirector/ProducerOriginal airdate
      The Stuff of Nightmares2 episodes, 30 minutes eachPaul MagrsKate Thomas12–13 December 2011[44][45]
      The Dead Shoes2 episodes, 30 minutes eachPaul MagrsKate Thomas14–15 December 2011[46][47]
      The Circus of Doom2 episodes, 30 minutes eachPaul MagrsKate Thomas16 & 19 December 2011[48][49]
      A Sting in the Tale2 episodes, 30 minutes eachPaul MagrsKate Thomas20–21 December 2011[50][51]
      Hive of Horror2 episodes, 30 minutes eachPaul MagrsKate Thomas22–23 December 2011[52][53]
      +

      In 2012, BBC Radio 4 Extra began a series of Seventh Doctor dramas produced by Big Finish.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirector/ProducerOriginal airdate
      A Thousand Tiny Wings3 episodes, 30 minutes eachAndy LaneLisa Bowerman21–23 May 2012
      Survival of the Fittest4 episodes, 30 minutes eachJonathan ClementsJohn Ainsworth24–29 May 2012[54][55][56][57]
      The Architects of History4 episodes, 30 minutes eachSteve LyonsJohn Ainsworth30 May – 4 June 2012[58][59]
      +

      Audiobook readings

      +

      BBC Radio 4 Extra has aired some of BBC Audio's audiobook readings of Classic Series novelisations, all read by Tom Baker.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterReaderOriginal airdates
      Doctor Who and the Giant Robot8 episodes, 30 min eachTerrance DicksTom Baker5–14 April 2010[60]
      Doctor Who and The Brain of Morbius8 episodes, 30 min eachTerrance DicksTom Baker15–26 April 2010[60]
      Doctor Who and the Creature from the Pit7 episodes, 30 min eachDavid FisherTom Baker27 April – 5 May 2010[60]
      Doctor Who and the Pyramids of Mars6 episodes, 30 min eachTerrance DicksTom Baker26 December 2011 – 2 January 2012[60]
      +

      50th Anniversary

      +

      In 2013, BBC Radio 4 Extra broadcast 8 audio adventures and talking books from both Big Finish and Audio Go under the title of Doctor Who at 50.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterReader / StarringOriginal airdates
      Doctor Who and the Daleks10 episodes, 30 mins eachDavid WhitakerWilliam Russell16 November 2013[61]
      Protect and Survive4 episodes, 30 mins eachJonathan MorrisSylvester McCoy, Sophie Aldred & Philip Olivier17 November 2013[61]
      1963: Fanfare for the Common Men4 episodes, 30 mins eachJohn DorneyPeter Davison & Sarah Sutton18 November 2013[61]
      A Thousand Tiny Wings3 episodes, 30 mins eachAndy LaneSylvester McCoy & Tracey Childs19 November 2013[61]
      Farwell, Great Macedon3 episodes, 2 x 30 mins & 1 x 165 minsMoris Farhi; adapted by Nigel RobinsonWilliam Russell & Carol Ann Ford20 November 2013[61]
      Human Resources2 episodes, 60 mins eachEddie RobsonPaul McGann & Sheridan Smith21 November 2013[61]
      The Dalek Invasion of Earth2 episodes, 1 x 60 mins & 1 x 195 minsTerrance DicksWilliam Russell22 November 2013[61]
      Lucie Miller / To the Death2 episodes, 60 mins eachNicholas BriggsPaul McGann & Sheridan Smith24 November 2013
      +

      Webcasts

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      TitleEpisodesWriterDirectorOriginal airdate
      Death Comes to Time13 parts, 140 minutes in totalColin MeekDan Freedman13 July 2001 (pilot)
      +14 February – 3 May 2002 (regular)
      An illustrated audio webcast for BBCi featuring the Seventh Doctor.
      Real Time6 parts, 12 minutes eachGary RussellGary Russell2 August – 6 September 2002
      An illustrated audio webcast for BBCi featuring the Sixth Doctor.
      Shada6 parts, 25 minutes eachDouglas AdamsNicholas Pegg2 May – 6 June 2003
      An illustrated audio webcast for BBCi featuring the Eighth Doctor in a remake of the unfinished Fourth Doctor serial.
      Scream of the Shalka6 parts, 15 minutes eachPaul CornellWilson Milam13 November – 18 December 2003
      Animated webcast for BBCi featuring an alternative version of the Ninth Doctor known as the Shalka Doctor, played by Richard E. Grant.
      +

      Death Comes to Time was released on CD by the BBC, and later re-released as an MP3 CD featuring the original illustrations. Real Time and Shada were released on CD by Big Finish. The webcast for Shada was released on DVD on 7 January 2013 as part of 'The Legacy Collection' and is only viewable on a PC or MAC. Scream of the Shalka was released in novel form in the Past Doctor Adventures series. While it has been classified for DVD release by the BBFC,[62] a planned release was postponed due to the programme's return to television. It was later released on 16 September 2013.[63]

      +

      Video games

      +

      In 1983 Doctor Who: The First Adventure was released for the BBC Micro.[64] followed by Doctor Who and the Warlord in 1985[65] and Doctor Who and the Mines of Terror also in 1985.[66] Later several other games were released.

      +

      The Adventure Games

      + +

      On 7 April 2010, the BBC announced that the fifth series would be supplemented with four "interactive episodes",[67] released online for free in the UK. They are described as "part of the Doctor Who universe", and will "go on to define the look and feel of future TV episodes." Executively produced by Moffat, Wenger and Willis with Anwen Aspden and Charles Cecil, the games are developed by Sumo Digital and written by Phil Ford and James Moran. Matt Smith and Karen Gillan provide full voiceovers for the digitised Doctor and Amy, both of whom are playable characters. Each episode offers around two hours of gameplay.[67] The Adventure Games were recommissioned by the BBC for a second series in 2011,[68] but after the release of The Gunpowder Plot, they were cancelled so the BBC could focus more on console games such as Doctor Who: The Eternity Clock.

      +
      Series 1
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      NoTitleWriterOriginal release
      1"City of the Daleks"Phil Ford5 June 2010
      2"Blood of the Cybermen"Phil Ford26 June 2010
      3"TARDIS"James Moran27 August 2010
      4"Shadows of the Vashta Nerada"Phil Ford22 December 2010
      +
      Series 2
      + + + + + + + + + + + + + +
      NoTitleWriterOriginal release
      5"The Gunpowder Plot"Phil Ford31 October 2011
      +

      See also

      + + + + + + +
      + + + + + + + + + +
      Portal iconDoctor Who portal
      Portal iconBBC portal
      +
      + +

      Footnotes

      +
      +
        +
      1. ^ Although technically the sixteenth season, the season was known by its subtitle, The Key to Time.
      2. +
      3. ^ a b Shada was left unfinished due to a strike. Its recorded footage was later released on home video using linking narration by Tom Baker to complete the story. It is not included in the episode or story counts as it was not broadcast.
      4. +
      5. ^ Although technically the twenty-third season, the season was known by its subtitle, The Trial of a Time Lord.
      6. +
      7. ^ Webber's script for the originally intended opening episode for the first story The Giants was a basis for the opening episode, but Webber didn't work with Coburn on the script.
      8. +
      9. ^ From this story up to the end of the original run [1989], the serials had overall titles (where previously each episode had an individual title), with episodes now simply being numbered (1,2 etc.). For the 2005 revival, episode titles are used, even for most multi-episode tales, although the majority of stories are told in a single episode.
      10. +
      11. ^ Episodes 2, 3, 4 and 7 existed in black and white only, but have been restored to full color for the 2009 DVD boxset, using colour recovery methods and the original colour information found in the chroma dots in a black-and-white film copy.[6]
      12. +
      13. ^ The Three Doctors was a tenth anniversary serial.
      14. +
      15. ^ Between 1976 and 2008, Episode 3 existed only in black and white – for the Dalek War DVD box set release, the colour has been replaced using a combination of computer colourisation by Legend Films, and software developed by the Colour Recovery Working Group. This version was released on DVD in 2009. The colour masters for the other five episodes are still in existence.
      16. +
      17. ^ The first episode lists the serial's name as simply Invasion, in order to conceal the surprise ending to that episode.
      18. +
      19. ^ Between 1976 and 2011, Episode 1 existed only in black and white – for the UNIT Files DVD box set release, the colour has been replaced using a software developed by the Colour Recovery Working Group. This version was released on DVD in 2012. The colour masters for the other five episodes are still in existence.
      20. +
      21. ^ The Five Doctors has also been released as four 25-minute episodes, and a 100 minute "Special Edition" re-edit originally released on VHS in 1995. It is counted as 1 episode in the count.
      22. +
      23. ^ Resurrection of the Daleks was written and filmed as four 25-minute episodes, then re-edited into two 45-minute episodes to accommodate coverage of the 1984 Winter Olympics; the 25-minute versions were later circulated to overseas broadcasters and commercially released. The serial is regarded as two 45-minute episodes in the count.
      24. +
      25. ^ Parts Two and Three of Silver Nemesis were first broadcast in New Zealand as part of a compilation broadcast before their UK transmission.[10]
      26. +
      27. ^ "TVM" is used in the BBC's online episode guide.[11] The actual code used during production is 50/LDX071Y/01X.[12] Doctor Who Magazine's "Complete Eighth Doctor Special" gives the production code as #83705.[13] Big Finish Productions uses the code 8A, and numbers its subsequent Eighth Doctor stories correspondingly.
      28. +
      29. ^ a b c d e As filming progressed on Series 4, the producers decided to rearrange the order of some episodes. "The Fires of Pompeii" and "Planet of the Ood" were switched, and "Midnight" was moved to air after the "Silence in the Library"/"Forest of the Dead" two-parter. However, the episodes retained the production codes reflecting the earlier plans.[15]
      30. +
      31. ^ a b c In order to achieve a greater variety of stories in the first half of series 6, "The Curse of the Black Spot" was moved forward to episode three before it was filmed. "The Doctor's Wife" was placed after it as episode four, and "Night Terrors" was moved to episode nine, the second episode of the series' autumn run. The production codes reflect the original intended order.
      32. +
      +
      +

      References

      +
      +
        +
      1. ^ "Dr Who 'longest-running sci-fi'". BBC. 28 September 2006. Retrieved 15 December 2007. 
      2. +
      3. ^ Colvin, Chad (9 March 2010). "Smallville will break Stargate SG-1's world record". Retrieved 11 December 2011. 
      4. +
      5. ^ Howe, David J.; Walker, Stephen James (1998, 2003). "The Trial of a Time Lord: 1–4 : Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 27 October 2007.  Check date values in: |date= (help)
      6. +
      7. ^ Cornell, Paul; Day, Martin and Topping, Keith (1995). "The Five Doctors: Details". Doctor Who: The Discontinuity Guide. BBC Doctor Who website. Retrieved 27 October 2007. 
      8. +
      9. ^ Spilsbury, Tom (22 April 2009). "The Mighty 200!". Doctor Who Magazine (Royal Tunbridge Wells, Kent: Panini Comics) (407): 26–29. 
      10. +
      11. ^ "The Doctor Who News Page: DVD 2011 Update". Gallifreynewsbase.blogspot.com. 13 January 2011. Retrieved 18 May 2011. 
      12. +
      13. ^ "Tom Baker". BBC Doctor Who website. 12 August 2004. Archived from the original on 29 December 2008. Retrieved 23 April 2013. 
      14. +
      15. ^ "Doctor Who – Classic Series – Episode Guide – Second Doctor Index". BBC. Retrieved 18 May 2011. 
      16. +
      17. ^ a b Pixley, Andrew (1992). "Archive Feature Serial 7C The Ultimate Foe". Doctor Who Magazine (London: Marvel UK) (Winter Special 1992): 43–49. ISSN 0957-9818. 
      18. +
      19. ^ Sullivan, Shannon (7 August 2007). "Silver Nemesis". A Brief History of Time Travel. Retrieved 30 August 2008. 
      20. +
      21. ^ Howe, David J.; Walker, Stephen James. "The TV Movie: Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 26 July 2007. 
      22. +
      23. ^ Segal, Philip; Russell, Gary (2000). Doctor Who: Regeneration. HarperCollinsEntertainment. ISBN 0-00-710591-6. 
      24. +
      25. ^ "The DWM Archive: Doctor Who (1996) – In Production". Doctor Who Magazine Special Edition (5). 3 September 2003. p. 69. ISSN 0957-9818. 
      26. +
      27. ^ "Bad Wolf" / "The Parting of the Ways" at Doctor Who: A Brief History Of Time (Travel) Retrieved 28 November 2007.
      28. +
      29. ^ Pixley, Andrew (August 2008). "The Doctor Who Companion: Series Four". Doctor Who Magazine. Special Edition (20) (Tunbridge Wells, Kent: Panini Publishing). p. 3. ISSN 0957-9818. 
      30. +
      31. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Archived from the original on 10 February 2010. Retrieved 22 April 2010. 
      32. +
      33. ^ "Steven Moffat on the New Exec". BBC. Retrieved 21 July 2011. 
      34. +
      35. ^ "BBC – Doctor Who – Beth Willis On Leaving Doctor Who – News & Features". Bbc.co.uk. Retrieved 22 August 2012. 
      36. +
      37. ^ "Doctor Who executive Piers Wenger leaves BBC for Film4". BBC News. 26 May 2011. Retrieved 9 June 2011. 
      38. +
      39. ^ "Caroline Skinner steps down as Executive Producer of Doctor Who". Media Centre. BBC. 13 March 2013. Retrieved 14 March 2013. 
      40. +
      41. ^ BBC - Media Centre - Brian Minchin confirmed as new Executive Producer of Doctor Who
      42. +
      43. ^ "Peter Capaldi begins filming on Doctor Who". 7 January 2014. 
      44. +
      45. ^ a b c "New Series: All the Episode Titles and More". Doctor Who. 18 August 2014. 
      46. +
      47. ^ "Doctor Who | Press Resources". BBC America Press Room. BBC America. Retrieved 4 September 2014. 
      48. +
      49. ^ "Capaldi & Coleman Back For 2014 Christmas Special". Doctor Who TV. 2014-08-07. Retrieved 2014-08-13. 
      50. +
      51. ^ http://www.thegallifreytimes.co.uk/2014/10/doctor-who-filming-wraps-on-2014.html?m=1
      52. +
      53. ^ a b Greenwood, Carl (2014-03-14). "Doctor Who series 8 spoilers: What we know about Peter Capaldi's debut run as the Doctor, including new cast, rumours and all the latest news - Mirror Online". Mirror.co.uk. Retrieved 2014-08-10. 
      54. +
      55. ^ "2014′s Christmas Special Director". Doctor Who TV. 2014-08-10. Retrieved 2014-08-11. 
      56. +
      57. ^ "Search Out Science". Dominique Boies. Retrieved 4 January 2011. 
      58. +
      59. ^ "Programme Information – BBC Network TV Weeks 52/53 – BBC ONE" (Press release). BBC Press Office. Retrieved 3 December 2008. 
      60. +
      61. ^ "David Tennant makes surprise return to the TARDIS!". BBC. 22 May 2009. Retrieved 24 May 2009. 
      62. +
      63. ^ "County man stars as Doctor Who alien". Lincolnshire Echo. 22 May 2009. Retrieved 25 May 2009. 
      64. +
      65. ^ Will R – Online Host (4 November 2009). "Dreamland: Saturday, 21 November". "Doctor Who: Dreamland Animation Blog". BBC. Retrieved 25 May 2010. [dead link]
      66. +
      67. ^ "BBC announces one-off mini-episode of Doctor Who" (Press release). BBC Press Office. 24 August 2011. Retrieved 24 August 2011. 
      68. +
      69. ^ "Blue Peter | 24/05/2012". Radio Times. Retrieved 15 May 2012. 
      70. +
      71. ^ "Doctor Who is Back". Blog Post. BBC. Retrieved 24 May 2012. 
      72. +
      73. ^ "Twitter / saulmetzstein". 24 May 2012. Retrieved 24 May 2012. 
      74. +
      75. ^ "Doctor Who: The Complete Series Six Boxed Set confirmed for 21 November". Doctor Who News. Retrieved 22 August 2012. 
      76. +
      77. ^ Richard Senior, interviewee (2011). Doctor Who Confidential:The Nights' Tale (DVD and BluRay). 2 Entertain. Event occurs at 40 seconds. Documentary included on the Doctor Who: Complete Series 6 DVD/BD release. Richard Senior interviewed about directing the shorts and named as director in caption. 
      78. +
      79. ^ "Radio Times Listings: "MOVIETIME, Daleks – Invasion Earth – 2150 A.D."". Doctor Who Cuttings Archive. Roger Anderson. Archived from the original on 28 February 2009. Retrieved 10 June 2008. 
      80. +
      81. ^ Pixley, Andrew (10 November 2004). "Doctor Who on Radio – Part One: 1966–1993". Doctor Who Magazine (349): 26–27. 
      82. +
      83. ^ "BBC Radio 7 Programmes- Schedule, Saturday, 31 October 2009". Retrieved 6 October 2009. 
      84. +
      85. ^ a b "The Doctor Who News Page: The Fifth Doctor lands in the Seventh Dimension". Doctorwhonews.net. 14 May 2011. Retrieved 18 May 2011. 
      86. +
      87. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Stuff of Nightmares, part 1". BBC. 13 December 2011. Retrieved 22 August 2012. 
      88. +
      89. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Stuff of Nightmares, part 2". BBC. 14 December 2011. Retrieved 22 August 2012. 
      90. +
      91. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Dead Shoes, part 1". BBC. 15 December 2011. Retrieved 22 August 2012. 
      92. +
      93. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Dead Shoes, part 2". BBC. 16 December 2011. Retrieved 22 August 2012. 
      94. +
      95. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Circus of Doom, part 1". BBC. 17 December 2011. Retrieved 22 August 2012. 
      96. +
      97. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Circus of Doom, part 2". BBC. 20 December 2011. Retrieved 22 August 2012. 
      98. +
      99. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, A Sting in the Tale, part 1". BBC. 21 December 2011. Retrieved 22 August 2012. 
      100. +
      101. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, A Sting in the Tale, part 2". BBC. 22 December 2011. Retrieved 22 August 2012. 
      102. +
      103. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, Hive of Horror, part 1". BBC. 23 December 2011. Retrieved 22 August 2012. 
      104. +
      105. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, Hive of Horror, part 2". BBC. 24 December 2011. Retrieved 22 August 2012. 
      106. +
      107. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 1". BBC. 1 January 1970. Retrieved 24 May 2012. 
      108. +
      109. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 2". BBC. 1 January 1970. Retrieved 24 May 2012. 
      110. +
      111. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 3". BBC. 1 January 1970. Retrieved 24 May 2012. 
      112. +
      113. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 4". BBC. 1 January 1970. Retrieved 24 May 2012. 
      114. +
      115. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – The Architect of History, Episode 1". BBC. 1 January 1970. Retrieved 24 May 2012. 
      116. +
      117. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – The Architect of History, Episode 2". BBC. 1 January 1970. Retrieved 24 May 2012. 
      118. +
      119. ^ a b c d "BBC Radio 4 Extra – Doctor Who – Episode guide". BBC. 29 March 2009. Retrieved 22 August 2012. 
      120. +
      121. ^ a b c d e f g "50th Anniversary Radio Programmes Line-Up". Doctor Who TV. 31 October 2013. Retrieved 1 November 2013. 
      122. +
      123. ^ "BBFC classifications for ',Scream of the Shalka',". Bbfc.co.uk. 20 September 2005. Retrieved 18 May 2011. 
      124. +
      125. ^ "Animation Plans for The Tenth Planet Episode 4". Doctor Who Magazine (Panini Comics) (458): 9. April 2013. 
      126. +
      127. ^ Doctor Who: The First Adventure at MobyGames
      128. +
      129. ^ Micro Fun With BBC TV's Doctor Who, Sci-fi-online.com
      130. +
      131. ^ Doctor Who and the Mines of Terror, Gamespot
      132. +
      133. ^ a b "Doctor Who: The Adventure Games". BBC. Archived from the original on 12 April 2010. Retrieved 3 August 2014. 
      134. +
      135. ^ "Gaming – News – 'Doctor Who: Adventure Games' to return – Digital Spy". Digital Spy. UK. 20 September 2010. Retrieved 18 May 2011. 
      136. +
      +
      +

      Sources

      +
      + +
      +

      External links

      + + + + + + + +

      + + + + + +
      +
      +
      +
      +
      +

      Navigation menu

      + +
      + +
      + + +
      +
      + + + +
      +
      + +
      + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html new file mode 100644 index 000000000..792783f78 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html @@ -0,0 +1,2425 @@ + + + + +Doctor Who - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +
      +
      Page move-protected
      +
      Listen to this article
      +
      +

      Doctor Who

      +
      +
      From Wikipedia, the free encyclopedia
      +
      +
      + Jump to: navigation, search +
      +
      This article is about the television series. For other uses, see Doctor Who (disambiguation).
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Doctor Who
      Doctor Who - Current Titlecard.png +
      Doctor Who title card since 2014
      +
      GenreScience fiction
      +Drama
      Created by + +
      Written byVarious
      Directed byVarious
      StarringVarious Doctors
      +(as of 2014, Peter Capaldi)
      +Various companions
      +(as of 2014, Jenna Coleman)
      Theme music composer +
      + +
      +
      Opening themeDoctor Who theme music
      Composer(s)Various composers
      +(since 2005, Murray Gold)
      Country of originUnited Kingdom
      No. of seasons26 (1963–89)
      ++ 1 TV film (1996)
      No. of series8 (2005–present)
      No. of episodes813 (97 missing) (list of episodes)
      Production
      Executive producer(s)Various
      +(as of 2014, Steven Moffat and Brian Minchin[1])
      Camera setupSingle/multiple-camera hybrid
      Running timeRegular episodes:
      +
      +
        +
      • 25 minutes (1963–84, 1986–89)
      • +
      • 45 minutes (1985, 2005–present)
      • +
      +
      +Specials:
      +Various: 50–90 minutes
      Release
      Original channel +
      + +
      +
      Picture format +
      + +
      +
      Audio format +
      + +
      +
      Original releaseClassic series:
      +23 November 1963 (1963-11-23) –
      +6 December 1989
      +Television film:
      +12 May 1996
      +Revived series:
      +26 March 2005 – present
      Chronology
      Related shows +
      + +
      +
      External links
      Doctor Who at the BBC
      +

      Doctor Who is a British science-fiction television programme produced by the BBC from 1963 to the present day. The programme depicts the adventures of the Doctor, a Time Lord— a space and time-travelling humanoid alien. He explores the universe in his TARDIS, a sentient time-travelling space ship. Its exterior appears as a blue British police box, which was a common sight in Britain in 1963 when the series first aired. Along with a succession of companions, the Doctor combats a variety of foes while working to save civilisations and help people in need.

      +

      The show is a significant part of British popular culture,[2][3] and elsewhere it has become a cult television favourite. The show has influenced generations of British television professionals, many of whom grew up watching the series.[4] The programme originally ran from 1963 to 1989. After an unsuccessful attempt to revive regular production in 1996 with a backdoor pilot in the form of a television film, the programme was relaunched in 2005 by Russell T Davies who was showrunner and head writer for the first five years of its revival, produced in-house by BBC Wales in Cardiff. The first series of the 21st century, featuring Christopher Eccleston in the title role, was produced by the BBC. Series two and three had some development money contributed by the Canadian Broadcasting Corporation (CBC), which was credited as a co-producer.[5] Doctor Who also spawned spin-offs in multiple media, including Torchwood (2006–11) and The Sarah Jane Adventures (2007–11), both created by Russell T Davies; K-9 (2009–10); and a single pilot episode of K-9 and Company (1981). There also have been many spoofs and cultural references of the character in other media.

      +

      Twelve actors have headlined the series as the Doctor. The transition from one actor to another, and the differing approach to the role that they bring, is written into the plot of the show as regeneration into a new incarnation, a life process of Time Lords through which the character of the Doctor takes on a new body and, to some extent, new personality, which occurs after sustaining injury which would be fatal to most other species. While each actor's portrayal differs, they are all intended to be aspects of the same character, and form part of the same storyline. The time-travelling nature of the plot means that on occasion, story arcs have involved different Doctors meeting each other. Peter Capaldi took on the role after Matt Smith's exit in the 2013 Christmas special, "The Time of the Doctor".[6]

      +

      + +

      +

      Premise[edit]

      +

      Doctor Who follows the adventures of the primary character, a rogue Time Lord from the planet Gallifrey who simply goes by the name "The Doctor". He fled from Gallifrey in a stolen Mark I Type 40 TARDIS time machine - "Time and Relative Dimension in Space" - which allows him to travel across time and space. Due to a malfunction of the TARDIS' "chameleon circuit", which normally allows the TARDIS to take on the appearance of local objects to disguise it from others, the Doctor's TARDIS remains fixed as a blue British Police box. The Doctor rarely travels alone, and often brings one or more companions to share these adventures with, typically humans as he has found a fascination with the planet Earth. He often finds events that pique his curiosity while trying to prevent evil forces from harming innocent people or changing history, using only his ingenuity and minimal resources, such as his versatile sonic screwdriver. As a Time Lord, the Doctor has the ability to regenerate when his body is mortally damaged, taking on a new appearance and personality. The Doctor has gained numerous reoccurring enemies during his travels, including the Daleks, the Cybermen, and another renegade Time Lord, the Master.

      +

      History[edit]

      +
      Main article: History of Doctor Who
      +

      Doctor Who first appeared on BBC TV at 17:16:20 GMT, eighty seconds after the scheduled programme time, 5:15 pm, on Saturday, 23 November 1963.[7][8] It was to be a regular weekly programme, each episode 25 minutes of transmission length. Discussions and plans for the programme had been in progress for a year. The head of drama, Canadian Sydney Newman, was mainly responsible for developing the programme, with the first format document for the series being written by Newman along with the head of the script department (later head of serials) Donald Wilson and staff writer C. E. Webber. Writer Anthony Coburn, story editor David Whitaker and initial producer Verity Lambert also heavily contributed to the development of the series.[9][note 1] The programme was originally intended to appeal to a family audience,[10] as an educational programme using time travel as a means to explore scientific ideas and famous moments in history. On 31 July 1963 Whitaker commissioned Terry Nation to write a story under the title The Mutants. As originally written, the Daleks and Thals were the victims of an alien neutron bomb attack but Nation later dropped the aliens and made the Daleks the aggressors. When the script was presented to Newman and Wilson it was immediately rejected as the programme was not permitted to contain any "bug-eyed monsters". The first serial had been completed and the BBC believed it was crucial that the next one be a success, however, The Mutants was the only script ready to go so the show had little choice but to use it. According to producer Verity Lambert; "We didn't have a lot of choice — we only had the Dalek serial to go ... We had a bit of a crisis of confidence because Donald [Wilson] was so adamant that we shouldn't make it. Had we had anything else ready we would have made that." Nation's script became the second Doctor Who serial – The Daleks (a.k.a. The Mutants). The serial introduced the eponymous aliens that would become the series' most popular monsters, and was responsible for the BBC's first merchandising boom.[11]

      +

      The BBC drama department's serials division produced the programme for 26 seasons, broadcast on BBC 1. Falling viewing numbers, a decline in the public perception of the show and a less-prominent transmission slot saw production suspended in 1989 by Jonathan Powell, controller of BBC 1.[12] Although (as series co-star Sophie Aldred reported in the documentary Doctor Who: More Than 30 Years in the TARDIS) it was effectively, if not formally, cancelled with the decision not to commission a planned 27th series of the show for transmission in 1990, the BBC repeatedly affirmed that the series would return.[13]

      +

      While in-house production had ceased, the BBC hoped to find an independent production company to relaunch the show. Philip Segal, a British expatriate who worked for Columbia Pictures' television arm in the United States, had approached the BBC about such a venture as early as July 1989, while the 26th series was still in production.[13] Segal's negotiations eventually led to a Doctor Who television film, broadcast on the Fox Network in 1996 as a co-production between Fox, Universal Pictures, the BBC and BBC Worldwide. Although the film was successful in the UK (with 9.1 million viewers), it was less so in the United States and did not lead to a series.[13]

      +

      Licensed media such as novels and audio plays provided new stories, but as a television programme Doctor Who remained dormant until 2003. In September of that year,[14] BBC Television announced the in-house production of a new series after several years of attempts by BBC Worldwide to find backing for a feature film version. The executive producers of the new incarnation of the series were writer Russell T Davies and BBC Cymru Wales head of drama Julie Gardner.

      +

      Doctor Who finally returned with the episode "Rose" on BBC One on 26 March 2005.[15] There have since been eight further series in 2006–2008 and 2010–2014, and Christmas Day specials every year since 2005. No full series was filmed in 2009,[16] although four additional specials starring David Tennant were made. In 2010, Steven Moffat replaced Davies as head writer and executive producer.[17]

      +

      The 2005 version of Doctor Who is a direct plot continuation of the original 1963–1989 series,[note 2] as is the 1996 telefilm. This differs from other series relaunches that have either been reimaginings or reboots (for example, Battlestar Galactica and Bionic Woman) or series taking place in the same universe as the original but in a different period and with different characters (for example, Star Trek: The Next Generation and spin-offs).[18]

      +

      The programme has been sold to many other countries worldwide (see Viewership).

      +

      Public consciousness[edit]

      +

      It has been suggested that the transmission of the first episode was delayed by ten minutes due to extended news coverage of the assassination of US President John F. Kennedy the previous day; whereas in fact, it went out after a delay of eighty seconds.[19] Because it was believed that the coverage of the events of the assassination as well as a series of power blackouts across the country may have caused too many viewers to miss this introduction to a new series, the BBC broadcast it again on 30 November 1963, just before the broadcast of episode two.[20][21]

      +

      The programme soon became a national institution in the United Kingdom, with a large following among the general viewing audience.[22][23] Many renowned actors asked for, or were offered and accepted, guest-starring roles in various stories.[24][25][26][27]

      +

      With popularity came controversy over the show's suitability for children. Morality campaigner Mary Whitehouse repeatedly complained to the BBC in the 1970s over what she saw as the show's frightening and gory content.[28] John Nathan-Turner, who produced the series during the 1980s, was heard to say that he looked forward to Whitehouse's comments, as the show's ratings would increase soon after she had made them.[29]

      +

      The phrase "Hiding behind (or 'watching from behind') the sofa" became coined and entered British pop culture, signifying in humour the stereotypical early-series behaviour of children who wanted to avoid seeing frightening parts of a television programme while remaining in the room to watch the remainder of it.[30] The phrase retains this association with Doctor Who, to the point that in 1991 the Museum of the Moving Image in London named their exhibition celebrating the programme "Behind the Sofa". The electronic theme music too was perceived as eerie, novel, and frightening, at the time. A 2012 article placed this childhood juxtaposition of fear and thrill "at the center of many people's relationship with the show",[31] and a 2011 online vote at Digital Spy deemed the series the "scariest TV show of all time".[32]

      +

      During Jon Pertwee's second series as the Doctor, in the serial Terror of the Autons (1971), images of murderous plastic dolls, daffodils killing unsuspecting victims, and blank-featured policemen marked the apex of the show's ability to frighten children.[33] Other notable moments in that decade include a disembodied brain falling to the floor in The Brain of Morbius[34] and the Doctor apparently being drowned by Chancellor Goth in The Deadly Assassin (both 1976).[35]

      +
      +
      +
      +
      +The fibreglass TARDIS prop used between 1980 and 1989.
      +
      +
      +

      A BBC audience research survey conducted in 1972 found that, by their own definition of violence ("any act[s] which may cause physical and/or psychological injury, hurt or death to persons, animals or property, whether intentional or accidental") Doctor Who was the most violent of the drama programmes the corporation produced at the time.[36] The same report found that 3% of the surveyed audience regarded the show as "very unsuitable" for family viewing.[37] Responding to the findings of the survey in The Times newspaper, journalist Philip Howard maintained that, "to compare the violence of Dr Who, sired by a horse-laugh out of a nightmare, with the more realistic violence of other television series, where actors who look like human beings bleed paint that looks like blood, is like comparing Monopoly with the property market in London: both are fantasies, but one is meant to be taken seriously."[36]

      +

      The image of the TARDIS has become firmly linked to the show in the public's consciousness; BBC scriptwriter Anthony Coburn, who lived in the resort of Herne Bay, Kent, was one of the people who conceived the idea of a police box as a time machine.[38] In 1996, the BBC applied for a trade mark to use the TARDIS' blue police box design in merchandising associated with Doctor Who.[39] In 1998, the Metropolitan Police Authority filed an objection to the trade mark claim; but in 2002, the Patent Office ruled in favour of the BBC.[40]

      +

      The programme's broad appeal attracts audiences of children and families as well as science fiction fans.[41]

      +

      The 21st century revival of the programme has become the centrepiece of BBC One's Saturday schedule, and has, "defined the channel".[42] Since its return, Doctor Who has consistently received high ratings, both in number of viewers and as measured by the Appreciation Index.[43] In 2007, Caitlin Moran, television reviewer for The Times, wrote that Doctor Who is, "quintessential to being British".[3] Director Steven Spielberg has commented that, "the world would be a poorer place without Doctor Who".[44]

      +

      On 4 August 2013, a live programme titled Doctor Who Live: The Next Doctor was broadcast on BBC One, during which the actor who was going to play the Twelfth Doctor was revealed.[45] The show was simultaneously broadcast in the US and Australia.[46]

      +

      Episodes[edit]

      +
      Further information: List of Doctor Who serials
      +

      Doctor Who originally ran for 26 seasons on BBC One, from 23 November 1963 until 6 December 1989. During the original run, each weekly episode formed part of a story (or "serial") — usually of four to six parts in earlier years and three to four in later years. Notable exceptions were: The Daleks' Master Plan, which aired in 12 episodes (plus an earlier one-episode teaser,[47] "Mission to the Unknown", featuring none of the regular cast[48]); almost an entire season of seven-episode serials (season 7); the 10-episode serial The War Games;[49] and The Trial of a Time Lord, which ran for 14 episodes (albeit divided into three production codes and four narrative segments) during season 23.[50] Occasionally serials were loosely connected by a storyline, such as season 8 being devoted to the Doctor battling a rogue Time Lord called The Master,[51][52] season 16's quest for The Key to Time,[53] season 18's journey through E-Space and the theme of entropy,[54] and season 20's Black Guardian Trilogy.[55]

      +

      The programme was intended to be educational and for family viewing on the early Saturday evening schedule.[56] Initially, it alternated stories set in the past, which were intended to teach younger audience members about history, with stories set either in the future or in outer space to teach them about science.[56] This was also reflected in the Doctor's original companions, one of whom was a science teacher and another a history teacher.[56]

      +

      However, science fiction stories came to dominate the programme and the "historicals", which were not popular with the production team,[56] were dropped after The Highlanders (1967). While the show continued to use historical settings, they were generally used as a backdrop for science fiction tales, with one exception: Black Orchid set in 1920s England.[57]

      +

      The early stories were serial-like in nature, with the narrative of one story flowing into the next, and each episode having its own title, although produced as distinct stories with their own production codes.[58] Following The Gunfighters (1966), however, each serial was given its own title, with the individual parts simply being assigned episode numbers.[58]

      +

      Of the programme's many writers, Robert Holmes was the most prolific,[59] while Douglas Adams became the most well-known outside Doctor Who itself, due to the popularity of his Hitchhiker's Guide to the Galaxy.[60][61]

      +

      The serial format changed for the 2005 revival, with each series usually consisting of 13 45-minute, self-contained episodes (60 minutes with adverts, on overseas commercial channels), and an extended episode broadcast on Christmas Day. Each series includes several standalone and multi-part stories, linked with a loose story arc that resolves in the series finale. As in the early "classic" era, each episode, whether standalone or part of a larger story, has its own title. Occasionally, regular-series episodes will exceed the 45-minute run time; notably, the episodes "Journey's End" from 2008 and "The Eleventh Hour" from 2010 exceeded an hour in length.

      +

      813 Doctor Who instalments have been televised since 1963, ranging between 25-minute episodes (the most common format), 45-minute episodes (for Resurrection of the Daleks in the 1984 series, a single season in 1985, and the revival), two feature-length productions (1983's The Five Doctors and the 1996 television film), eight Christmas specials (most of 60 minutes' duration, one of 72 minutes), and four additional specials ranging from 60 to 75 minutes in 2009, 2010 and 2013. Four mini-episodes, running about eight minutes each, were also produced for the 1993, 2005 and 2007 Children in Need charity appeals, while another mini-episode was produced in 2008 for a Doctor Who-themed edition of The Proms. The 1993 2-part story, entitled Dimensions in Time, was made in collaboration with the cast of the BBC soap-opera EastEnders and was filmed partly on the EastEnders set. A two-part mini-episode was also produced for the 2011 edition of Comic Relief. Starting with the 2009 special "Planet of the Dead", the series was filmed in 1080i for HDTV,[62] and broadcast simultaneously on BBC One and BBC HD.

      +

      To celebrate the 50th anniversary of the show, a special 3D episode, "The Day of the Doctor", was broadcast in 2013.[63] In March 2013, it was announced that Tennant and Piper would be returning,[64] and that the episode would have a limited cinematic release worldwide.[65]

      +

      In April 2015, Steven Moffat confirmed that Doctor Who would run for at least another five years, extending the show until 2020.[66]

      +

      Missing episodes[edit]

      + +

      Between about 1964 and 1973, large amounts of older material stored in the BBC's various video tape and film libraries were either destroyed,[note 3] wiped, or suffered from poor storage which led to severe deterioration from broadcast quality. This included many old episodes of Doctor Who, mostly stories featuring the first two Doctors: William Hartnell and Patrick Troughton. In all, 97 of 253 episodes produced during the first six years of the programme are not held in the BBC's archives (most notably seasons 3, 4, & 5, from which 79 episodes are missing). In 1972, almost all episodes then made were known to exist at the BBC,[67] while by 1978 the practice of wiping tapes and destroying "spare" film copies had been brought to a stop.[68]

      +

      No 1960s episodes exist on their original videotapes (all surviving prints being film transfers), though some were transferred to film for editing before transmission, and exist in their broadcast form.[69]

      +

      Some episodes have been returned to the BBC from the archives of other countries who bought prints for broadcast, or by private individuals who acquired them by various means. Early colour videotape recordings made off-air by fans have also been retrieved, as well as excerpts filmed from the television screen onto 8 mm cine film and clips that were shown on other programmes. Audio versions of all of the lost episodes exist from home viewers who made tape recordings of the show. Short clips from every story with the exception of Marco Polo, "Mission to the Unknown" and The Massacre of St Bartholomew's Eve also exist.

      +

      In addition to these, there are off-screen photographs made by photographer John Cura, who was hired by various production personnel to document many of their programmes during the 1950s and 1960s, including Doctor Who. These have been used in fan reconstructions of the serials. These amateur reconstructions have been tolerated by the BBC, provided they are not sold for profit and are distributed as low-quality VHS copies.[70]

      +

      One of the most sought-after lost episodes is part four of the last William Hartnell serial, The Tenth Planet (1966), which ends with the First Doctor transforming into the Second. The only portion of this in existence, barring a few poor-quality silent 8 mm clips, is the few seconds of the regeneration scene, as it was shown on the children's magazine show Blue Peter.[71] With the approval of the BBC, efforts are now under way to restore as many of the episodes as possible from the extant material.

      +

      "Official" reconstructions have also been released by the BBC on VHS, on MP3 CD-ROM, and as special features on DVD. The BBC, in conjunction with animation studio Cosgrove Hall, reconstructed the missing episodes 1 and 4 of The Invasion (1968), using remastered audio tracks and the comprehensive stage notes for the original filming, for the serial's DVD release in November 2006. The missing episodes of The Reign of Terror were animated by animation company Theta-Sigma, in collaboration with Big Finish, and became available for purchase in May 2013 through Amazon.com.[72] Subsequent animations made in 2013 include The Tenth Planet, The Ice Warriors and The Moonbase.

      +

      In April 2006, Blue Peter launched a challenge to find missing Doctor Who episodes with the promise of a full-scale Dalek model as a reward.[73]

      +

      In December 2011, it was announced that part 3 of Galaxy 4 and part 2 of The Underwater Menace had been returned to the BBC by a fan who had purchased them in the mid-1980s without realising that the BBC did not hold copies of them.[74]

      +

      On 10 October 2013, the BBC announced that films of eleven episodes, including nine missing episodes, had been found in a Nigerian television relay station in Jos.[75] Six of the eleven films discovered were the six-part serial The Enemy of the World, from which all but the third episode had been missing.[76] The remaining films were from another six-part serial, The Web of Fear, and included the previously missing episodes 2, 4, 5, and 6. Episode 3 of The Web of Fear is still missing.[77]

      +

      Characters[edit]

      + +

      The Doctor[edit]

      + +
      +
      +
      +
      +
      The Doctor portrayed by series leads in chronological order. Left to right from top row; William Hartnell, Patrick Troughton, Jon Pertwee, Tom Baker, Peter Davison, Colin Baker, Sylvester McCoy, Paul McGann, Christopher Eccleston, David Tennant, Matt Smith and Peter Capaldi.
      +
      +
      +
      +

      The character of the Doctor was initially shrouded in mystery. All that was known about him in the programme's early days was that he was an eccentric alien traveller of great intelligence who battled injustice while exploring time and space in an unreliable time machine, the "TARDIS" (an acronym for time and relative dimension(s) in space), which notably appears much larger on the inside than on the outside (a quality referred to as "dimensional transcendentality").[note 4][78]

      +

      The initially irascible and slightly sinister Doctor quickly mellowed into a more compassionate figure. It was eventually revealed that he had been on the run from his own people, the Time Lords of the planet Gallifrey.

      +

      Changes of appearance[edit]

      +

      Producers introduced the concept of regeneration to permit the recasting of the main character. This was first prompted by original star William Hartnell's poor health. The actual term "regeneration" was not initially conceived of until the Doctor's third on-screen regeneration however; Hartnell's Doctor had merely described undergoing a "renewal," and the Second Doctor underwent a "change of appearance".[citation needed] The device has allowed for the recasting of the actor various times in the show's history, as well as the depiction of alternative Doctors either from the Doctor's relative past or future.[citation needed]

      +

      The serials The Deadly Assassin and Mawdryn Undead and the 1996 TV film would later establish that a Time Lord can only regenerate 12 times, for a total of 13 incarnations. This line became stuck in the public consciousness despite not often being repeated, and was recognised by producers of the show as a plot obstacle for when the show finally had to regenerate the Doctor a thirteenth time.[79][80] The episode "The Time of the Doctor" depicted the Doctor acquiring a new cycle of regenerations, starting from the Twelfth Doctor, due to the Eleventh Doctor being the product of the Doctor's twelfth regeneration from his original set.[citation needed][81][82]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Series leadIncarnationTenure
      William HartnellFirst Doctor1963–66[note 5]
      Patrick TroughtonSecond Doctor1966–69[note 5]
      Jon PertweeThird Doctor1970–74[note 5]
      Tom BakerFourth Doctor1974–81[note 5]
      Peter DavisonFifth Doctor1982–84[note 5]
      Colin BakerSixth Doctor1984–86
      Sylvester McCoySeventh Doctor1987–89[83][84][85]
      Paul McGannEighth Doctor1996[note 5]
      Christopher EcclestonNinth Doctor2005
      David TennantTenth Doctor2005–10[note 5]
      Matt SmithEleventh Doctor2010–13
      Peter CapaldiTwelfth Doctor2014–
      +

      In addition to those actors who have headlined the series, others have portrayed versions of the Doctor in guest roles. Notably, in 2013, John Hurt guest-starred as a hitherto unknown incarnation of the Doctor known as the War Doctor in the run-up to the show's 50th anniversary special "The Day of the Doctor".[86] He is shown in mini-episode "The Night of the Doctor" to have been retroactively inserted into the show's fictional chronology between McGann and Eccleston's Doctors, although his introduction was written so as not to disturb the established numerical naming of the Doctors.[87] Another example is from the 1986 serial The Trial of a Time Lord, where Michael Jayston portrayed the Valeyard, who is described as an amalgamation of the darker sides of the Doctor's nature, somewhere between his twelfth and final incarnation.

      +

      On rare occasions, other actors have stood in for the lead. In The Five Doctors, Richard Hurndall played the First Doctor due to William Hartnell's death in 1975. In Time and the Rani, Sylvester McCoy briefly played the Sixth Doctor during the regeneration sequence, carrying on as the Seventh. For more information, see the list of actors who have played the Doctor. In other media, the Doctor has been played by various other actors, including Peter Cushing in two films.

      +

      The casting of a new Doctor has often inspired debate and speculation: in particular, the desirability or possibility of a new Doctor being played by a woman.[88][89] In October 2010, the Sunday Telegraph revealed that the series' co-creator, Sydney Newman, had urged the BBC to recast the role of the Doctor as a female "Time Lady" during the ratings crisis of the late 1980s.[90]

      +

      Meetings of different incarnations[edit]

      +

      There have been instances of actors returning at later dates to reprise the role of their specific Doctor. In 1973's The Three Doctors, William Hartnell and Patrick Troughton returned alongside Jon Pertwee. For 1983's The Five Doctors, Troughton and Pertwee returned to star with Peter Davison, and Tom Baker appeared in previously unseen footage from the uncompleted Shada episode. For this episode, Richard Hurndall replaced William Hartnell. Patrick Troughton again returned in 1985's The Two Doctors with Colin Baker. In 2007, Peter Davison returned in the Children in Need short "Time Crash" alongside David Tennant, and most recently in 2013's 50th anniversary special episode, "The Day of the Doctor", David Tennant's Tenth Doctor appeared alongside Matt Smith as the Eleventh Doctor and John Hurt as the War Doctor, as well as brief footage from all of the previous actors.[91] In addition, the Doctor has occasionally encountered himself in the form of his own incarnation, from the near future or past. The First Doctor encounters himself in the story The Space Museum (albeit frozen and as an exhibit), the Third Doctor encounters and interacts with himself in the story Day of the Daleks, the Fourth Doctor encounters and interacts with the future incarnation of himself (the 'Watcher') in the story Logopolis, the Ninth Doctor observes a former version of his current incarnation in "Father's Day", and the Eleventh Doctor briefly comes face to face with himself in "The Big Bang". In "The Almost People" the Doctor comes face-to-face with himself although it is found out that this incarnation is in fact just a flesh replica. In "The Name of the Doctor", the Eleventh Doctor meets an unknown incarnation of himself, whom he refers to as "his secret" and who is subsequently revealed to be the War Doctor.[86]

      +

      Additionally, multiple Doctors have returned in new adventures together in audio dramas based on the series. Peter Davison, Colin Baker and Sylvester McCoy appeared together in the 1999 audio adventure The Sirens of Time. To celebrate the 40th anniversary in 2003, an audio drama titled Zagreus featuring Paul McGann, Colin Baker, Sylvester McCoy and Peter Davison was released with additional archive recordings of Jon Pertwee.[92] Again in 2003, Colin Baker and Sylvester McCoy appeared together in the audio adventure Project: Lazarus.[93] In 2010, Peter Davison, Colin Baker, Sylvester McCoy and Paul McGann came together again to star in the audio drama The Four Doctors.

      +

      Revelations about the Doctor[edit]

      + +

      Throughout the programme's long history, there have been revelations about the Doctor that have raised additional questions. In The Brain of Morbius (1976), it was hinted that the First Doctor may not have been the first incarnation (although the other faces depicted may have been incarnations of the Time Lord Morbius). In subsequent stories the First Doctor was depicted as the earliest incarnation of the Doctor. In Mawdryn Undead (1983), the Fifth Doctor explicitly confirmed that he was then currently in his fifth incarnation. Later that same year, during 1983's 20th Anniversary special The Five Doctors, the First Doctor enquires as to the Fifth Doctor's regeneration; when the Fifth Doctor confirms "Fourth", the First Doctor excitedly replies "Goodness me. So there are five of me now." In 2010, the Eleventh Doctor similarly calls himself "the Eleventh" in "The Lodger". In the 2013 episode "The Time of the Doctor," the Eleventh Doctor clarified he was the product of the twelfth regeneration, due to a previous incarnation which he chose not to count and one other aborted regeneration. The name Eleventh is still used for this incarnation; the same episode depicts the prophesied "Fall of the Eleventh" which had been trailed throughout the series.

      +

      During the Seventh Doctor's era, it was hinted that the Doctor was more than just an ordinary Time Lord. In the 1996 television film, the Eighth Doctor describes himself as being "half human".[94] The BBC's FAQ for the programme notes that "purists tend to disregard this",[95] instead focusing on his Gallifreyan heritage.

      +

      The programme's first serial, An Unearthly Child, shows that the Doctor has a granddaughter, Susan Foreman. In the 1967 serial, Tomb of the Cybermen, when Victoria Waterfield doubts the Doctor can remember his family because of, "being so ancient", the Doctor says that he can when he really wants to—"The rest of the time they sleep in my mind". The 2005 series reveals that the Ninth Doctor thought he was the last surviving Time Lord, and that his home planet had been destroyed; in "The Empty Child" (2005), Dr. Constantine states that, "Before the war even began, I was a father and a grandfather. Now I am neither." The Doctor remarks in response, "Yeah, I know the feeling." In "Smith and Jones" (2007), when asked if he had a brother, he replied, "No, not any more." In both "Fear Her" (2006) and "The Doctor's Daughter" (2008), he states that he had, in the past, been a father.

      +

      In "The Wedding of River Song" (2011), it is implied that the Doctor's true name is a secret that must never be revealed; this is explored further in "The Name of the Doctor" (2013), when River Song speaking his name allows the Great Intelligence to enter his tomb, and in "The Time of the Doctor" (2013) where speaking his true name becomes the signal by which the Time Lords would know they can safely return to the universe, an event opposed by many species.

      +

      Companions[edit]

      + +

      The companion figure - generally a human - has been a constant feature in Doctor Who since the programme's inception in 1963. One of the roles of the companion is to remind the Doctor of his "moral duty".[96] The Doctor's first companions seen on screen were his granddaughter Susan Foreman (Carole Ann Ford) and her teachers Barbara Wright (Jacqueline Hill) and Ian Chesterton (William Russell). These characters were intended to act as audience surrogates, through which the audience would discover information about the Doctor who was to act as a mysterious father figure.[96] The only story from the original series in which the Doctor travels alone is The Deadly Assassin. Notable companions from the earlier series included Romana (Mary Tamm and Lalla Ward), a Time Lady; Sarah Jane Smith (Elisabeth Sladen); and Jo Grant (Katy Manning). Dramatically, these characters provide a figure with whom the audience can identify, and serve to further the story by requesting exposition from the Doctor and manufacturing peril for the Doctor to resolve. The Doctor regularly gains new companions and loses old ones; sometimes they return home or find new causes — or loves — on worlds they have visited. Some have died during the course of the series. Companions are usually human, or humanoid aliens.

      +

      Since the 2005 revival, The Doctor generally travels with a primary female companion, who occupies a larger narrative role. Steven Moffat described the companion as the main character of the show, as the story begins anew with each companion and she undergoes more change than the Doctor.[97][98] The primary companions of the Ninth and Tenth Doctors were Rose Tyler (Billie Piper), Martha Jones (Freema Agyeman), and Donna Noble (Catherine Tate) with Mickey Smith (Noel Clarke), Jackie Tyler (Camille Coduri) and Jack Harkness (John Barrowman) recurring as secondary companion figures.[99] The Eleventh Doctor became the first to travel with a married couple (Amy Pond (Karen Gillan) and Rory Williams (Arthur Darvill)) whilst out-of-sync meetings with River Song (Alex Kingston) and Clara Oswald (Jenna Coleman) provided ongoing story arcs.

      +

      Some companions have gone on to re-appear either in the main series, or in spin-offs. Sarah Jane Smith became the central character in The Sarah Jane Adventures (2007-2011) following a return to Doctor Who in 2006. Guest stars in the series included former companions Jo Grant, K-9, and Brigadier Lethbridge-Stewart (Nicholas Courtney). The character of Jack Harkness also served to launch a spin-off, Torchwood, (2006-2011) in which Martha Jones also appeared.

      +

      Adversaries[edit]

      + +

      When Sydney Newman commissioned the series, he specifically did not want to perpetuate the cliché of the "bug-eyed monster" of science fiction.[100] However, monsters were popular with audiences and so became a staple of Doctor Who almost from the beginning.

      +

      With the show's 2005 revival, executive producer Russell T Davies stated[101] his intention to reintroduce classic icons of Doctor Who one step at a time: the Autons with the Nestene Consciousness and Daleks in series 1, Cybermen in series 2, the Macra and the Master in series 3, the Sontarans and Davros in series 4, and the Time Lords (Rassilon) in the 2009–10 Specials. Davies' successor, Steven Moffat, has continued the trend by reviving the Silurians in series 5, Cybermats in series 6, the Great Intelligence and the Ice Warriors in Series 7, and Zygons in the 50th Anniversary Special.[102] Since its 2005 return, the series has also introduced new recurring aliens: Slitheen (Raxacoricofallapatorian), Ood, Judoon, Weeping Angels and the Silence.

      +

      Besides infrequent appearances by the Ice Warriors, Ogrons, the Rani, and Black Guardian, three adversaries have become particularly iconic: the Daleks, the Cybermen, and the Master.

      +

      Daleks[edit]

      +
      Main article: Dalek
      +

      The Dalek race, which first appeared in the show's second serial in 1963,[103] are Doctor Who‍ '​s oldest villains. The Daleks were Kaleds from the planet Skaro, mutated by the scientist Davros and housed in tank-like mechanical armour shells for mobility. The actual creatures resemble octopuses with large, pronounced brains. Their armour shells contain a single eye-stalk to allow them vision, a sink-plunger-like device that serves the purpose of a hand, and a directed-energy weapon. Their main weakness is their eyestalk; most attacks on them, including those from guns and baseball bats, will blind them, making them go mad. Their chief role in the plot of the series, as they frequently remark in their instantly recognisable metallic voices, is to "exterminate" all non-Dalek beings, even attacking the Time Lords in the Time War, which was not shown until the 50th Anniversary celebrating the show, where some snippets of the Time War are shown. The Daleks' most recent appearance was in the 2014 episode "Into the Dalek". They continue to be a recurring 'monster' within the Doctor Who franchise. Davros himself has also been a recurring figure since his debut in Genesis of the Daleks, although played by several different actors.

      +

      The Daleks were created by writer Terry Nation (who intended them to be an allegory of the Nazis)[104] and BBC designer Raymond Cusick.[105] The Daleks' début in the programme's second serial, The Daleks (1963–64), made both the Daleks and Doctor Who very popular. A Dalek appeared on a postage stamp celebrating British popular culture in 1999, photographed by Lord Snowdon. In the new series, Daleks come in a range of colours; the colour of a Dalek denotes its role within the species.[citation needed]

      +

      In the 2012 episode "Asylum of the Daleks", every generation of the Dalek species made an appearance.[106]

      +

      Cybermen[edit]

      +
      Main article: Cyberman
      +

      Cybermen were originally a wholly organic species of humanoids originating on Earth's twin planet Mondas that began to implant more and more artificial parts into their bodies. This led to the race becoming coldly logical and calculating cyborgs, with emotions usually only shown when naked aggression was called for. With the demise of Mondas, they acquired Telos as their new home planet. They continue to be a recurring 'monster' within the Doctor Who franchise.

      +

      The 2006 series introduced a totally new variation of Cybermen. These Cybus Cybermen were created in a parallel universe by the mad inventor John Lumic; he was attempting to preserve the life of a human by transplanting their brains into powerful metal bodies, sending them orders using a mobile phone network and inhibiting their emotions with an electronic chip.

      +

      The Master[edit]

      +
      Main article: Master (Doctor Who)
      +

      The Master is the Doctor's archenemy, a renegade Time Lord who desires to rule the universe. Conceived as "Professor Moriarty to the Doctor's Sherlock Holmes",[107] the character first appeared in 1971. As with the Doctor, the role has been portrayed by several actors, since the Master is a Time Lord as well and able to regenerate; the first of these actors was Roger Delgado, who continued in the role until his death in 1973. The Master was briefly played by Peter Pratt and Geoffrey Beevers until Anthony Ainley took over and continued to play the character until Doctor Who's hiatus in 1989. The Master returned in the 1996 television movie of Doctor Who, and was played by American actor Eric Roberts.

      +

      Following the series revival in 2005, Derek Jacobi provided the character's re-introduction in the 2007 episode "Utopia". During that story the role was then assumed by John Simm who returned to the role multiple times through the Tenth Doctor's tenure.[108] As of the 2014 episode "Dark Water," it was revealed that the Master had become a female incarnation or "Time Lady," going by the name of "Missy" (short for Mistress, the feminine equivalent of "Master"). This incarnation is played by Michelle Gomez.

      +

      Music[edit]

      + +

      Theme music[edit]

      + + + + + + + + + +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      An excerpt from the original (1963) classic theme music to Doctor Who
      +
      +
      Problems playing this file? See media help.
      +

      The Doctor Who theme music was one of the first electronic music signature tunes for television, and after five decades remains one of the most easily recognised. It has been often called both memorable and frightening, priming the viewer for what was to follow. During the 1970s, the Radio Times, the BBC's own listings magazine, announced that a child's mother said the theme music terrified her son. The Radio Times was apologetic, but the theme music remained.[citation needed]

      +

      The original theme was composed by Ron Grainer and realised by Delia Derbyshire of the BBC Radiophonic Workshop, with assistance from Dick Mills. The various parts were built up using musique concrète techniques, by creating tape loops of an individually struck piano string and individual test oscillators and filters. The Derbyshire arrangement served, with minor edits, as the theme tune up to the end of season 17 (1979–80). It is regarded as a significant and innovative piece of electronic music, recorded well before the availability of commercial synthesisers or multitrack mixers. Each note was individually created by cutting, splicing, speeding up and slowing down segments of analogue tape containing recordings of a single plucked string, white noise, and the simple harmonic waveforms of test-tone oscillators, intended for calibrating equipment and rooms, not creating music. New techniques were invented to allow mixing of the music, as this was before the era of multitrack tape machines. On hearing the finished result, Grainer asked, "Did I write that?"[citation needed]

      +

      A different arrangement was recorded by Peter Howell for season 18 (1980), which was in turn replaced by Dominic Glynn's arrangement for the season-long serial The Trial of a Time Lord in season 23 (1986). Keff McCulloch provided the new arrangement for the Seventh Doctor's era which lasted from season 24 (1987) until the series' suspension in 1989. American composer John Debney created a new arrangement of Ron Grainer's original theme for Doctor Who in 1996. For the return of the series in 2005, Murray Gold provided a new arrangement which featured samples from the 1963 original with further elements added; in the 2005 Christmas episode "The Christmas Invasion", Gold introduced a modified closing credits arrangement that was used up until the conclusion of the 2007 series.[citation needed]

      +

      A new arrangement of the theme, once again by Gold, was introduced in the 2007 Christmas special episode, "Voyage of the Damned"; Gold returned as composer for the 2010 series.[109] He was responsible for a new version of the theme which was reported to have had a hostile reception from some viewers.[110] In 2011, the theme tune charted at number 228 of radio station Classic FM's Hall of Fame, a survey of classical music tastes. A revised version of Gold's 2010 arrangement had its debut over the opening titles of the 2012 Christmas special "The Snowmen", and a further revision of the arrangement was made for the 50th Anniversary special "The Day of the Doctor" in November 2013.[citation needed]

      +

      Versions of the "Doctor Who Theme" have also been released as pop music over the years. In the early 1970s, Jon Pertwee, who had played the Third Doctor, recorded a version of the Doctor Who theme with spoken lyrics, titled, "Who Is the Doctor".[note 6] In 1978 a disco version of the theme was released in the UK, Denmark and Australia by the group Mankind, which reached number 24 in the UK charts. In 1988 the band The Justified Ancients of Mu Mu (later known as The KLF) released the single "Doctorin' the Tardis" under the name The Timelords, which reached No. 1 in the UK and No. 2 in Australia; this version incorporated several other songs, including "Rock and Roll Part 2" by Gary Glitter (who recorded vocals for some of the CD-single remix versions of "Doctorin' the Tardis").[111] Others who have covered or reinterpreted the theme include Orbital,[111] Pink Floyd,[111] the Australian string ensemble Fourplay, New Zealand punk band Blam Blam Blam, The Pogues, Thin Lizzy, Dub Syndicate, and the comedians Bill Bailey and Mitch Benn. Both the theme and obsessive fans were satirised on The Chaser's War on Everything. The theme tune has also appeared on many compilation CDs, and has made its way into mobile-phone ringtones. Fans have also produced and distributed their own remixes of the theme. In January 2011 the Mankind version was released as a digital download on the album Gallifrey And Beyond.

      +

      Incidental music[edit]

      + + +

      Most of the innovative incidental music for Doctor Who has been specially commissioned from freelance composers, although in the early years some episodes also used stock music, as well as occasional excerpts from original recordings or cover versions of songs by popular music acts such as The Beatles and The Beach Boys. Since its 2005 return, the series has featured occasional use of excerpts of pop music from the 1970s to the 2000s.

      +

      The incidental music for the first Doctor Who adventure, An Unearthly Child, was written by Norman Kay. Many of the stories of the William Hartnell period were scored by electronic music pioneer Tristram Cary, whose Doctor Who credits include The Daleks, Marco Polo, The Daleks' Master Plan, The Gunfighters and The Mutants. Other composers in this early period included Richard Rodney Bennett, Carey Blyton and Geoffrey Burgon.

      +

      The most frequent musical contributor during the first 15 years was Dudley Simpson, who is also well known for his theme and incidental music for Blake's 7, and for his haunting theme music and score for the original 1970s version of The Tomorrow People. Simpson's first Doctor Who score was Planet of Giants (1964) and he went on to write music for many adventures of the 1960s and 1970s, including most of the stories of the Jon Pertwee/Tom Baker periods, ending with The Horns of Nimon (1979). He also made a cameo appearance in The Talons of Weng-Chiang (as a Music hall conductor).

      +

      In 1980 starting with the serial The Leisure Hive the task of creating incidental music was assigned to the Radiophonic Workshop. Paddy Kingsland and Peter Howell contributed many scores in this period and other contributors included Roger Limb, Malcolm Clarke and Jonathan Gibbs.

      +

      The Radiophonic Workshop was dropped after 1986's The Trial of a Time Lord series, and Keff McCulloch took over as the series' main composer until the end of its run, with Dominic Glynn and Mark Ayres also contributing scores.

      +

      All the incidental music for the 2005 revived series has been composed by Murray Gold and Ben Foster and has been performed by the BBC National Orchestra of Wales from the 2005 Christmas episode "The Christmas Invasion" onwards. A concert featuring the orchestra performing music from the first two series took place on 19 November 2006 to raise money for Children in Need. David Tennant hosted the event, introducing the different sections of the concert. Murray Gold and Russell T Davies answered questions during the interval and Daleks and Cybermen appeared whilst music from their stories was played. The concert aired on BBCi on Christmas Day 2006. A Doctor Who Prom was celebrated on 27 July 2008 in the Royal Albert Hall as part of the annual BBC Proms. The BBC Philharmonic and the London Philharmonic Choir performed Murray Gold's compositions for the series, conducted by Ben Foster, as well as a selection of classics based on the theme of space and time. The event was presented by Freema Agyeman and guest-presented by various other stars of the show with numerous monsters participating in the proceedings. It also featured the specially filmed mini-episode "Music of the Spheres", written by Russell T Davies and starring David Tennant.[112]

      +

      Six soundtrack releases have been released since 2005. The first featured tracks from the first two series,[113] the second and third featured music from the third and fourth series respectively. The fourth was released on 4 October 2010 as a two disc special edition and contained music from the 2008–2010 specials (The Next Doctor to End of Time Part 2).[114][115] The soundtrack for Series 5 was released on 8 November 2010.[116] In February 2011, a soundtrack was released for the 2010 Christmas special: "A Christmas Carol",[117] and in December 2011 the soundtrack for Series 6 was released, both by Silva Screen Records.[118]

      +

      Logo history[edit]

      +

      Below is a collection of current and past Doctor Who logos from the classic and current series. The different doctors have been named below the logos that have appeared during their tenure (e.g. The diamond logo from 1973-1980 was used for the Third Doctor in his final season (5 serials). However, he is more commonly associated with the 1970-1973 logo used for four seasons (7-10).

      +

      The original logo used for the First Doctor (and briefly for the Second Doctor) was reused in a slightly modified format for the 50th anniversary special "The Day of the Doctor" during the Eleventh Doctor's run. The logo used in the television movie featuring the Eighth Doctor was an edited version of the logo used for the Third Doctor. The logo from 1973–80 was used for the Third Doctor's final season and for the majority of the Fourth Doctor's tenure. The following logo, while most associated with the Fifth Doctor, was also used for the Fourth Doctor's final season. The logo used for the Ninth Doctor was slightly edited for the Tenth Doctor, but it retained the same general appearance. The logo used for the Eleventh Doctor had the "DW" TARDIS portion removed in 2012, but the same font remained (hence the date for until 2014), albeit with a slight edit to the texture every episode, with the texture relating to some aspect of the story, and the font was later subtly altered, as well as made slightly larger. for the Twelfth Doctor. As of 2014, the logo used for the Third and Eighth Doctors is the primary logo used on all media and merchandise relating to past Doctors, and the current Doctor Who logo is used for all merchandise relating to the current Doctor.

      + +

      Viewership[edit]

      +
      Main article: Doctor Who fandom
      +

      United Kingdom[edit]

      +
      +
      +
      +
      +The image of the TARDIS is iconic in British popular culture.
      +
      +
      +

      Premiering the day after the assassination of John F. Kennedy, the first episode of Doctor Who was repeated with the second episode the following week. Doctor Who has always appeared initially on the BBC's mainstream BBC One channel, where it is regarded as a family show, drawing audiences of many millions of viewers; episodes are now repeated on BBC Three. The programme's popularity has waxed and waned over the decades, with three notable periods of high ratings.[119] The first of these was the "Dalekmania" period (circa 1964–1965), when the popularity of the Daleks regularly brought Doctor Who ratings of between 9 and 14 million, even for stories which did not feature them.[119][120] The second was the late 1970s, when Tom Baker occasionally drew audiences of over 12 million.[119]

      +

      During the ITV network strike of 1979, viewership peaked at 16 million.[citation needed] Figures remained respectable into the 1980s, but fell noticeably after the programme's 23rd series was postponed in 1985 and the show was off the air for 18 months. Its late 1980s performance of three to five million viewers was seen as poor at the time and was, according to the BBC Board of Control, a leading cause of the programme's 1989 suspension. Some fans considered this disingenuous, since the programme was scheduled against the soap opera Coronation Street, the most popular show at the time. After the series' revival in 2005 (the third notable period of high ratings), it has consistently had high viewership levels for the evening on which the episode is broadcast.[119]

      +

      The BBC One broadcast of "Rose", the first episode of the 2005 revival, drew an average audience of 10.81 million, third highest for BBC One that week and seventh across all channels.[119][121][122] The current revival also garners the highest audience Appreciation Index of any drama on television.[123]

      +

      International[edit]

      +
      +
      +
      +
      +Map of countries that have or currently broadcast Doctor Who in either its current or classic incarnation (map correct as of October 2014)
      +
      +
      +

      Doctor Who has been broadcast internationally outside of the United Kingdom since 1964, a year after the show first aired. As of 1 January 2013, the modern series has been or is currently broadcast weekly in more than 50 countries.

      +

      Doctor Who is one of the five top grossing titles for BBC Worldwide, the BBC's commercial arm.[124] BBC Worldwide CEO John Smith has said that Doctor Who is one of a small number of "Superbrands" which Worldwide will promote heavily.[125]

      +

      Only four episodes have ever had their premiere showings on channels other than BBC One. The 1983 20th anniversary special The Five Doctors had its début on 23 November (the actual date of the anniversary) on a number of PBS stations two days prior to its BBC One broadcast. The 1988 story Silver Nemesis was broadcast with all three episodes airing back to back on TVNZ in New Zealand in November, after the first episode had been shown in the UK but before the final two instalments had aired there. Finally, the 1996 television film premièred on 12 May 1996 on CITV in Edmonton, Canada, 15 days before the BBC One showing, and two days before it aired on Fox in the United States.[citation needed]

      +

      Oceania[edit]

      +

      New Zealand was the first country outside the United Kingdom to screen Doctor Who, beginning in September 1964, and continued to screen the series for many years, including the new series from 2005.

      +

      In Australia, the show has had a strong fan base since its inception, having been exclusively first run by the Australian Broadcasting Corporation (ABC) since January 1965. The ABC has periodically repeated episodes; of note were the weekly screenings of all available classic episodes starting in 2003, for the show's 40th anniversary. The ABC broadcasts the modern series first run on ABC1, with repeats on ABC2. The ABC also provided partial funding for the 20th anniversary special The Five Doctors in 1983. Repeats of both the classic and modern series have also been shown on subscription television channels BBC UKTV, SF and later on SyFy upon SF's closure.[citation needed]

      +

      North America[edit]

      + +

      The series also has a fan base in the United States, where it was shown in syndication from the 1970s to the 1990s, particularly on PBS stations.[citation needed]

      +

      TVOntario picked up the show in 1976 beginning with The Three Doctors and aired each series (several years late) through to series 24 in 1991. From 1979 to 1981, TVO airings were bookended by science-fiction writer Judith Merril who would introduce the episode and then, after the episode concluded, try to place it in an educational context in keeping with TVO's status as an educational channel. Its airing of The Talons of Weng-Chiang was cancelled as a result of accusations that the story was racist; the story was later broadcast in the 1990s on cable station YTV. CBC began showing the series again in 2005. The series moved to the Canadian cable channel Space in 2009.[citation needed]

      +

      For the Canadian broadcast, Christopher Eccleston recorded special video introductions for each episode (including a trivia question as part of a viewer contest) and excerpts from the Doctor Who Confidential documentary were played over the closing credits; for the broadcast of "The Christmas Invasion" on 26 December 2005, Billie Piper recorded a special video introduction. CBC began airing series two on 9 October 2006 at 20:00 E/P (20:30 in Newfoundland and Labrador), shortly after that day's CFL double header on Thanksgiving in most of the country.[citation needed]

      +

      Series three began broadcasting on CBC on 18 June 2007 followed by the second Christmas special, "The Runaway Bride" at midnight,[126] and the Sci Fi Channel began on 6 July 2007 starting with the second Christmas special at 8:00 pm E/P followed by the first episode.[127]

      +

      Series four aired in the United States on the Sci Fi Channel (now known as Syfy), beginning in April 2008.[128] It aired on CBC beginning 19 September 2008, although the CBC did not air the Voyage of the Damned special.[129] The Canadian cable network Space broadcast "The Next Doctor" (in March 2009) and all subsequent series and specials.[130]

      +

      Other countries[edit]

      +

      In Latin America, the original series — known as Doctor Misterio – was shown in Venezuela from 1967; Mexico (Canal 13) from 1968, then later syndicated from 1979; and Chile from 1969.

      +

      A special logo has been designed for the Japanese broadcast with the katakana "ドクター・フー" (romanised as Dokutā Fū).[131] The series has apparently "mystified" viewers in Japan where it has been broadcast in a late evening time slot, leading to some not realising it is a family show.[132]

      +

      DVD and video[edit]

      + +

      A wide selection of serials are available from BBC Video on DVD, on sale in the United Kingdom, Australia, Canada and the United States. Every fully extant serial has been released on VHS, and BBC Worldwide continues to regularly release serials on DVD. The 2005 series is also available in its entirety on UMD for the PlayStation Portable. Eight original series serials have been released on Laserdisc[133] and many have also been released on Betamax tape and Video 2000. One episode of Doctor Who The Infinite Quest was released on VCD. So far only the new series from 2009 onwards are available on Blu-ray. The 1970 classic series story Spearhead from Space was released on Blu-ray in July 2013. Many early releases have been re-released on special edition with more bonus features.

      +

      Adaptations and other appearances[edit]

      +

      Doctor Who films[edit]

      +
      Main article: Dr. Who (Dalek films)
      +

      There are two Doctor Who feature films: Dr. Who and the Daleks, released in 1965 and Daleks – Invasion Earth: 2150 A.D. in 1966. Both are retellings of existing television stories (specifically, the first two Dalek serials, The Daleks and The Dalek Invasion of Earth respectively) with a larger budget and alterations to the series concept.

      +

      In these films, Peter Cushing plays a human scientist[134] named "Dr. Who", who travels with his granddaughter and niece and other companions in a time machine he has invented. The Cushing version of the character reappears in both comic strips and a short story, the latter attempting to reconcile the film continuity with that of the series.

      +

      In addition, several planned films were proposed, including a sequel, The Chase, loosely based on the original series story, for the Cushing Doctor, plus many attempted television movie and big screen productions to revive the original Doctor Who, after the original series was cancelled.

      +

      Paul McGann starred in the only television film as the eighth incarnation of the Doctor. After the film, he continued the role in audio books and was confirmed as the eighth incarnation through flashback footage and a mini episode in the 2005 revival, effectively linking the two series and the television movie.

      +

      In 2011, David Yates announced that he had started work with the BBC on a Doctor Who film, a project that would take three or more years to complete. Yates indicated that the film would take a different approach to Doctor Who,[135] although the current Doctor Who showrunner Steven Moffat stated later that any such film would not be a reboot of the series and a film should be made by the BBC team and star the current TV Doctor.[136][137]

      +

      Spin-offs[edit]

      +
      Main article: Doctor Who spin-offs
      +

      Doctor Who has appeared on stage numerous times. In the early 1970s, Trevor Martin played the role in Doctor Who and the Daleks in the Seven Keys to Doomsday. In the late 1980s, Jon Pertwee and Colin Baker both played the Doctor at different times during the run of a play titled Doctor Who – The Ultimate Adventure. For two performances, while Pertwee was ill, David Banks (better known for playing Cybermen) played the Doctor. Other original plays have been staged as amateur productions, with other actors playing the Doctor, while Terry Nation wrote The Curse of the Daleks, a stage play mounted in the late 1960s, but without the Doctor.

      +

      A pilot episode ("A Girl's Best Friend") for a potential spinoff series, K-9 and Company, was aired in 1981 with Elisabeth Sladen reprising her role as companion Sarah Jane Smith and John Leeson as the voice of K-9, but was not picked up as a regular series.

      +

      Concept art for an animated Doctor Who series was produced by animation company Nelvana in the 1980s, but the series was not produced.[138]

      +

      Following the success of the 2005 series produced by Russell T Davies, the BBC commissioned Davies to produce a 13-part spin-off series titled Torchwood (an anagram of "Doctor Who"), set in modern-day Cardiff and investigating alien activities and crime. The series debuted on BBC Three on 22 October 2006.[139] John Barrowman reprised his role of Jack Harkness from the 2005 series of Doctor Who.[140] Two other actresses who appeared in Doctor Who also star in the series; Eve Myles as Gwen Cooper, who also played the similarly named servant girl Gwyneth in the 2005 Doctor Who episode "The Unquiet Dead",[141] and Naoko Mori who reprised her role as Toshiko Sato first seen in "Aliens of London". A second series of Torchwood aired in 2008; for three episodes, the cast was joined by Freema Agyeman reprising her Doctor Who role of Martha Jones. A third series was broadcast from 6 to 10 July 2009, and consisted of a single five-part story called Children of Earth which was set largely in London. A fourth series, Torchwood: Miracle Day jointly produced by BBC Wales, BBC Worldwide and the American entertainment company Starz debuted in 2011. The series was predominantly set in the United States, though Wales remained part of the show's setting.

      +

      The Sarah Jane Adventures, starring Elisabeth Sladen who reprised her role as investigative journalist Sarah Jane Smith, was developed by CBBC; a special aired on New Year's Day 2007 and a full series began on 24 September 2007.[142] A second series followed in 2008, notable for (as noted above) featuring the return of Brigadier Lethbridge-Stewart. A third in 2009 featured a crossover appearance from the main show by David Tennant as the Tenth Doctor. In 2010, a further such appearance featured Matt Smith as the Eleventh Doctor alongside former companion actress Katy Manning reprising her role as Jo Grant. A final, three-story fifth series was transmitted in autumn 2011 – uncompleted due to the death of Elisabeth Sladen in early 2011.

      +

      An animated serial, The Infinite Quest, aired alongside the 2007 series of Doctor Who as part of the children's television series Totally Doctor Who. The serial featured the voices of series regulars David Tennant and Freema Agyeman but is not considered part of the 2007 series.[143] A second animated serial, Dreamland, aired in six parts on the BBC Red Button service, and the official Doctor Who website in 2009.[144]

      +

      Numerous other spin-off series have been created not by the BBC but by the respective owners of the characters and concepts. Such spin-offs include the novel and audio drama series Faction Paradox, Iris Wildthyme and Bernice Summerfield; as well as the made-for-video series P.R.O.B.E.; the Australian-produced television series K-9, which aired a 26-episode first season on Disney XD;[145] and the audio spin-off Counter-Measures.[146]

      +

      Charity episodes[edit]

      +

      In 1983, coinciding with the series' 20th anniversary, a charity special titled The Five Doctors was produced in aid of Children in Need, featuring three of the first five Doctors, a new actor to replace the deceased William Hartnell, and unused footage to represent Tom Baker.[147] This was a full-length, 90-minute film, the longest single episode of Doctor Who produced to date (the television movie ran slightly longer on broadcast where it included commercial breaks).[148][149]

      +

      In 1993, for the franchise's 30th anniversary, another charity special, titled Dimensions in Time was produced for Children in Need, featuring all of the surviving actors who played the Doctor and a number of previous companions. It also featured a crossover with the soap opera EastEnders, the action taking place in the latter's Albert Square location and around Greenwich. The special was one of several special 3D programmes the BBC produced at the time, using a 3D system that made use of the Pulfrich effect requiring glasses with one darkened lens; the picture would look normal to those viewers who watched without the glasses.

      +

      In 1999, another special, Doctor Who and the Curse of Fatal Death, was made for Comic Relief and later released on VHS. An affectionate parody of the television series, it was split into four segments, mimicking the traditional serial format, complete with cliffhangers, and running down the same corridor several times when being chased (the version released on video was split into only two episodes). In the story, the Doctor (Rowan Atkinson) encounters both the Master (Jonathan Pryce) and the Daleks. During the special the Doctor is forced to regenerate several times, with his subsequent incarnations played by, in order, Richard E. Grant, Jim Broadbent, Hugh Grant and Joanna Lumley. The script was written by Steven Moffat, later to be head writer and executive producer to the revived series.[17]

      +

      Since the return of Doctor Who in 2005, the franchise has produced two original "mini-episodes" to support Children in Need. The first, aired in November 2005, was an untitled seven-minute scene which introduced David Tennant as the Tenth Doctor. It was followed in November 2007 by "Time Crash", a 7-minute scene which featured the Tenth Doctor meeting the Fifth Doctor (played once again by Peter Davison).

      +

      A set of two mini-episodes, titled "Space" and "Time" respectively, were produced to support Comic Relief. They were aired during the Comic Relief 2011 event.[150]

      +

      During 2011 Children in Need, an exclusively-filmed segment showed the Doctor addressing the viewer, attempting to persuade them to purchase items of his clothing, which were going up for auction for Children in Need. The 2012 edition of CiN featured the mini-episode The Great Detective.

      +

      Spoofs and cultural references[edit]

      +
      Main article: Doctor Who spoofs
      +

      Doctor Who has been satirised and spoofed on many occasions by comedians including Spike Milligan (a Dalek invades his bathroom — Milligan, naked, hurls a soap sponge at it) and Lenny Henry. Jon Culshaw frequently impersonates the Fourth Doctor in the BBC Dead Ringers series.[151] Doctor Who fandom has also been lampooned on programs such as Saturday Night Live, The Chaser's War on Everything, Mystery Science Theater 3000, Family Guy, American Dad!, Futurama, South Park, Community as Inspector Spacetime, The Simpsons and The Big Bang Theory.

      +

      The Doctor in his fourth incarnation has been represented on several episodes of The Simpsons[152] and Matt Groening's other animated series Futurama.[153][154]

      +

      There have also been many references to Doctor Who in popular culture and other science fiction, including Star Trek: The Next Generation ("The Neutral Zone")[155] and Leverage. In the Channel 4 series Queer as Folk (created by later Doctor Who executive producer Russell T Davies), the character of Vince was portrayed as an avid Doctor Who fan, with references appearing many times throughout in the form of clips from the programme. In a similar manner, the character of Oliver on Coupling (created and written by current show runner Steven Moffat) is portrayed as a Doctor Who collector and enthusiast. References to Doctor Who have also appeared in the young adult fantasy novels Brisingr[156] and High Wizardry,[157] the video game Rock Band,[158] the soap opera EastEnders,[159] the Adult Swim comedy show Robot Chicken, the Family Guy episodes "Blue Harvest" and "420", and the game RuneScape.

      +

      Doctor Who has been a reference in several political cartoons, from a 1964 cartoon in the Daily Mail depicting Charles de Gaulle as a Dalek[160] to a 2008 edition of This Modern World by Tom Tomorrow in which the Tenth Doctor informs an incredulous character from 2003 that the Democratic Party will nominate an African-American as its presidential candidate.[161]

      +

      The word "TARDIS" is an entry in the Shorter Oxford English Dictionary[162] and the iOS dictionary.

      +

      As part of the 50th anniversary programmes, former Fifth Doctor Peter Davison created, wrote and co-starred in a parody The Five(ish) Doctors Reboot featuring cameos from several other former Doctors, companions and people involved in the programme.[163]

      +

      Museums and exhibitions[edit]

      + +

      There have been various exhibitions of Doctor Who in the United Kingdom, including the now closed exhibitions at:

      + +

      There is an exhibition open currently in Cardiff (the city where the series is filmed)[164]

      +

      Merchandise[edit]

      + +

      Since its beginnings, Doctor Who has generated hundreds of products related to the show, from toys and games to collectible picture cards and postage stamps. These include board games, card games, gamebooks, computer games, roleplaying games, action figures and a pinball game. Many games have been released that feature the Daleks, including Dalek computer games.

      +

      Audios[edit]

      +

      The Doctor has also appeared in webcasts and in audio plays; among the latter were those produced by Big Finish Productions, who were responsible for a range of audio plays released on CD, as well as 2006's eight-part BBC 7 series starring Paul McGann. Big Finish's productions began with the release of The Sirens of Time in July 1999. These audios feature Doctors 4–8. As well as this, Big Finish also release a range of other audio books read by both Doctors and Companions.

      +

      Books[edit]

      + +

      Doctor Who books have been published from the mid-sixties through to the present day. From 1965 to 1991 the books published were primarily novelised adaptations of broadcast episodes; beginning in 1991 an extensive line of original fiction was launched, the Virgin New Adventures and Virgin Missing Adventures. Since the relaunch of the programme in 2005, a new range of novels have been published by BBC Books. Numerous non-fiction books about the series, including guidebooks and critical studies, have also been published, and a dedicated Doctor Who Magazine with newsstand circulation has been published regularly since 1979. This is published by Panini, as is the Doctor Who Adventures magazine for younger fans.

      +

      See also:

      + +

      Video games[edit]

      + +

      Numerous Doctor Who video games have been created from the mid-80s through to the present day. One of the recent ones is a match-3 game released in November 2013 for iOS, Android, Amazon App Store and Facebook called Doctor Who: Legacy. It has been contstantly updated since its release and features all of the Doctors as playable characters as well as over 100 companions.[165]

      +

      Another video game installment is LEGO Dimensions - in which Doctor Who is one of the many "Level Packs" in the game. At the moment, the pack contains the Twelfth Doctor, K9, the TARDIS and a Victorian London adventure level area. The game and pack are due later in 2015. [166]

      +

      Chronology and canonicity[edit]

      +

      Since the creation of the Doctor Who character by BBC Television in the early 1960s, a myriad of stories have been published about Doctor Who, in different media: apart from the actual television episodes that continue to be produced by the BBC, there have also been novels, comics, short stories, audio books, radio plays, interactive video games, game books, webcasts, DVD extras, and even stage performances. In this respect it is noteworthy that the BBC takes no position on the canonicity of any of such stories, and recent producers of the show have expressed distaste for the idea.[167]

      +

      Awards[edit]

      + +

      The show has received recognition as one of Britain's finest television programmes, winning the 2006 British Academy Television Award for Best Drama Series and five consecutive (2005–2010) awards at the National Television Awards during Russell T Davies' tenure as executive producer.[168][169] In 2011, Matt Smith became the first Doctor to be nominated for a BAFTA Television Award for Best Actor. In 2013, the Peabody Awards honoured Doctor Who with an Institutional Peabody "for evolving with technology and the times like nothing else in the known television universe."[170] The programme is listed in Guinness World Records as the longest-running science fiction television show in the world,[171] the "most successful" science fiction series of all time—based on its over-all broadcast ratings, DVD and book sales, and iTunes traffic—[172] and for the largest ever simulcast of a TV drama with its 50th anniversary special.[173] During its original run, it was recognised for its imaginative stories, creative low-budget special effects, and pioneering use of electronic music (originally produced by the BBC Radiophonic Workshop).

      +

      In 1975, Season 11 of the series won a Writers' Guild of Great Britain award for Best Writing in a Children's Serial. In 1996, BBC television held the "Auntie Awards" as the culmination of their "TV60" series, celebrating 60 years of BBC television broadcasting, where Doctor Who was voted as the "Best Popular Drama" the corporation had ever produced, ahead of such ratings heavyweights as EastEnders and Casualty.[174] In 2000, Doctor Who was ranked third in a list of the 100 Greatest British Television Programmes of the 20th century, produced by the British Film Institute and voted on by industry professionals.[175] In 2005, the series came first in a survey by SFX magazine of "The Greatest UK Science Fiction and Fantasy Television Series Ever". Also, in the 100 Greatest Kids' TV shows (a Channel 4 countdown in 2001), the 1963–1989 run was placed at number eight.

      +

      The revived series has received recognition from critics and the public, across various awards ceremonies. It won five BAFTA TV Awards, including Best Drama Series, the highest-profile and most prestigious British television award for which the series has ever been nominated.[176] It was very popular at the BAFTA Cymru Awards, with 25 wins overall including Best Drama Series (twice), Best Screenplay/Screenwriter (thrice) and Best Actor.[177] It was also nominated for 7 Saturn Awards, winning the only Best International Series in the ceremony's history. In 2009, Doctor Who was voted the 3rd greatest show of the 2000s by Channel 4, behind Top Gear and The Apprentice.[178] The episode "Vincent and the Doctor" was shortlisted for a Mind Award at the 2010 Mind Mental Health Media Awards for its "touching" portrayal of Vincent van Gogh.[179]

      +

      It has won the Short Form of the Hugo Award for Best Dramatic Presentation, the oldest science fiction/fantasy award for films and series, six times (every year since 2006, except for 2009, 2013 and 2014). The winning episodes were "The Empty Child"/"The Doctor Dances" (2006), "The Girl in the Fireplace" (2007), "Blink" (2008), "The Waters of Mars" (2010), "The Pandorica Opens"/"The Big Bang" (2011), and "The Doctor's Wife" (2012).[180][181][182][183] Doctor Who star Matt Smith won Best Actor in the 2012 National Television awards alongside Karen Gillan who won Best Actress. Doctor Who has been nominated for over 200 awards and has won over a hundred of them.

      +

      As a British series, the majority of its nominations and awards have been for national competitions such as the BAFTAs, but it has occasionally received nominations in mainstream American awards, most notably a nomination for "Favorite Sci-Fi Show" in the 2008 People's Choice Awards and the series has been nominated multiple times in the Spike Scream Awards, with Smith winning Best Science Fiction Actor in 2011. The Canadian Constellation Awards have also recognised the series.

      +

      See also[edit]

      + + + + + + + + +

      Notes[edit]

      +
      +
        +
      1. ^ Newman is often given sole creator credit for the series. Some reference works such as The Complete Encyclopedia of Television Programs 1947–1979 by Vincent Terrace erroneously credit Terry Nation with creating Doctor Who, because of the way his name is credited in the two Peter Cushing films.[citation needed]
        +Newman and Lambert's role in originating the series was recognised in the 2007 episode "Human Nature", in which the Doctor, in disguise as a human named John Smith, gives his parents' names as Sydney and Verity.[citation needed]
      2. +
      3. ^ This is often emphasised in the accompanying making-of documentaries in the series Doctor Who Confidential, as well as in occasional flashbacks to images of earlier versions of the Doctor.
      4. +
      5. ^ The tapes, based on a 405-line broadcast standard, were rendered obsolete when UK television changed to a 625-line signal in preparation for the soon-to-begin colour transmissions.
      6. +
      7. ^ When it became an entry in the Oxford English Dictionary, the word "TARDIS" often came to be used to describe anything that appeared larger on the inside than its exterior implied.
      8. +
      9. ^ a b c d e f g Earlier incarnations of the Doctor have occasionally appeared with the then current incarnation in later plots. The First and Second Doctors appeared in the 1973 Third Doctor story, The Three Doctors; The First, Second, Third and Fourth appeared in the 1983 Fifth Doctor story, The Five Doctors; the Second appeared with the Sixth in the 1985 story, The Two Doctors; the Fifth appeared with the Tenth in the 2007 mini-episode, "Time Crash"; and the Tenth appeared with the Eleventh in "The Day of the Doctor". The Eighth Doctor also returned in the 2013 mini-episode "The Night of the Doctor".
      10. +
      11. ^ Often mistitled "I am the Doctor" on YouTube uploads. Originally released as a 7" vinyl single, plain sleeve, December 1972 on label Purple PUR III
      12. +
      +
      +

      References[edit]

      +
      +
        +
      1. ^ "Brian Minchin confirmed as New Executive Producer of Doctor Who". BBC. 30 April 2013. Retrieved 30 April 2013. 
      2. +
      3. ^ "The end of Olde Englande: A lament for Blighty". The Economist. 14 September 2006. Retrieved 18 September 2006. 
        +"ICONS. A Portrait of England". Retrieved 10 November 2007. 
      4. +
      5. ^ a b Moran, Caitlin (30 June 2007). "Doctor Who is simply masterful". The Times (London). Retrieved 1 July 2007. [Doctor Who] is as thrilling and as loved as Jolene, or bread and cheese, or honeysuckle, or Friday. It's quintessential to being British. 
      6. +
      7. ^ Do You Remember the First Time?. Doctor Who Confidential. 9 June 2007. Director and presenter: David Tennant 
      8. +
      9. ^ Gurudata, Andrew. "Rage Against the Machine". Enlightenment (147). 
      10. +
      11. ^ "Doctor Who: Peter Capaldi revealed as 12th Doctor". BBC News. 4 August 2013. 
      12. +
      13. ^ Howe, Stammers, Walker (1994), p. 54
      14. +
      15. ^ "An Unearthly Child". BBC. 16 August 2012. 
      16. +
      17. ^ Howe, Stammers, Walker (1994), pp. 157–230 ("Production Diary")
      18. +
      19. ^ Howe, Stammers, Walker (1992), p. 3.
      20. +
      21. ^ Steve Tribe, James Goss Dr Who: The Dalek Handbook BBC Books Random House 2011 ISBN 978-1-84990-232-8 Pg9
      22. +
      23. ^ Deans, Jason (21 June 2005). "Doctor Who makes the Grade". The Guardian (London). Retrieved 4 February 2007. But Mr Grade was not at the helm when Doctor Who was finally retired for good in 1989 — that decision fell to the then BBC1 controller, Jonathan Powell. 
      24. +
      25. ^ a b c Doctor Who Magazine Eighth Doctor Special, Panini Comics 2003
      26. +
      27. ^ Gibson, Owen (26 September 2003). "Doctor Who returns to BBC1 screens". The Guardian (London). Retrieved 20 January 2012. 
      28. +
      29. ^ "Doctor Who is Saturday night hit". BBC. Retrieved 24 October 2013. 
      30. +
      31. ^ Davies, Russell T; Cook, Benjamin (2010). Doctor Who: The Writer's Tale: The Final Chapter. London: BBC Books. p. 216. ISBN 978-1-84607-861-3. 
      32. +
      33. ^ a b "Doctor Who guru Davies steps down". BBC News. 20 May 2008. Retrieved 20 May 2008. 
      34. +
      35. ^ "Outpost Gallifrey: TV Series FAQ". gallifreyone.com. [dead link]
      36. +
      37. ^ Howe, David J.; Mark Stammers; Stephen James Walker (2003). The Television Companion: The Unofficial and Unauthorised Guide to DOCTOR WHO (2nd ed.). Surrey: Telos Publishing Ltd. ISBN 1-903889-51-0. 
      38. +
      39. ^ "Serial A: 100,000 BC (aka An Unearthly Child, The Tribe of Gum)". shannonsullivan.com. Retrieved 6 September 2013. 
      40. +
      41. ^ "DOCTOR WHO'S FIRST EPISODE: AN UNEARTHLY CHILD". televisionheaven.co.uk. Retrieved 6 September 2013. [dead link]
      42. +
      43. ^ Clark, Anthony. "Doctor Who (1963–89, 2005–)". Screenonline. Retrieved 21 March 2007. The science fiction adventure series Doctor Who (BBC, 1963–89) has created a phenomenon unlike any other British TV programme. 
      44. +
      45. ^ Tulloch, John. "Doctor Who". Museum of Broadcast Communications. Archived from the original on 11 February 2007. Retrieved 21 March 2007. The official fans have never amounted to more than a fraction of the audience. Doctor Who achieved the status of an institution as well as a cult. 
      46. +
      47. ^ "Voyage of the Damned – Cast and Crew". BBC. Retrieved 24 October 2013. 
      48. +
      49. ^ "Planet of the Dead – Credits". BBC. Retrieved 24 October 2013. 
      50. +
      51. ^ "Dinosaurs on a Spaceship – Credits". BBC. Retrieved 24 October 2013. 
      52. +
      53. ^ "The Name of the Doctor – Credits". BBC. Retrieved 24 October 2013. 
      54. +
      55. ^ "Biography of Mary Whitehouse". Internet Movie Database. Retrieved 6 July 2007. 
      56. +
      57. ^ "Doctor Who Producer Dies". BBC News. 3 May 2002. Retrieved 6 July 2007. 
      58. +
      59. ^ Leith, Sam (2008-07-04). "Worshipping Doctor Who from behind the sofa". The Daily Telegraph. Retrieved 2008-07-05. The cliché about Doctor Who — that it had us "hiding behind the sofa" — is more telling in its tone than its questionable factuality. It connotes nostalgia, and a pleasurable mixture of fright and fascination — but above all it connotes domesticity. It united fear and soft furnishings in the British mind. 
      60. +
      61. ^ If you weren't scared of Doctor Who as a child, you missed out on a crucial experience - IO9, by Charlie Jane Anders, 2012-12-25
      62. +
      63. ^ 'Doctor Who' named scariest TV show of all time: Your Top 10 revealed, Digital Spy, Catriona Wightman & Morgan Jeffery, 2011-10-31.
      64. +
      65. ^ "BBC – Doctor Who Classic Episode Guide – Terror of the Autons". BBC. Retrieved 25 October 2013. 
      66. +
      67. ^ "Doctor Who Classic Episode Guide – The Brain of Morbius". BBC. Retrieved 25 October 2013. 
      68. +
      69. ^ "BBC – Doctor Who Classic Episode Guide – The Deadly Assassin". BBC. Retrieved 25 October 2013. 
      70. +
      71. ^ a b Howard, Philip (29 January 1972). "Violence is not really Dr Who's cup of tea". The Times. p. 2. 
      72. +
      73. ^ "The Times Diary — Points of view". The Times. 27 January 1972. p. 16. 
      74. +
      75. ^ "Doctor Who fan in tardis replica plan for Herne Bay". BBC. Retrieved 31 July 2013. 
      76. +
      77. ^ "Case details for Trade Mark UK00002104259". UK Patent Office. Retrieved 27 October 2013. 
      78. +
      79. ^ "Trade mark decision". UK Patent Office website. Retrieved 17 January 2007. 
        +Knight, Mike. "In the matter of application No. 2104259 by The British Broadcasting Corporation to register a series of three marks in Classes 9, 16, 25 and 41 AND IN THE MATTER OF Opposition thereto under No. 48452 by The Metropolitan Police Authority" (PDF). UK Patent Office. Retrieved 17 January 2007. 
        +"BBC wins police Tardis case". BBC News. 23 October 2002. Retrieved 17 January 2007. 
      80. +
      81. ^ Leith, Sam (4 July 2008). "Worshipping Doctor Who from behind the sofa". The Daily Telegraph (London). Archived from the original on 6 July 2008. Retrieved 7 July 2008. 
      82. +
      83. ^ Robinson, James (18 March 2007). "Television's Lord of prime time awaits his next regeneration". The Observer (London). Retrieved 19 March 2007. 
      84. +
      85. ^ Pettie, Andrew (4 January 2009). "Casting Matt Smith shows that Doctor Who is a savvy multi-million pound brand". The Daily Telegraph (London). Retrieved 4 January 2009. 
      86. +
      87. ^ Dowell, Ben (23 August 2008). "Edinburgh TV Festival 2008: don't rule out Doctor Who feature film, says Steven Moffat". The Guardian (London). Retrieved 23 August 2008. 
      88. +
      89. ^ "New Doctor Who star to be unveiled". BBC. 2 August 2013. Retrieved 3 August 2013. 
      90. +
      91. ^ "From spin doctor to Doctor Who ... star's childhood dream comes true". The Herald. Glasgow. 5 August 2013. Retrieved 18 August 2013. 
      92. +
      93. ^ The Daleks' Master Plan. Writers Terry Nation and Dennis Spooner, Director Douglas Camfield, Producer John Wiles. Doctor Who. BBC. BBC One, London. 13 November 1965 – 29 January 1966.
      94. +
      95. ^ Writer Terry Nation, Director Derek Martinus, Producer Verity Lambert (9 October 1965). "Mission to the Unknown". Doctor Who. BBC. BBC One. 
      96. +
      97. ^ The War Games. Writers Malcolm Hulke and Terrance Dicks, Director David Maloney, Producer Derrick Sherwin. Doctor Who. BBC. BBC One, London. 19 April 1969 – 21 June 1969.
      98. +
      99. ^ The Trial of a Time Lord. Writers Robert Holmes, Philip Martin and Pip and Jane Baker, Directors Nicholas Mallett, Ron Jones and Chris Clough, Producer John Nathan-Turner. Doctor Who. BBC. BBC One, London. 6 September 1986 – 6 December 1986.
      100. +
      101. ^ "BBC – Doctor Who Classic Episode Guide – Season 8". BBC. Retrieved 25 October 2013. 
      102. +
      103. ^ "The Master – BBC". BBC. Retrieved 25 October 2013. 
      104. +
      105. ^ "BBC – Doctor Who Classic Episode Guide – Season 16". BBC. Retrieved 25 October 2013. 
      106. +
      107. ^ "BBC – Doctor Who Classic Episode Guide – Logopolis". BBC. Retrieved 25 October 2013. 
      108. +
      109. ^ "BBC – Season 20 – Episode guide". BBC. Retrieved 25 October 2013. 
      110. +
      111. ^ a b c d "10 things you didn't know about Doctor Who". Watch. Archived from the original on 16 January 2011. Retrieved 20 January 2012. 
      112. +
      113. ^ Black Orchid. Writer Terence Dudley, Director Ron Jones, Producer John Nathan-Turner. Doctor Who. BBC. BBC One, London. 1 March 1982 – 2 March 1982.
      114. +
      115. ^ a b "Doctor Who Episode List". BBC. Retrieved 26 October 2013. 
      116. +
      117. ^ Debnath, Neela (21 September 2013). "Review of Doctor Who 'The Talons of Weng-Chiang' (Series 14)". The Independent. Retrieved 26 October 2013. 
      118. +
      119. ^ "BBC Online – Cult – Hitchhiker's – Douglas Adams – Biography". BBC. Retrieved 26 October 2013. 
      120. +
      121. ^ "Shada, Douglas Adams's 'lost' Doctor Who story, to be novelised". The Guardian. 24 March 2011. Retrieved 26 October 2013. 
      122. +
      123. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Retrieved 5 February 2009. [dead link]
      124. +
      125. ^ "BBC announces Doctor Who 3D Special". BBC News. 11 February 2013. Retrieved 12 February 2013. 
      126. +
      127. ^ "Doctor Who: David Tennant returns for anniversary show". BBC News. 30 March 2013. Retrieved 2 April 2013. 
      128. +
      129. ^ McMillan, Graeme (12 February 2013). "'Doctor Who' goes 3D for its half-century edition". Digital Trends. Retrieved 2 April 2013. 
      130. +
      131. ^ "Doctor Who 'to remain on-screen until at least 2020'". BBC. 7 April 2015. Retrieved 8 April 2015. 
      132. +
      133. ^ Molesworth, Richard. "BBC Archive Holdings". Doctor Who Restoration Team. Retrieved 30 April 2007. A full set was held at least until early 1972, as 16 mm black and white film negatives (apart — of course — from 'Masterplan' 7). . 
      134. +
      135. ^ Molesworth, Richard. "BBC Archive Holdings". Doctor Who Restoration Team. Retrieved 30 April 2007. the videotapes began to be wiped, or re-used, until the formation of the BBC's Film and Videotape Library in 1978 put a stop to this particular practice. 
      136. +
      137. ^ "'Doctor Who': Restoring and Reconstructing Missing Episodes". BBC. Retrieved 20 January 2012. 
      138. +
      139. ^ Lewinski, John Scott (29 September 2008). "Fans Reconstruct Doctor Who's Trashed Past". Wired. Retrieved 20 January 2012. 
      140. +
      141. ^ Martin, Lara (20 February 2009). "Zimbabwe 'hoarding lost 'Who' episodes'". Digital Spy. Retrieved 20 January 2012. 
      142. +
      143. ^ Foster, Chuck (21 June 2011). "The Reign of Terror — animation update". Doctor Who News Page. 
      144. +
      145. ^ "Blue Peter — Missing Doctor Who tapes". BBC. April 2006. Archived from the original on 24 April 2006. Retrieved 24 April 2006. 
      146. +
      147. ^ Mulkern, Patrick (11 December 2011). "Doctor Who: two long-lost episodes uncovered". Radio Times. Retrieved 11 December 2011. 
      148. +
      149. ^ Christopher Allen (10 October 2013). "Two "Missing" Doctor Who Adventures Found". BBC Worldwide. Retrieved 11 October 2013. 
      150. +
      151. ^ Doctor Who Online (11 October 2013). "Nine Missing Doctor Who Episodes Recovered!". Doctor Who Online. Retrieved 11 October 2013. 
      152. +
      153. ^ "Doctor Who: Yeti classic among episodes found in Nigeria". BBC. Retrieved 25 October 2013. 
      154. +
      155. ^ "Full record for Tardis-like adj.". Science Fiction Citations. Retrieved 7 September 2007. 
      156. +
      157. ^ Berriman, Ian (26 October 2010). "Interview: Russell T Davies Talks About THAT Sarah Jane Adventures Line". SFX.co.uk. Retrieved 19 April 2012. 
      158. +
      159. ^ Darren Scott (26 November 2013). "Steven Moffat on ‘Doctor numbers’ and the regeneration limit". 
      160. +
      161. ^ "INTERVIEW Russell T Davies talks about THAT Sarah Jane Adventures line". http://www.sfx.co.uk/. Retrieved 5 August 2013. 
      162. +
      163. ^ Emily Barr (13 October 2010). "Doctor Who is now immortal, reveals the BBC". The Guardian. Retrieved 13 October 2010. 
      164. +
      165. ^ "Official episode guide". UK: BBC. 1 March 2008. Retrieved 31 March 2008. 
      166. +
      167. ^ "Episode Guide — Seventh Doctor Index". Doctor Who — Classic Series. UK: BBC. Retrieved 30 July 2011. 
      168. +
      169. ^ "TV Movie cast & crew". UK: BBC. Retrieved 15 April 2008. 
      170. +
      171. ^ a b Hogan, Michael (18 May 2013). "Doctor Who: The Name of the Doctor, BBC One, review". The Daily Telegraph. Retrieved 22 May 2013. 
      172. +
      173. ^ Rigby, Sam (24 November 2013). "'Doctor Who': Steven Moffat on regeneration limit". Digital Spy. Retrieved 25 November 2013. 
      174. +
      175. ^ Ted B. Kissell. "The depressing, disappointing maleness of Doctor Who 's new Time Lord", The Atlantic, August 5, 2013
      176. +
      177. ^ "Neil Gaiman hopes a non-white person will take Doctor Who role someday", Sunday World, August 8, 2013.
      178. +
      179. ^ Horne, Marc. "How Doctor Who nearly became the Time Lady". The Sunday Telegraph. Retrieved 10 October 2010. 
      180. +
      181. ^ "The Day of the Doctor". Doctor Who. 23 November 2013. 60 minutes in. BBC. BBC One. 
      182. +
      183. ^ "Doctor Who — Zagreus". Big Finish. 
      184. +
      185. ^ "Doctor Who — Project: Lazarus". Big Finish. 
      186. +
      187. ^ "Doctor Who: the TV movie". BBC. Retrieved 13 June 2008. 
      188. +
      189. ^ "Doctor Who — FAQ — Plot and Continuity". BBC. 28 March 2008. Retrieved 30 April 2010. 
      190. +
      191. ^ a b "Doctor Who (before the Tardis)". BBC News. 19 November 2008. Retrieved 22 May 2012. 
      192. +
      193. ^ Jones, Paul (19 April 2012). "Steven Moffat: the companion is the main character in Doctor Who, not the Doctor". Radio Times. BBC Magazines. Retrieved 28 November 2013. 
      194. +
      195. ^ Berkshire, Geoff (27 March 2013). "'Doctor Who' returns: Steven Moffat talks new companion Clara and Jenna-Louise Coleman". Zap2it. Retrieved 28 November 2013. 
      196. +
      197. ^ Orthia, Lindy A. (2010). ""Sociopathetic Abscess" or "Yawning Chasm"? The Absent Postcolonial Transition in Doctor Who". Journal of Commonwealth Literature 45 (2): 207–225. doi:10.1177/0021989410366891. 
      198. +
      199. ^ "Doctor Who (before the Tardis)". BBC Magazine. 19 November 2008. Retrieved 3 January 2009. 
      200. +
      201. ^ "Doctor Who series two secrets revealed". BBC. 19 June 2005. Retrieved 29 August 2013. 
      202. +
      203. ^ Monster Files: Cybermats. iTunes Store. 2011. 
      204. +
      205. ^ "The Dead Planet". Retrieved 30 June 2011. 
      206. +
      207. ^ "NATION, TERRY". Retrieved 19 May 2008. 
      208. +
      209. ^ "Doctor Who Dalek designer Ray Cusick dies after illness". BBC. 24 February 2013. Retrieved 27 October 2013. 
      210. +
      211. ^ "Every generation of The Daleks returning to 'Doctor Who'". BANG Showbiz (England). 2 April 2012. Retrieved 3 April 2012. 
      212. +
      213. ^ Doctor Who Magazine Special Edition No. 2, 5 September 2002, [subtitled The Complete Third Doctor], p. 14.
      214. +
      215. ^ John Simm Returns for the Finale!
      216. +
      217. ^ "Murray Gold Returns". Doctor Who News Page. 3 January 2010. 
      218. +
      219. ^ "Doctor Who: 'nasty' new theme tune angers fans". The Daily Telegraph. 18 April 2010. Retrieved 20 May 2010. 
      220. +
      221. ^ a b c Peel, Ian (7 July 2008). "Doctor Who: a musical force?". The Guardian (London: blog). Retrieved 7 July 2008. 
      222. +
      223. ^ "BBC Prom 27 July 2008". BBC. 27 July 2008. Retrieved 29 September 2008. 
      224. +
      225. ^ "Who soundtrack soon". BBC. 17 July 2006. Retrieved 4 August 2006. [dead link]
        +"Silva Screen announces Doctor Who CD release date". silvascreen.co.uk. 1 November 2006. Archived from the original on 12 December 2006. Retrieved 4 December 2006. 
      226. +
      227. ^ "DOCTOR WHO – SERIES 4 Murray Gold". Silva Screen Music. Retrieved 6 September 2013. 
      228. +
      229. ^ "DOCTOR WHO: SERIES 4-THE SPECIALS Murray Gold". Silva Screen Music. Retrieved 6 September 2013. 
      230. +
      231. ^ "Doctor Who Series 5 Original TV Soundtrack (Music CD)". BBC. Retrieved 6 September 2013. 
      232. +
      233. ^ "Doctor Who: A Christmas Carol (Soundtrack)". BBC. Retrieved 6 September 2013. 
      234. +
      235. ^ "Doctor Who: Series 6 (Soundtrack)". BBC. Retrieved 6 September 2013. 
      236. +
      237. ^ a b c d e Hilton, Matt (16 July 2008). "Doctor Who — Top Chart Placing – 1963–2008". Doctor Who News Page (Outpost Gallifrey). Retrieved 16 July 2008. [dead link];Hilton, Matt (11 January 2008). "Doctor Who Top Ratings: 1963–2007". Doctor Who News Page. Outpost Gallifrey. Archived from the original on 15 March 2008. Retrieved 17 July 2008. 
      238. +
      239. ^ Marlborough, Douglas (28 December 1964). "Dead, but they won't lie down" (REPRINT, HOSTED ON DOCTOR WHO CUTTINGS ARCHIVE). Daily Mail (London). Retrieved 16 July 2008. [dead link]
      240. +
      241. ^ "Weekly Viewing Summary: Terrestrial Top 30 – Week ending 6 July 2008". Broadcasters' Audience Research Board. 16 July 2008. Retrieved 16 July 2008. [dead link]
      242. +
      243. ^ Hilton, Matt (16 July 2008). "Journey's End: Officially Number One". Doctor Who News Page. Outpost Gallifrey. Retrieved 16 July 2008. [dead link]
      244. +
      245. ^ Wright, Mark (1 November 2007). "These sci-fi people vote". The Stage. Retrieved 9 April 2009. 
      246. +
      247. ^ Sweney, Mark (8 July 2008). "Profits grow at BBC Worldwide". The Guardian (London). Retrieved 8 July 2008. 
      248. +
      249. ^ O'Connor, Gavin (13 July 2008). "Daleks speak to all nations". Wales on Sunday. Archived from the original on 15 July 2008. Retrieved 13 July 2008. 
      250. +
      251. ^ "Canada: Runaway Bride and Series Three on CBC". Canadian Broadcasting Corporation. Retrieved 9 June 2007. [dead link]
      252. +
      253. ^ "Sci Fi on Air Schedule". Scifi.com. Archived from the original on 11 June 2007. 
      254. +
      255. ^ "'Doctor Who' series 4, 'Sarah Jane' Travel to Sci Fi". Zap2it. Retrieved 4 February 2008. [dead link]
      256. +
      257. ^ "Series Four Starts 19 September on CBC". dwin.org. Retrieved 22 May 2008. [dead link]
      258. +
      259. ^ "Doctor Who: The Next Doctor". Spacecast.com. Retrieved 5 March 2009. [dead link]
      260. +
      261. ^ "Turning Japanese". BBC. 30 June 2006. Archived from the original on 6 July 2007. Retrieved 27 October 2013. 
      262. +
      263. ^ Clements, Jonathan (March 2007). "Anime Pulse: Soundalikes". NEO (30). p. 20. 
      264. +
      265. ^ "BBC classic series laserdiscs @ The TARDIS Library (Doctor Who books, DVDs, videos & audios)". Timelash.com. Retrieved 30 July 2011. 
      266. +
      267. ^ "Matt Smith is the eleventh, and youngest, actor to play Doctor Who". News (London: The Daily Telegraph (online)). 5 January 2009. Retrieved 15 June 2011. 
      268. +
      269. ^ Dawtrey, Adam (14 November 2011). "Yates to direct bigscreen 'Doctor Who'". Variety. Retrieved 14 November 2011. 
      270. +
      271. ^ Sperling, Daniel (2 December 2011). "'Doctor Who' Movie Will Not Be A Reboot Says Moffat". Digital Spy. Retrieved 2 December 2011. 
      272. +
      273. ^ "Doctor Who movie will star Matt Smith if it gets made, says Steven Moffat". Metro. Retrieved 2 December 2011. 
      274. +
      275. ^ Lofficier, Jean-Marc (1997). The Nth Doctor. London: Virgin Publishing. p. 9. ISBN 0-426-20499-9. 
        +Bailey, Shaun (Producer); Kalangis, Johnny (Director) (2004). The Planet of the Doctor, Part 6: Doctor Who & Culture II (QUICKTIME OR WINDOWS MEDIA) (Documentary). Toronto: CBC Television. Retrieved 9 April 2009. [dead link]
        +"Planet of the Doctor". CBC Television. Archived from the original on 30 April 2008. Retrieved 9 April 2009. 
      276. +
      277. ^ Walker, Stephen James (2007). Inside the Hub. Tolworth, Surrey: Telos Publishing. p. 101. ISBN 978-1-84583-013-7. 
      278. +
      279. ^ "Doctor Who spin-off made in Wales". BBC News. 17 October 2005. Retrieved 24 April 2006. 
      280. +
      281. ^ "Team Torchwood". BBC. 24 February 2006. Archived from the original on 20 July 2007. Retrieved 24 April 2006. 
      282. +
      283. ^ "Russell T Davies creates new series for CBBC, starring Doctor Who's Sarah Jane Smith" (Press release). BBC. 14 September 2006. Retrieved 14 September 2006. 
      284. +
      285. ^ "Who's a Toon?". BBC Doctor Who website. 26 January 2007. Retrieved 26 January 2007. [dead link]
      286. +
      287. ^ "Wire star set for Dr Who cartoon". BBC News. 9 October 2009. Retrieved 6 January 2010. 
      288. +
      289. ^ "Doctor Who dog K9 gets spin-off". BBC News. 25 April 2006. Retrieved 26 July 2006. 
      290. +
      291. ^ "New Doctor Who Spin off ... Counter-Measures". Big Finish. 20 October 2011. Archived from the original on 22 October 2011. Retrieved 26 October 2013. 
      292. +
      293. ^ "The Five Doctors Serial 6K". drwhoguide.com. Retrieved 24 October 2013. 
      294. +
      295. ^ Shaun Lyon et al. (31 March 2007). "The Five Doctors". Outpost Gallifrey. Archived from the original on 3 May 2008. Retrieved 24 October 2013. 
      296. +
      297. ^ Sullivan, Shannon (7 August 2007). "The Five Doctors". A Brief History of Time Travel. Retrieved 24 October 2013. 
      298. +
      299. ^ "Doctor Who For Comic Relief – Exclusive". SFX. 2 March 2011. Retrieved 6 March 2011. 
      300. +
      301. ^ Mark Perry, Kevin Connelly and Phil Cornwell (2005). Dead Ringers meets Doctor Who – Comedy Greats – BBC. BBC. Event occurs at 0:00–1:30. 
      302. +
      303. ^ Sideshow Bob's Last Gleaming. 20th Century Fox Television. 26 November 1995. Event occurs at 11:29. 
      304. +
      305. ^ Möbius Dick. 20th Century Fox Television. 4 August 2011. Event occurs at 20:20. 
      306. +
      307. ^ All the Presidents' Heads. 20th Century Fox Television. 28 July 2011. Event occurs at 5:50. 
      308. +
      309. ^ "Random Doctor Who References in American TV Shows". An American View of British Science Fiction. 23 April 2012. Retrieved 27 August 2013. 
      310. +
      311. ^ Paolini, Christopher (20 September 2008). "Shadows of the Past". Brisingr (Hardcover) (1st ed.). New York: Alfred A. Knopf. pp. 204, 761. ISBN 0-375-82672-6. 'Bending over, Eragon read, Adrift upon the sea of time, the lonely god wanders from shore to distant shore, upholding the laws of the stars above.‍ '​ and in acknowledgments 'Also, for those who understood the reference to a 'lonely god' when Eragon and Arya sitting around the campfire, my only excuse is that the Doctor can travel everywhere, even alternate realities. Hey, I'm a fan too!' 
      312. +
      313. ^ "Man in the Bar, the". The Errantry Concordance. Diane Duane. 25 March 2005. Retrieved 5 July 2007. 
      314. +
      315. ^ "Doctor who Love in Rock Band". flickr. zerolives. 20 November 2007. Retrieved 24 December 2007. 
      316. +
      317. ^ Nathan, Sarah (4 December 2007). "From Square to eternity". The Sun (London). Retrieved 7 May 2009. 
      318. +
      319. ^ Illingsworth, Leslie Gilbert (25 November 1964). "The Degaullek (France's leader, General De Gaulle, is caricatured as a Dalek)" (REPRINT AT THE BRITISH CARTOON ARCHIVE). Daily Mail (London). Retrieved 15 March 2014. 
      320. +
      321. ^ "This Modern World". The Week that Was. Tom Tomorrow. 10 June 2008. Retrieved 15 March 2014. 
      322. +
      323. ^ "The essence of the Oxford English Dictionary". 5 September 2002. Retrieved 15 May 2009. 
      324. +
      325. ^ "The Five(ish) Doctors Reboot", BBC. Retrieved 23 November 2013
      326. +
      327. ^ "Doctor Who". Doctor Who. 
      328. +
      329. ^ 'Doctor Who: Legacy' Keeps Getting Updated as 10th Anniversary of 'Dr. Who' Show Approaches. Retrieved 26 February 2015.
      330. +
      331. ^ http://www.telegraph.co.uk/technology/video-games/video-game-news/11597598/Doctor-Who-revealed-for-Lego-Dimensions.html
      332. +
      333. ^ Davies, Russell T. (2005). Doctor Who Magazine (356):[page needed].  Missing or empty |title= (help)
      334. +
      335. ^ "Doctor Who scoops two TV awards". News (BBC). 21 January 2010. Retrieved 1 April 2010. 
      336. +
      337. ^ Sperling, Daniel (26 January 2011). "National Television Awards 2011 – Winners". Digital Spy. Retrieved 16 August 2012. 
      338. +
      339. ^ 72nd Annual Peabody Awards, May 2013.
      340. +
      341. ^ "Dr Who 'longest-running sci-fi'". BBC News. 28 September 2006. Retrieved 30 September 2006. 
      342. +
      343. ^ Miller, Liz Shannon (26 July 2009). "'Doctor Who' Honored by Guinness — Entertainment News, TV News, Media". Variety. Retrieved 23 November 2009. 
      344. +
      345. ^ "GUINNESS WORLD RECORD FOR THE DAY OF THE DOCTOR". Doctor Who website. 24 November 2013. Retrieved 24 November 2013. 
      346. +
      347. ^ Culf, Andrew (4 November 1996). "Viewers spurn TV's golden age in poll of small screen classics as the BBC fetes its 60th birthday". The Guardian. p. 4. 
      348. +
      349. ^ "Fawlty Towers tops TV hits". BBC News. 5 September 2000. Retrieved 18 March 2007. 
      350. +
      351. ^ "Doctor leads Bafta Cymru winners". BBC News. 22 April 2006. Retrieved 24 April 2006. 
      352. +
      353. ^ "Bafta glory for Channel 4's Boy A". BBC News. 12 May 2008. Retrieved 13 May 2008. 
      354. +
      355. ^ Cable, Simon (26 December 2009). "Top Gear takes decade's top show accolade". Daily Mail. Retrieved 6 February 2013. 
      356. +
      357. ^ "Winners announced". Mind. Retrieved 4 May 2011. Dr Who – "Vincent and the Doctor" (BBC One/BBC Wales). Richard Curtis writes this touching episode of Dr Who about the mental health experiences of the great artist Vincent van Gogh. [dead link]
      358. +
      359. ^ "Hugo and Campbell Awards Winners". Locus Online. 26 August 2006. Retrieved 27 August 2006. 
      360. +
      361. ^ "2007 Hugo Awards". World Science Fiction Society. 1 September 2007. Retrieved 1 September 2007. 
      362. +
      363. ^ "2008 Hugo Awards Announced". World Science Fiction Society. 9 August 2008. Retrieved 15 August 2007. 
      364. +
      365. ^ "2011 Hugo and Campbell Awards Nominees". Locus Magazine. 24 April 2011. Retrieved 24 April 2011. 
      366. +
      +
      +

      Cited texts[edit]

      +
      + +
      +

      Further reading[edit]

      +
        +
      • Matt Hills. Triumph of a Time Lord: Regenerating "Doctor Who" in the Twenty-First Century (I.B. Tauris, 2010) 261 pages. Discusses the revival of the BBC's Doctor Who in 2005 after it had been off the air as a regular series for more than 15 years; topics include the role of "fandom" in the sci-fi programme's return, and notions of "cult" and "mainstream" in television.
      • +
      • Tabloid Bintang Indonesia, Doctor Who Pengganti Chalkzone
      • +
      • Majalah GADIS, Kenalan Bareng Doctor Who, Ketemu Bareng 1st–11th Doctor
      • +
      +

      External links[edit]

      + + + + + + + + + + + + + + + + + + + +

      Official websites[edit]

      + + +

      Past official BBC websites[edit]

      + +

      Reference websites[edit]

      + + + + + + + + + + +
      Awards
      Preceded by
      +The Bill
      National Television Awards
      +Most Popular Drama

      +2005, 2006, 2007, 2008, 2010
      Succeeded by
      +Waterloo Road
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html new file mode 100644 index 000000000..f7508d24c --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html @@ -0,0 +1,7031 @@ + + + + +List of Doctor Who serials - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +
      + +
      Page semi-protected
      +
      +

      List of Doctor Who serials

      +
      +
      From Wikipedia, the free encyclopedia
      +
      +
      + Jump to: navigation, search +
      +

      Doctor Who is a British science fiction television programme produced by the BBC. As of 10 October 2015, 817 episodes of Doctor Who have aired. This includes one television movie, and encompasses 255 stories over 35 seasons. Additionally, four charity specials and two animated serials have also been aired. The show's high episode count resulted in Doctor Who holding the world record for the highest number of episodes for a science-fiction programme.[1]

      +

      Doctor Who ceased airing in 1989 and began again in 2005. Each story in the original series (1963–89) is a multi-episode serial, with two exceptions: the 1965 cutaway episode "Mission to the Unknown" and the 20th anniversary story The Five Doctors. The characters in the column after the serial titles indicate the code used by the production team to designate the serial, where applicable, and are followed either by the titles of the individual episodes where given or by the number of episodes otherwise. Unless otherwise noted, episodes in this period are 25 minutes long. During the early seasons of the programme most serials were linked together and one would usually lead directly into the next. Starting with the 2005 revival, the production team abandoned the traditional serial format for a largely self-contained episodic format with occasional multi-part stories and loose story arcs. Unless otherwise noted, the new episodes are 45 minutes long.

      +

      Due to the BBC's 1970s junking policy, 97 episodes from the 1960s are missing, with the result that 26 serials are incomplete, although all of these still exist as audio recordings, and some have been reconstructed. In the first two seasons and most of the third, each episode of a serial had an individual title; no serial had an overall on-screen title until The Savages. The serial titles given below are the most common title for the serials as a whole, used in sources such as the Doctor Who Reference Guide and the BBC's classic episode guide, and are generally those used for commercial release. The practice of individually titled episodes resurfaced with the show's 2005 revival, when Doctor Who‍‍ '​‍s serial nature was abandoned in favour of an episodic format.

      +

      The three-digit story numbers are not official designations but are merely to serve as a guide to where the story stands in the overall context of the programme. There is some dispute about, for example, whether to count Season 23's The Trial of a Time Lord as one or four serials,[2] and whether the uncompleted Shada should be included.[3] The numbering scheme used here reflects the current internal practice of describing "Planet of the Dead" (2009) as the 200th story, used in the official magazine's 407th issue.[4] Other sources, such as the Region 1 DVDs of classic Doctor Who serials, use different numbering schemes which diverge after the 108th story, The Horns of Nimon (1979/80).

      + +

      Overview

      +

      The following table dictates the season or series in question; singular specials are not included in episode counts or viewer totals.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Season/SeriesDoctor(s)SerialsEpisodesOriginally airedViewers (millions)
      First airedLast airedPremiereFinaleAverage
      Season 1First Doctor84223 November 196312 September 19644.46.47.96
      Season 293931 October 196424 July 19658.48.310.38
      Season 3104511 September 196516 July 19669.05.57.38
      Season 4 (c)First/Second Doctor94310 September 19661 July 19674.36.17.11
      Season 5Second Doctor7402 September 19671 June 19686.06.56.63
      Season 674410 August 196821 June 19696.15.06.57
      Season 7Third Doctor4253 January 197020 June 19708.45.57.18
      Season 85252 January 197119 June 19717.38.37.96
      Season 95261 January 197224 June 19729.87.68.48
      Season 1052630 December 197223 June 19739.67.08.98
      Season 1152615 December 19738 June 19748.78.98.78
      Season 12Fourth Doctor52028 December 197410 May 197510.19.010.14
      Season 1362630 August 19756 March 19767.510.910.08
      Season 146264 September 19762 April 19779.510.411.17
      Season 156263 September 197711 March 19788.410.58.91
      Season 16[note 1]6262 September 197824 February 19798.18.58.56
      Season 175[note 2]201 September 197912 January 198013.58.811.22
      Season 1872830 August 198021 March 19815.16.75.81
      Season 19Fifth Doctor7264 January 198230 March 19829.68.99.30
      Season 206224 January 198316 March 19837.27.557.00
      Season 21 (c)Fifth/Sixth Doctor7245 January 198430 March 19847.257.18.37
      Season 22Sixth Doctor6135 January 198530 March 19858.057.557.17
      Season 23[note 3]4146 September 19866 December 19864.355.04.83
      Season 24Seventh Doctor4147 September 19877 December 19874.635.074.98
      Season 254145 October 19884 January 19895.355.455.35
      Season 264146 September 19896 December 19893.654.94.19
      TV movieEighth Doctor1112 May 1996N/A9.089.089.08
      Series 1Ninth Doctor101326 March 200518 June 200510.816.917.31
      Series 2Tenth Doctor101315 April 20068 July 20068.628.227.64
      Series 391331 March 200730 June 20078.718.617.54
      Series 410135 April 20085 July 20089.1410.578.04
      Specials4525 December 20081 January 201013.1012.2711.50
      Series 5Eleventh Doctor10133 April 201026 June 201010.096.707.73
      Series 6111323 April 20111 October 20118.867.677.51
      Series 713131 September 201218 May 20138.337.457.44
      Specials2223 November 201325 December 201312.8011.1411.97
      Series 8Twelfth Doctor111223 August 20148 November 20149.177.607.26
      Series 9812[5]19 September 20155 December 2015[6]6.54TBDTBD
      +

      First Doctor

      +

      The first incarnation of the Doctor was portrayed by William Hartnell. During Hartnell's tenure, the episodes was a mixture of stories set on earth of the future with extraterrestrial influence, on alien planets and in historical events without extraterrestrial influence, such as Marco Polo, one of the lost episodes. In his last story, The Tenth Planet, the Doctor gradually grew weaker to the point of collapsing at the end of the fourth episode, leading to his regeneration.

      +

      Season 1 (1963–64)

      +
      Main article: Doctor Who (season 1)
      +

      Verity Lambert was producer with David Whitaker serving as script editor.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0011An Unearthly Child
      +"An Unearthly Child"
      +"The Cave of Skulls"
      +"The Forest of Fear"
      +"The Firemaker"
      Waris HusseinAnthony Coburn
      +23 November 1963
      +30 November 1963
      +7 December 1963
      +14 December 1963
      A
      +4.4
      +5.9
      +6.9
      +6.4

      +63
      +59
      +56
      +55
      0022The Daleks
      +"The Dead Planet"
      +"The Survivors"
      +"The Escape"
      +"The Ambush"
      +"The Expedition"
      +"The Ordeal"
      +"The Rescue"
      Richard Martin and Christopher BarryTerry Nation
      +21 December 1963
      +28 December 1963
      +4 January 1964
      +11 January 1964
      +18 January 1964
      +25 January 1964
      +1 February 1964
      B
      +6.9
      +6.4
      +8.9
      +9.9
      +9.9
      +10.4
      +10.4

      +59
      +58
      +63
      +63
      +63
      +63
      +65
      0033The Edge of Destruction
      +"The Edge of Destruction"
      +"The Brink of Disaster"
      Richard Martin
      +& Frank Cox
      David Whitaker
      +8 February 1964
      +15 February 1964
      C
      +10.4
      +9.9

      +61
      +60
      0044Marco Polo
      +"The Roof of the World"
      +"The Singing Sands"
      +"Five Hundred Eyes"
      +"The Wall of Lies"
      +"Rider from Shang-Tu"
      +"Mighty Kublai Khan"
      +"Assassin at Peking"
      Waris Hussein and John CrockettJohn Lucarotti
      +22 February 1964
      +29 February 1964
      +7 March 1964
      +14 March 1964
      +21 March 1964
      +28 March 1964
      +4 April 1964
      D
      +9.4
      +9.4
      +9.4
      +9.9
      +9.4
      +8.4
      +10.4

      +63
      +62
      +62
      +60
      +59
      +59
      +59
      0055The Keys of Marinus
      +"The Sea of Death"
      +"The Velvet Web"
      +"The Screaming Jungle"
      +"The Snows of Terror"
      +"Sentence of Death"
      +"The Keys of Marinus"
      John GorrieTerry Nation
      +11 April 1964
      +18 April 1964
      +25 April 1964
      +2 May 1964
      +9 May 1964
      +16 May 1964
      E
      +9.9
      +9.4
      +9.9
      +10.4
      +7.9
      +6.9

      +62
      +60
      +61
      +60
      +61
      +63
      0066The Aztecs
      +"The Temple of Evil"
      +"The Warriors of Death"
      +"The Bride of Sacrifice"
      +"The Day of Darkness"
      John CrockettJohn Lucarotti
      +23 May 1964
      +30 May 1964
      +6 June 1964
      +13 June 1964
      F
      +7.4
      +7.4
      +7.9
      +7.4

      +62
      +62
      +57
      +58
      0077The Sensorites
      +"Strangers in Space"
      +"The Unwilling Warriors"
      +"Hidden Danger"
      +"A Race Against Death"
      +"Kidnap"
      +"A Desperate Venture"
      Mervyn Pinfield and Frank CoxPeter R. Newman
      +20 June 1964
      +27 June 1964
      +11 July 1964
      +18 July 1964
      +25 July 1964
      +1 August 1964
      G
      +7.9
      +6.9
      +7.4
      +5.5
      +6.9
      +6.9

      +59
      +59
      +56
      +60
      +57
      +57
      0088The Reign of Terror
      +"A Land of Fear"
      +"Guests of Madame Guillotine"
      +"A Change of Identity"
      +"The Tyrant of France"
      +"A Bargain of Necessity"
      +"Prisoners of Conciergerie"
      Henric Hirsch and John GorrieDennis Spooner
      +8 August 1964
      +15 August 1964
      +22 August 1964
      +29 August 1964
      +5 September 1964
      +12 September 1964
      H
      +6.9
      +6.9
      +6.9
      +6.4
      +6.9
      +6.4

      +58
      +54
      +55
      +53
      +53
      +55
      +

      ^† Episodes are missing

      +

      Season 2 (1964–65)

      +
      Main article: Doctor Who (season 2)
      +

      Dennis Spooner replaced David Whitaker as script editor after The Dalek Invasion of Earth, and edited the remainder of the season apart from The Time Meddler, which was edited by Donald Tosh.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0091Planet of Giants
      +"Planet of Giants"
      +"Dangerous Journey"
      +"Crisis"
      Mervyn Pinfield and Douglas CamfieldLouis Marks
      +31 October 1964
      +7 November 1964
      +14 November 1964
      J
      +8.4
      +8.4
      +8.9

      +57
      +58
      +59
      0102The Dalek Invasion of Earth
      +"World's End"
      +"The Daleks"
      +"Day of Reckoning"
      +"The End of Tomorrow"
      +"The Waking Ally"
      +"Flashpoint"
      Richard MartinTerry Nation
      +21 November 1964
      +28 November 1964
      +5 December 1964
      +12 December 1964
      +19 December 1964
      +26 December 1964
      K
      +11.4
      +12.4
      +11.9
      +11.9
      +11.4
      +12.4

      +63
      +59
      +59
      +59
      +58
      +63
      0113The Rescue
      +"The Powerful Enemy"
      +"Desperate Measures"
      Christopher BarryDavid Whitaker
      +2 January 1965
      +9 January 1965
      L
      +12.0
      +13.0

      +57
      +59
      0124The Romans
      +"The Slave Traders"
      +"All Roads Lead to Rome"
      +"Conspiracy"
      +"Inferno"
      Christopher BarryDennis Spooner
      +16 January 1965
      +23 January 1965
      +30 January 1965
      +6 February 1965
      M
      +13.0
      +11.5
      +10.0
      +12.0

      +53
      +51
      +50
      +50
      0135The Web Planet
      +"The Web Planet"
      +"The Zarbi"
      +"Escape to Danger"
      +"Crater of Needles"
      +"Invasion"
      +"The Centre"
      Richard MartinBill Strutton
      +13 February 1965
      +20 February 1965
      +27 February 1965
      +6 March 1965
      +13 March 1965
      +20 March 1965
      N
      +13.5
      +12.5
      +12.5
      +13.0
      +12.0
      +11.5

      +56
      +53
      +53
      +49
      +48
      +42
      0146The Crusade
      +"The Lion"
      +"The Knight of Jaffa"
      +"The Wheel of Fortune"
      +"The Warlords"
      Douglas CamfieldDavid Whitaker
      +27 March 1965
      +3 April 1965
      +10 April 1965
      +17 April 1965
      P
      +10.5
      +8.5
      +9.0
      +9.5

      +51
      +50
      +49
      +48
      0157The Space Museum
      +"The Space Museum"
      +"The Dimensions of Time"
      +"The Search"
      +"The Final Phase"
      Mervyn PinfieldGlyn Jones
      +24 April 1965
      +1 May 1965
      +8 May 1965
      +15 May 1965
      Q
      +10.5
      +9.2
      +8.5
      +8.5

      +61
      +53
      +56
      +49
      0168The Chase
      +"The Executioners"
      +"The Death of Time"
      +"Flight Through Eternity"
      +"Journey into Terror"
      +"The Death of Doctor Who"
      +"The Planet of Decision"
      Richard Martin and Douglas CamfieldTerry Nation
      +22 May 1965
      +29 May 1965
      +5 June 1965
      +12 June 1965
      +19 June 1965
      +26 June 1965
      R
      +10.0
      +9.5
      +9.0
      +9.5
      +9.0
      +9.5

      +57
      +56
      +55
      +54
      +56
      +57
      0179The Time Meddler
      +"The Watcher"
      +"The Meddling Monk"
      +"A Battle of Wits"
      +"Checkmate"
      Douglas CamfieldDennis Spooner
      +3 July 1965
      +10 July 1965
      +17 July 1965
      +24 July 1965
      S
      +8.9
      +8.8
      +7.7
      +8.3

      +57
      +49
      +53
      +54
      +

      ^† Episodes are missing

      +

      Season 3 (1965–66)

      +
      Main article: Doctor Who (season 3)
      +

      John Wiles replaced Verity Lambert as producer after Mission to the Unknown. Innes Lloyd, in turn, replaced Wiles after The Ark. Donald Tosh continued as script editor until The Massacre of St Bartholomew's Eve, which was also script-edited by his replacement, Gerry Davis. The practice of giving each individual episode a different title was abandoned after The Gunfighters, near the end of the season.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0181Galaxy 4
      +"Four Hundred Dawns"
      +"Trap of Steel"
      +"Air Lock"
      +"The Exploding Planet"
      Derek Martinus and Mervyn PinfieldWilliam Emms
      +11 September 1965
      +18 September 1965
      +25 September 1965
      +2 October 1965
      T
      +9.0
      +9.5
      +11.3
      +9.9

      +56
      +55
      +54
      +53
      0192"Mission to the Unknown"Derek MartinusTerry Nation9 October 1965T/A8.354
      0203The Myth Makers
      +"Temple of Secrets"
      +"Small Prophet, Quick Return"
      +"Death of a Spy"
      +"Horse of Destruction"
      Michael Leeston-SmithDonald Cotton
      +16 October 1965
      +23 October 1965
      +30 October 1965
      +6 November 1965
      U
      +8.3
      +8.1
      +8.7
      +8.3

      +48
      +51
      +49
      +52
      0214The Daleks' Master Plan
      +"The Nightmare Begins"
      +"Day of Armageddon"
      +"Devil's Planet"
      +"The Traitors"
      +"Counter Plot"
      +"Coronas of the Sun"
      +"The Feast of Steven"
      +"Volcano"
      +"Golden Death"
      +"Escape Switch"
      +"The Abandoned Planet"
      +"Destruction of Time"
      Douglas CamfieldTerry Nation and Dennis Spooner
      +13 November 1965
      +20 November 1965
      +27 November 1965
      +4 December 1965
      +11 December 1965
      +18 December 1965
      +25 December 1965
      +1 January 1966
      +8 January 1966
      +15 January 1966
      +22 January 1966
      +29 January 1966
      V
      +9.1
      +9.8
      +10.3
      +9.5
      +9.9
      +9.1
      +7.9
      +9.6
      +9.2
      +9.5
      +9.8
      +8.6

      +54
      +52
      +52
      +51
      +53
      +56
      +39
      +49
      +52
      +50
      +49
      +57
      0225The Massacre of St Bartholomew's Eve
      +"War of God"
      +"The Sea Beggar"
      +"Priest of Death"
      +"Bell of Doom"
      Paddy RussellJohn Lucarotti and Donald Tosh
      +5 February 1966
      +12 February 1966
      +19 February 1966
      +26 February 1966
      W
      +8.0
      +6.0
      +5.9
      +5.8

      +52
      +52
      +49
      +53
      0236The Ark
      +"The Steel Sky"
      +"The Plague"
      +"The Return"
      +"The Bomb"
      Michael ImisonPaul Erickson and Lesley Scott
      +5 March 1966
      +12 March 1966
      +19 March 1966
      +26 March 1966
      X
      +5.5
      +6.9
      +6.2
      +7.3

      +55
      +56
      +51
      +50
      0247The Celestial Toymaker
      +"The Celestial Toyroom"
      +"The Hall of Dolls"
      +"The Dancing Floor"
      +"The Final Test"
      Bill SellarsBrian Hayles and Donald Tosh
      +2 April 1966
      +9 April 1966
      +16 April 1966
      +23 April 1966
      Y
      +8.0
      +8.0
      +9.4
      +7.8

      +48
      +49
      +44
      +43
      0258The Gunfighters
      +"A Holiday for the Doctor"
      +"Don't Shoot the Pianist"
      +"Johnny Ringo"
      +"The OK Corral"
      Rex TuckerDonald Cotton
      +30 April 1966
      +7 May 1966
      +14 May 1966
      +21 May 1966
      Z
      +6.5
      +6.6
      +6.2
      +5.7

      +45
      +39
      +36
      +30
      0269The Savages
      +(all episodes missing)
      Christopher BarryIan Stuart Black
      +28 May 1966
      +4 June 1966
      +11 June 1966
      +18 June 1966
      AA
      +4.8
      +5.6
      +5.0
      +4.5

      +48
      +49
      +48
      +48
      02710The War MachinesMichael FergusonIan Stuart Black and Kit Pedler
      +25 June 1966
      +2 July 1966
      +9 July 1966
      +16 July 1966
      BB
      +5.4
      +4.7
      +5.3
      +5.5

      +49
      +45
      +44
      +39
      +

      ^† : Episode is missing

      +

      Season 4 (1966–67)

      +
      Main article: Doctor Who (season 4)
      +

      The Smugglers and The Tenth Planet were the last serials to star the First Doctor, his regeneration to the Second occurring in the latter. Peter Bryant joined as associate producer for The Faceless Ones, and replaced Gerry Davis as script editor for the last four episodes of The Evil of the Daleks.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StorySerialTitleDirected byWritten byOriginal air dateProduction
      +code
      UK viewers
      +(million) [7]
      AI [7]
      0281The Smugglers
      +(all episodes missing)
      Julia SmithBrian Hayles10 September 1966
      +17 September 1966
      +24 September 1966
      +1 October 1966
      CC4.3
      +4.9
      +4.2
      +4.5
      47
      +45
      +43
      +43
      0292The Tenth Planet
      +(episode 4 missing)
      Derek MartinusKit Pedler and Gerry Davis8 October 1966
      +15 October 1966
      +22 October 1966
      +29 October 1966
      DD5.5
      +6.4
      +7.6
      +7.5
      50
      +48
      +48
      +47
      +

      Second Doctor

      +

      The Second Doctor was portrayed by Patrick Troughton, whose serials were more action-oriented than those of his predecessor. Additionally, after The Highlanders, stories moved away from the purely historical ones that featured during William Hartnell's tenure; instead, any historical tales also included a science fiction element. Patrick Troughton retained the role until the last episode of The War Games when members of the Doctor's race, the Time Lords, put him on trial for breaking the laws of time and forced him to regenerate.

      +

      Season 4 (1966–67) continued

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StorySerialTitleDirected byWritten byOriginal air dateProduction
      +code
      UK viewers
      +(million) [7]
      AI [7]
      0303The Power of the Daleks
      +(all episodes missing)
      Christopher BarryDavid Whitaker and Dennis Spooner5 November 1966
      +12 November 1966
      +19 November 1966
      +26 November 1966
      +3 December 1966
      +10 December 1966
      EE7.9
      +7.8
      +7.5
      +7.8
      +8.0
      +7.8
      43
      +45
      +44
      +47
      +48
      +47
      0314The Highlanders
      +(all episodes missing)
      Hugh DavidElwyn Jones and Gerry Davis17 December 1966
      +24 December 1966
      +31 December 1966
      +7 January 1967
      FF6.7
      +6.8
      +7.4
      +7.3
      47
      +46
      +47
      +47
      0325The Underwater Menace
      +(episodes 1 & 4 missing)
      Julia SmithGeoffrey Orme14 January 1967
      +21 January 1967
      +28 January 1967
      +4 February 1967
      GG8.3
      +7.5
      +7.1
      +7.0
      48
      +46
      +45
      +47
      0336The Moonbase
      +(episodes 1 & 3 missing)
      Morris BarryKit Pedler11 February 1967
      +18 February 1967
      +25 February 1967
      +4 March 1967
      HH8.1
      +8.9
      +8.2
      +8.1
      50
      +49
      +53
      +58
      0347The Macra Terror
      +(all episodes missing)
      John DaviesIan Stuart Black11 March 1967
      +18 March 1967
      +25 March 1967
      +1 April 1967
      JJ8.0
      +7.9
      +8.5
      +8.4
      50
      +48
      +52
      +49
      0358The Faceless Ones
      +(episodes 2, 4, 5 & 6 missing)
      Gerry MillDavid Ellis and Malcolm Hulke8 April 1967
      +15 April 1967
      +22 April 1967
      +29 April 1967
      +6 May 1967
      +13 May 1967
      KK8.0
      +6.4
      +7.9
      +6.9
      +7.1
      +8.0
      51
      +50
      +53
      +55
      +55
      +52
      0369The Evil of the Daleks
      +(episodes 1, 3 - 7 missing)
      Derek MartinusDavid Whitaker20 May 1967
      +27 May 1967
      +3 June 1967
      +10 June 1967
      +17 June 1967
      +24 June 1967
      +1 July 1967
      LL8.1
      +7.5
      +6.1
      +5.3
      +5.1
      +6.8
      +6.1
      51
      +51
      +52
      +51
      +53
      +49
      +56
      +

      Season 5 (1967–68)

      +
      Main article: Doctor Who (season 5)
      +

      Victor Pemberton was script editor for The Tomb of the Cybermen, with Peter Bryant as producer. After this, Bryant resumed the role of script editor, with Innes Lloyd returning as producer, until The Web of Fear when Bryant took over from Lloyd as producer. Derrick Sherwin replaced Bryant as script editor at the same time.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0371The Tomb of the CybermenMorris BarryKit Pedler and Gerry Davis2 September 1967
      +9 September 1967
      +16 September 1967
      +23 September 1967
      MM6.0
      +6.4
      +7.2
      +7.4
      53
      +52
      +49
      +50
      0382The Abominable Snowmen
      +(Episodes 1, 3, 4, 5 & 6 missing)
      Gerald BlakeMervyn Haisman
      +and Henry Lincoln
      30 September 1967
      +7 October 1967
      +14 October 1967
      +21 October 1967
      +28 October 1967
      +4 November 1967
      NN6.3
      +6.0
      +7.1
      +7.1
      +7.2
      +7.4
      50
      +52
      +51
      +50
      +51
      +52
      0393The Ice Warriors
      +(Episodes 2 & 3 missing)
      Derek MartinusBrian Hayles11 November 1967
      +18 November 1967
      +25 November 1967
      +2 December 1967
      +9 December 1967
      +16 December 1967
      OO6.7
      +7.1
      +7.4
      +7.3
      +8.0
      +7.5
      52
      +52
      +51
      +51
      +50
      +51
      0404The Enemy of the WorldBarry LettsDavid Whitaker23 December 1967
      +30 December 1967
      +6 January 1968
      +13 January 1968
      +20 January 1968
      +27 January 1968
      PP6.8
      +7.6
      +7.1
      +7.8
      +6.9
      +8.3
      50
      +49
      +48
      +49
      +49
      +52
      0415The Web of Fear
      +(Episode 3 missing)
      Douglas CamfieldMervyn Haisman and Henry Lincoln3 February 1968
      +10 February 1968
      +17 February 1968
      +24 February 1968
      +2 March 1968
      +9 March 1968
      QQ7.2
      +6.8
      +7.0
      +8.4
      +8.0
      +8.3
      54
      +53
      +51
      +53
      +55
      +55
      0426Fury from the Deep
      +(All episodes missing)
      Hugh DavidVictor Pemberton16 March 1968
      +23 March 1968
      +30 March 1968
      +6 April 1968
      +13 April 1968
      +20 April 1968
      RR8.2
      +7.9
      +7.7
      +6.6
      +5.9
      +6.9
      55
      +55
      +56
      +56
      +56
      +57
      0437The Wheel in Space
      +(Episodes 1, 2, 4 & 5 missing)
      Tristan DeVere ColeDavid Whitaker and Kit Pedler27 April 1968
      +4 May 1968
      +11 May 1968
      +18 May 1968
      +25 May 1968
      +1 June 1968
      SS7.2
      +6.9
      +7.5
      +8.6
      +6.8
      +6.5
      57
      +60
      +55
      +56
      +57
      +62
      +

      Season 6 (1968–69)

      +
      Main article: Doctor Who (season 6)
      +

      Terrance Dicks took over from Derrick Sherwin as script editor from The Invasion, with Sherwin resuming the role for The Space Pirates. Derrick Sherwin took over as producer from Peter Bryant for The War Games.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0441The DominatorsMorris BarryNorman Ashby (Mervyn Haisman and Henry Lincoln)10 August 1968
      +17 August 1968
      +24 August 1968
      +31 August 1968
      +7 September 1968
      TT6.1
      +5.9
      +5.4
      +7.5
      +5.9
      52
      +55
      +55
      +51
      +53
      0452The Mind RobberDavid MaloneyPeter Ling and Derrick Sherwin14 September 1968
      +21 September 1968
      +28 September 1968
      +5 October 1968
      +12 October 1968
      UU6.6
      +6.5
      +7.2
      +7.3
      +6.7
      51
      +49
      +53
      +56
      +49
      0463The Invasion
      +(Episodes 1 & 4 missing)
      Douglas CamfieldDerrick Sherwin and Kit Pedler2 November 1968
      +9 November 1968
      +16 November 1968
      +23 November 1968
      +30 November 1968
      +7 December 1968
      +14 December 1968
      +21 December 1968
      VV7.3
      +7.1
      +7.1
      +6.4
      +6.7
      +6.5
      +7.2
      +7.0
      55
      +53
      +54
      +51
      +52
      +56
      +55
      +53
      0474The KrotonsDavid MaloneyRobert Holmes28 December 1968
      +4 January 1969
      +11 January 1969
      +18 January 1969
      WW9.0
      +8.4
      +7.5
      +7.1
      59
      +57
      +56
      +55
      0485The Seeds of DeathMichael FergusonBrian Hayles and Terrance Dicks25 January 1969
      +1 February 1969
      +8 February 1969
      +15 February 1969
      +22 February 1969
      +1 March 1969
      XX6.6
      +6.8
      +7.5
      +7.1
      +7.6
      +7.7
      57
      +59
      +55
      +55
      +57
      +59
      0496The Space Pirates
      +(Episodes 1, 3, 4, 5 & 6 missing)
      Michael HartRobert Holmes8 March 1969
      +15 March 1969
      +22 March 1969
      +29 March 1969
      +5 April 1969
      +12 April 1969
      YY5.8
      +6.8
      +6.4
      +5.8
      +5.5
      +5.3
      57
      +52
      +55
      +53
      +56
      +52
      0507The War GamesDavid MaloneyTerrance Dicks and Malcolm Hulke19 April 1969
      +26 April 1969
      +3 May 1969
      +10 May 1969
      +17 May 1969
      +24 May 1969
      +31 May 1969
      +7 June 1969
      +14 June 1969
      +21 June 1969
      ZZ5.5
      +6.3
      +5.1
      +5.7
      +5.1
      +4.2
      +4.9
      +3.5
      +4.1
      +5.0
      55
      +54
      +53
      +50
      +53
      +53
      +53
      +53
      +57
      +58
      +

      Third Doctor

      +

      The Third Doctor was portrayed by Jon Pertwee. Sentenced to exile on Earth and forcibly regenerated at the end of The War Games, the Doctor spent his time working for UNIT. After The Three Doctors, the Time Lords repealed his exile; however, the Doctor still worked closely with UNIT from time to time. The Third Doctor regenerated into his fourth incarnation as a result of radiation poisoning in the last moments of Planet of the Spiders.

      +

      Season 7 (1970)

      +
      Main article: Doctor Who (season 7)
      +

      Barry Letts took over as producer from Derrick Sherwin after Spearhead from Space. From this season onwards the programme was produced in colour. To accommodate the new production methods the number of episodes in a season was cut: season 6 has 44 episodes; season 7 has 25 episodes. The seasons would continue to have between 20 and 28 episodes until season 22.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0511Spearhead from SpaceDerek MartinusRobert Holmes3 January 1970
      +10 January 1970
      +17 January 1970
      +24 January 1970
      AAA8.4
      +8.1
      +8.3
      +8.1
      54
      +—
      +—
      +57
      0522Doctor Who and the SiluriansTimothy CombeMalcolm Hulke31 January 1970
      +7 February 1970
      +14 February 1970
      +21 February 1970
      +28 February 1970
      +7 March 1970
      +14 March 1970
      BBB8.8
      +7.3
      +7.5
      +8.2
      +7.5
      +7.2
      +7.5
      58
      +58
      +57
      +60
      +58
      +57
      +58
      0533The Ambassadors of DeathMichael FergusonDavid Whitaker, Trevor Ray and Malcolm Hulke21 March 1970
      +28 March 1970
      +4 April 1970
      +11 April 1970
      +18 April 1970
      +25 April 1970
      +2 May 1970
      CCC7.1
      +7.6
      +8.0
      +9.3
      +7.1
      +6.9
      +6.4
      60
      +61
      +59
      +58
      +—
      +61
      +62
      0544InfernoDouglas Camfield and Barry LettsDon Houghton9 May 1970
      +16 May 1970
      +23 May 1970
      +30 May 1970
      +6 June 1970
      +13 June 1970
      +20 June 1970
      DDD5.7
      +5.9
      +4.8
      +6.0
      +5.4
      +6.7
      +5.5
      61
      +61
      +60
      +60
      +—
      +58
      +60
      +

      Season 8 (1971)

      +
      Main article: Doctor Who (season 8)
      +

      This season forms a loose arc with the introduction of the Master, the villain in each of the season's storylines, and introduces the companion Jo Grant.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0551Terror of the AutonsBarry LettsRobert Holmes2 January 1971
      +9 January 1971
      +16 January 1971
      +23 January 1971
      EEE7.3
      +8.0
      +8.1
      +8.4
      0562The Mind of EvilTimothy CombeDon Houghton30 January 1971
      +6 February 1971
      +13 February 1971
      +20 February 1971
      +27 February 1971
      +6 March 1971
      FFF6.1
      +8.8
      +7.5
      +7.4
      +7.6
      +7.3
      0573The Claws of AxosMichael FergusonBob Baker and Dave Martin13 March 1971
      +20 March 1971
      +27 March 1971
      +3 April 1971
      GGG7.3
      +8.0
      +6.4
      +7.8
      0584Colony in SpaceMichael E. BriantMalcolm Hulke10 April 1971
      +17 April 1971
      +24 April 1971
      +1 May 1971
      +8 May 1971
      +15 May 1971
      HHH7.6
      +8.5
      +9.5
      +8.1
      +8.8
      +8.7
      0595The DæmonsChristopher BarryGuy Leopold (Robert Sloman and Barry Letts)22 May 1971
      +29 May 1971
      +5 June 1971
      +12 June 1971
      +19 June 1971
      JJJ9.2
      +8.0
      +8.1
      +8.1
      +8.3
      +

      Season 9 (1972)

      +
      Main article: Doctor Who (season 9)
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0601Day of the DaleksPaul BernardLouis Marks1 January 1972
      +8 January 1972
      +15 January 1972
      +22 January 1972
      KKK9.8
      +10.4
      +9.1
      +9.1
      0612The Curse of PeladonLennie MayneBrian Hayles29 January 1972
      +5 February 1972
      +12 February 1972
      +19 February 1972
      MMM10.3
      +11.0
      +7.8
      +8.4
      0623The Sea DevilsMichael E. BriantMalcolm Hulke26 February 1972
      +4 March 1972
      +11 March 1972
      +18 March 1972
      +25 March 1972
      +1 April 1972
      LLL6.4
      +9.7
      +8.3
      +7.8
      +8.3
      +8.5
      0634The MutantsChristopher BarryBob Baker and Dave Martin8 April 1972
      +15 April 1972
      +22 April 1972
      +29 April 1972
      +6 May 1972
      +13 May 1972
      NNN9.1
      +7.8
      +7.9
      +7.5
      +7.9
      +6.5
      0645The Time MonsterPaul BernardRobert Sloman and Barry Letts20 May 1972
      +27 May 1972
      +3 June 1972
      +10 June 1972
      +17 June 1972
      +24 June 1972
      OOO7.6
      +7.4
      +8.1
      +7.6
      +6.0
      +7.6
      +

      Season 10 (1972–73)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0651The Three DoctorsLennie MayneBob Baker and Dave Martin30 December 1972
      +6 January 1973
      +13 January 1973
      +20 January 1973
      RRR9.6
      +10.8
      +8.8
      +11.9
      0662Carnival of MonstersBarry LettsRobert Holmes27 January 1973
      +3 February 1973
      +10 February 1973
      +17 February 1973
      PPP9.5
      +9.0
      +9.0
      +9.2
      0673Frontier in SpacePaul BernardMalcolm Hulke24 February 1973
      +3 March 1973
      +10 March 1973
      +17 March 1973
      +24 March 1973
      +31 March 1973
      QQQ9.1
      +7.8
      +7.5
      +7.1
      +7.7
      +8.9
      0684Planet of the DaleksDavid MaloneyTerry Nation7 April 1973
      +14 April 1973
      +21 April 1973
      +28 April 1973
      +5 May 1973
      +12 May 1973
      SSS11.0
      +10.7
      +10.1
      +8.3
      +9.7
      +8.5
      0695The Green DeathMichael E. BriantRobert Sloman and Barry Letts19 May 1973
      +26 May 1973
      +2 June 1973
      +9 June 1973
      +16 June 1973
      +23 June 1973
      TTT9.2
      +7.2
      +7.8
      +6.8
      +8.3
      +7.0
      +

      Season 11 (1973–74)

      + +

      This season introduces the companion Sarah Jane Smith.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0701The Time WarriorAlan BromlyRobert Holmes15 December 1973
      +22 December 1973
      +29 December 1973
      +5 January 1974
      UUU8.7
      +7.0
      +6.6
      +10.6
      59
      +—
      +—
      +60
      0712Invasion of the DinosaursPaddy RussellMalcolm Hulke12 January 1974
      +19 January 1974
      +26 January 1974
      +2 February 1974
      +9 February 1974
      +16 February 1974
      WWW11.0
      +10.1
      +11.0
      +9.0
      +9.0
      +7.5
      62
      +—
      +63
      +—
      +—
      +62
      0723Death to the DaleksMichael E. BriantTerry Nation23 February 1974
      +2 March 1974
      +9 March 1974
      +16 March 1974
      XXX8.1
      +9.5
      +10.5
      +9.5
      61
      +—
      +61
      +62
      0734The Monster of PeladonLennie MayneBrian Hayles23 March 1974
      +30 March 1974
      +6 April 1974
      +13 April 1974
      +20 April 1974
      +27 April 1974
      YYY9.2
      +6.8
      +7.4
      +7.2
      +7.5
      +8.1
      0745Planet of the SpidersBarry LettsRobert Sloman and Barry Letts4 May 1974
      +11 May 1974
      +18 May 1974
      +25 May 1974
      +1 June 1974
      +8 June 1974
      ZZZ10.1
      +8.9
      +8.8
      +8.2
      +9.2
      +8.9
      58
      +60
      +57
      +—
      +—
      +56
      +

      Fourth Doctor

      +

      The Fourth Doctor was portrayed by Tom Baker. He is, to date, the actor who has played the Doctor on television for the longest time,[8] having held the role for seven seasons.

      +

      Season 12 (1974–75)

      + +

      Barry Letts served as producer for Robot, after which he was succeeded by Philip Hinchcliffe. Robert Holmes took over from Terrance Dicks as script editor. All serials in this season continue directly one after the other, tracing one single problematic voyage of the TARDIS crew. Despite the continuity, each serial is considered its own standalone story. This season also introduced the character of Harry Sullivan as a companion; this character was intended to undertake action scenes, during the period prior to Tom Baker being cast, when it was unclear how old the actor playing the new Doctor would be.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0751RobotChristopher BarryTerrance Dicks28 December 1974
      +4 January 1975
      +11 January 1975
      +18 January 1975
      4A10.8
      +10.7
      +10.1
      +9.0
      53
      +53
      +—
      +51
      0762The Ark in SpaceRodney BennettRobert Holmes25 January 1975
      +1 February 1975
      +8 February 1975
      +15 February 1975
      4C9.4
      +13.6
      +11.2
      +10.2
      0773The Sontaran ExperimentRodney BennettBob Baker and Dave Martin22 February 1975
      +1 March 1975
      4B11.0
      +10.5

      +55
      0784Genesis of the DaleksDavid MaloneyTerry Nation8 March 1975
      +15 March 1975
      +22 March 1975
      +29 March 1975
      +5 April 1975
      +12 April 1975
      4E10.7
      +10.5
      +8.5
      +8.8
      +9.8
      +9.1

      +57
      +—
      +58
      +57
      +56
      0795Revenge of the CybermenMichael E. BriantGerry Davis19 April 1975
      +26 April 1975
      +3 May 1975
      +10 May 1975
      4D9.5
      +8.3
      +8.9
      +9.4
      57
      +—
      +—
      +58
      +

      Season 13 (1975–76)

      + +

      During this season, Ian Marter (Harry Sullivan) left after Terror of the Zygons, but returned for a guest appearance in The Android Invasion. Terror of the Zygons also saw the last semi-regular appearance of Nicholas Courtney (Brigadier Lethbridge-Stewart) who would not return until Season 20 in Mawdryn Undead.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0801Terror of the ZygonsDouglas CamfieldRobert Banks Stewart30 August 1975
      +6 September 1975
      +13 September 1975
      +20 September 1975
      4F8.4
      +6.1
      +8.2
      +7.2
      59
      +—
      +54
      +—
      0812Planet of EvilDavid MaloneyLouis Marks27 September 1975
      +4 October 1975
      +11 October 1975
      +18 October 1975
      4H10.4
      +9.9
      +9.1
      +10.1

      +56
      +57
      +54
      0823Pyramids of MarsPaddy RussellStephen Harris (Lewis Greifer and Robert Holmes)25 October 1975
      +1 November 1975
      +8 November 1975
      +15 November 1975
      4G10.5
      +11.3
      +9.4
      +11.7

      +—
      +—
      +60
      0834The Android InvasionBarry LettsTerry Nation22 November 1975
      +29 November 1975
      +6 December 1975
      +13 December 1975
      4J11.9
      +11.3
      +12.1
      +11.4
      58
      +—
      +—
      +—
      0845The Brain of MorbiusChristopher BarryRobin Bland (Terrance Dicks and Robert Holmes)3 January 1976
      +10 January 1976
      +17 January 1976
      +24 January 1976
      4K9.5
      +9.3
      +10.1
      +10.2

      +—
      +57
      +—
      0856The Seeds of DoomDouglas CamfieldRobert Banks Stewart31 January 1976
      +7 February 1976
      +14 February 1976
      +21 February 1976
      +28 February 1976
      +6 March 1976
      4L11.4
      +11.4
      +10.3
      +11.1
      +9.9
      +11.5
      59
      +—
      +—
      +—
      +—
      +—
      +

      Season 14 (1976–77)

      + +

      Elizabeth Sladen (Sarah Jane Smith) left the series this season and was replaced by Louise Jameson (Leela). The season also saw the first story in which the Doctor did not have a companion, The Deadly Assassin.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0861The Masque of MandragoraRodney BennettLouis Marks4 September 1976
      +11 September 1976
      +18 September 1976
      +25 September 1976
      4M8.3
      +9.8
      +9.2
      +10.6
      58
      +56
      +—
      +56
      0872The Hand of FearLennie MayneBob Baker and Dave Martin2 October 1976
      +9 October 1976
      +16 October 1976
      +23 October 1976
      4N10.5
      +10.2
      +11.1
      +12.0

      +—
      +62
      +—
      0883The Deadly AssassinDavid MaloneyRobert Holmes30 October 1976
      +6 November 1976
      +13 November 1976
      +20 November 1976
      4P11.8
      +12.1
      +13.0
      +11.8

      +59
      +—
      +61
      0894The Face of EvilPennant RobertsChris Boucher1 January 1977
      +8 January 1977
      +15 January 1977
      +22 January 1977
      4Q10.7
      +11.1
      +11.3
      +11.7
      61
      +—
      +59
      +60
      0905The Robots of DeathMichael E. BriantChris Boucher29 January 1977
      +5 February 1977
      +12 February 1977
      +19 February 1977
      4R12.8
      +12.4
      +13.1
      +12.6
      62
      +—
      +—
      +57
      0916The Talons of Weng-ChiangDavid MaloneyRobert Holmes26 February 1977
      +5 March 1977
      +12 March 1977
      +19 March 1977
      +26 March 1977
      +2 April 1977
      4S11.3
      +9.8
      +10.2
      +11.4
      +10.1
      +9.3

      +—
      +—
      +60
      +—
      +58
      +

      Season 15 (1977–78)

      + +

      Graham Williams took over as producer from Philip Hinchcliffe. Robert Holmes was replaced as script editor by Anthony Read during The Sun Makers.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0921Horror of Fang RockPaddy RussellTerrance Dicks3 September 1977
      +10 September 1977
      +17 September 1977
      +24 September 1977
      4V6.8
      +7.1
      +9.8
      +9.9
      58
      +—
      +60
      +57
      0932The Invisible EnemyDerrick GoodwinBob Baker and Dave Martin1 October 1977
      +8 October 1977
      +15 October 1977
      +22 October 1977
      4T8.6
      +7.3
      +7.5
      +8.3

      +—
      +—
      +60
      0943Image of the FendahlGeorge Spenton-FosterChris Boucher29 October 1977
      +5 November 1977
      +12 November 1977
      +19 November 1977
      4X6.7
      +7.5
      +7.9
      +9.1

      +—
      +—
      +61
      0954The Sun MakersPennant RobertsRobert Holmes26 November 1977
      +3 December 1977
      +10 December 1977
      +17 December 1977
      4W8.5
      +9.5
      +8.9
      +8.4

      +—
      +68
      +59
      0965UnderworldNorman StewartBob Baker and Dave Martin7 January 1978
      +14 January 1978
      +21 January 1978
      +28 January 1978
      4Y8.9
      +9.1
      +8.9
      +11.7
      65
      +—
      +—
      +—
      0976The Invasion of TimeGerald BlakeDavid Agnew
      +(Graham Williams and Anthony Read)
      4 February 1978
      +11 February 1978
      +18 February 1978
      +25 February 1978
      +4 March 1978
      +11 March 1978
      4Z11.2
      +11.4
      +9.5
      +10.9
      +10.3
      +9.8
      56
      +—
      +—
      +—
      +—
      +—
      +

      Season 16 (1978–79)

      + +

      Douglas Adams took over as script editor from Anthony Read for The Armageddon Factor. Season 16 consists of one long story arc encompassing six separate, linked stories. This season is referred to by the umbrella title The Key to Time and has been released on DVD under this title.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      0981The Ribos OperationGeorge Spenton-FosterRobert Holmes2 September 1978
      +9 September 1978
      +16 September 1978
      +23 September 1978
      5A8.3
      +8.1
      +7.9
      +8.2
      59
      +—
      +—
      +67
      0992The Pirate PlanetPennant RobertsDouglas Adams30 September 1978
      +7 October 1978
      +14 October 1978
      +21 October 1978
      5B9.1
      +7.4
      +8.2
      +8.4
      61
      +—
      +64
      +64
      1003The Stones of BloodDarrol BlakeDavid Fisher28 October 1978
      +4 November 1978
      +11 November 1978
      +18 November 1978
      5C8.6
      +6.6
      +9.3
      +7.6

      +—
      +—
      +67
      1014The Androids of TaraMichael HayesDavid Fisher25 November 1978
      +2 December 1978
      +9 December 1978
      +16 December 1978
      5D9.5
      +10.1
      +8.9
      +9.0

      +65
      +—
      +66
      1025The Power of KrollNorman StewartRobert Holmes23 December 1978
      +30 December 1978
      +6 January 1979
      +13 January 1979
      5E6.5
      +12.4
      +8.9
      +9.9

      +—
      +—
      +63
      1036The Armageddon FactorMichael HayesBob Baker and Dave Martin20 January 1979
      +27 January 1979
      +3 February 1979
      +10 February 1979
      +17 February 1979
      +24 February 1979
      5F7.5
      +8.8
      +7.8
      +8.6
      +8.6
      +9.6
      65
      +—
      +—
      +—
      +—
      +66
      +

      Season 17 (1979–80)

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1041Destiny of the DaleksKen GrieveTerry Nation1 September 1979
      +8 September 1979
      +15 September 1979
      +22 September 1979
      5J13.0
      +12.7
      +13.8
      +14.4
      67
      +—
      +63
      +64
      1052City of DeathMichael HayesDavid Agnew
      +(Douglas Adams, Graham Williams and David Fisher)
      29 September 1979
      +6 October 1979
      +13 October 1979
      +20 October 1979
      5H12.4
      +14.1
      +15.4
      +16.1

      +64
      +—
      +64
      1063The Creature from the PitChristopher BarryDavid Fisher27 October 1979
      +3 November 1979
      +10 November 1979
      +17 November 1979
      5G9.3
      +10.8
      +10.2
      +9.6

      +67
      +—
      +—
      1074Nightmare of EdenAlan BromlyBob Baker24 November 1979
      +1 December 1979
      +8 December 1979
      +15 December 1979
      5K8.7
      +9.6
      +9.6
      +9.4

      +—
      +—
      +65
      1085The Horns of NimonKenny McBainAnthony Read22 December 1979
      +29 December 1979
      +5 January 1980
      +12 January 1980
      5L6.0
      +8.8
      +9.8
      +10.4

      +—
      +—
      +67
      6ShadaPennant RobertsDouglas AdamsUnaired[note 2]5M
      +

      Season 18 (1980–81)

      + +

      John Nathan-Turner replaced Graham Williams as producer. Barry Letts returned, as executive producer, for just this season. Christopher H. Bidmead replaced Douglas Adams as script editor. In a return to the format of early seasons, virtually all serials from Seasons 18 through 20 are linked together, often running directly into each other.

      +

      Season 18 forms a loose story arc dealing with the theme of entropy. Full Circle, State of Decay, and Warriors' Gate trace the Doctor's adventures in E-Space; they were released in both VHS and DVD boxsets with the umbrella title The E-Space Trilogy.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1091The Leisure HiveLovett BickfordDavid Fisher30 August 1980
      +6 September 1980
      +13 September 1980
      +20 September 1980
      5N5.9
      +5.0
      +5.0
      +4.5

      +—
      +—
      +65
      1102MeglosTerence DudleyJohn Flanagan
      +& Andrew McCulloch
      27 September 1980
      +4 October 1980
      +11 October 1980
      +18 October 1980
      5Q5.0
      +4.2
      +4.7
      +4.7
      61
      +64
      +—
      +63
      1113Full CirclePeter GrimwadeAndrew Smith25 October 1980
      +1 November 1980
      +8 November 1980
      +15 November 1980
      5R5.9
      +3.7
      +5.9
      +5.4

      +—
      +—
      +65
      1124State of DecayPeter MoffattTerrance Dicks22 November 1980
      +29 November 1980
      +6 December 1980
      +13 December 1980
      5P5.8
      +5.3
      +4.4
      +5.4

      +—
      +—
      +69
      1135Warriors' GatePaul Joyce
      +& Graeme Harper
      Stephen Gallagher3 January 1981
      +10 January 1981
      +17 January 1981
      +24 January 1981
      5S7.1
      +6.7
      +8.3
      +7.8
      59
      +—
      +—
      +59
      1146The Keeper of TrakenJohn BlackJohnny Byrne31 January 1981
      +7 February 1981
      +14 February 1981
      +21 February 1981
      5T7.6
      +6.1
      +5.2
      +6.1

      +—
      +—
      +63
      1157LogopolisPeter GrimwadeChristopher H. Bidmead28 February 1981
      +7 March 1981
      +14 March 1981
      +21 March 1981
      5V7.7
      +7.7
      +5.8
      +6.1

      +61
      +—
      +65
      +

      Fifth Doctor

      +

      The Fifth Doctor was portrayed by Peter Davison.

      +

      Season 19 (1982)

      + +

      Antony Root took over from Bidmead as script editor for Four to Doomsday and The Visitation (the first stories produced for season 19), with Eric Saward assuming the role for the remainder of the season. The show moved from its traditional once-weekly Saturday broadcast to being broadcast twice-weekly primarily on Monday and Tuesday, although there were regional variations to the schedule.

      +

      Castrovalva, together with the previous two serials, The Keeper of Traken and Logopolis, form a trilogy involving the return of the Master. They were released on DVD under the banner title New Beginnings.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1161CastrovalvaFiona CummingChristopher H. Bidmead4 January 1982
      +5 January 1982
      +11 January 1982
      +12 January 1982
      5Z9.1
      +8.6
      +10.2
      +10.4
      1172Four to DoomsdayJohn BlackTerence Dudley18 January 1982
      +19 January 1982
      +25 January 1982
      +26 January 1982
      5W8.4
      +8.8
      +8.9
      +9.4
      1183KindaPeter GrimwadeChristopher Bailey1 February 1982
      +2 February 1982
      +8 February 1982
      +9 February 1982
      5Y8.4
      +9.4
      +8.5
      +8.9
      1194The VisitationPeter MoffattEric Saward15 February 1982
      +16 February 1982
      +22 February 1982
      +23 February 1982
      5X9.1
      +9.3
      +9.9
      +10.1
      1205Black OrchidRon JonesTerence Dudley1 March 1982
      +2 March 1982
      6A9.9
      +10.1
      1216EarthshockPeter GrimwadeEric Saward8 March 1982
      +9 March 1982
      +15 March 1982
      +16 March 1982
      6B9.1
      +8.8
      +9.8
      +9.6
      1227Time-FlightRon JonesPeter Grimwade23 March 1982
      +24 March 1982
      +30 March 1982
      +31 March 1982
      6C10.0
      +8.5
      +8.9
      +8.1
      +

      Season 20 (1983)

      + +

      To commemorate the twentieth season, the stories in this season involve the return of previous villains. Mawdryn Undead, Terminus and Enlightenment involve the Black Guardian's plot to kill the Doctor; they were released individually on VHS and as a set on DVD as parts of The Black Guardian Trilogy. This season was broadcast twice weekly on Tuesday and Wednesday evenings on BBC1.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1231Arc of InfinityRon JonesJohnny Byrne3 January 1983
      +5 January 1983
      +11 January 1983
      +12 January 1983
      6E7.2
      +7.3
      +6.9
      +7.2
      69
      +70
      +67
      +66
      1242SnakedanceFiona CummingChristopher Bailey18 January 1983
      +19 January 1983
      +25 January 1983
      +26 January 1983
      6D6.7
      +7.7
      +6.6
      +7.4
      65
      +66
      +67
      +67
      1253Mawdryn UndeadPeter MoffattPeter Grimwade1 February 1983
      +2 February 1983
      +8 February 1983
      +9 February 1983
      6F6.5
      +7.5
      +7.4
      +7.7
      67
      +70
      +67
      +68
      1264TerminusMary RidgeStephen Gallagher15 February 1983
      +16 February 1983
      +22 February 1983
      +23 February 1983
      6G6.8
      +7.5
      +6.5
      +7.4
      65
      +67
      +64
      +67
      1275EnlightenmentFiona CummingBarbara Clegg1 March 1983
      +2 March 1983
      +8 March 1983
      +9 March 1983
      6H6.6
      +7.2
      +6.2
      +7.3
      67
      +65
      +68
      +70
      1286The King's DemonsTony VirgoTerence Dudley15 March 1983
      +16 March 1983
      6J5.8
      +7.2
      65
      +63
      129The Five DoctorsPeter MoffattTerrance Dicks25 November 1983[9]6K7.775
      +

      Season 21 (1984)

      + +

      Episodes were broadcast twice weekly on Thursday and Friday evenings, with Resurrection of the Daleks broadcast on two consecutive Wednesday nights. The Caves of Androzani saw the regeneration of the Fifth Doctor, and the season finale The Twin Dilemma was the first story of the Sixth Doctor.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      StorySerialTitleDirected byWritten byOriginal air dateProduction
      +code
      UK viewers
      +(million) [7]
      AI [7]
      1301Warriors of the DeepPennant RobertsJohnny Byrne5 January 1984
      +6 January 1984
      +12 January 1984
      +13 January 1984
      6L7.6
      +7.5
      +7.3
      +6.6
      65
      +64
      +62
      +65
      1312The AwakeningMichael Owen MorrisEric Pringle19 January 1984
      +20 January 1984
      6M7.9
      +6.6
      65
      +63
      1323FrontiosRon JonesChristopher H. Bidmead26 January 1984
      +27 January 1984
      +2 February 1984
      +3 February 1984
      6N8.0
      +5.8
      +7.8
      +5.6
      66
      +69
      +65
      +65
      1334Resurrection of the DaleksMatthew RobinsonEric Saward8 February 1984
      +15 February 1984
      6P7.3
      +8.0
      69
      +65
      1345Planet of FireFiona CummingPeter Grimwade23 February 1984
      +24 February 1984
      +1 March 1984
      +2 March 1984
      6Q7.4
      +6.1
      +7.4
      +7.0
      1356The Caves of AndrozaniGraeme HarperRobert Holmes8 March 1984
      +9 March 1984
      +15 March 1984
      +16 March 1984
      6R6.9
      +6.6
      +7.8
      +7.8
      65
      +—
      +65
      +68
      +

      Sixth Doctor

      +

      The Sixth Doctor was portrayed by Colin Baker.

      +

      Season 21 (1984) continued

      + + + + + + + + + + + + + + + + + + + + + + + +
      StorySerialTitleDirected byWritten byOriginal air dateProduction
      +code
      UK viewers
      +(million) [7]
      AI [7]
      1367The Twin DilemmaPeter MoffattAnthony Steven22 March 1984
      +23 March 1984
      +29 March 1984
      +30 March 1984
      6S7.6
      +7.4
      +7.0
      +6.3
      61
      +66
      +59
      +67
      +

      Season 22 (1985)

      + +

      The series moved back to once-weekly Saturday broadcasts. All episodes were 45 minutes long, though they also exist in 25-minute versions. Although there were now only 13 episodes in the season, the total running time remained approximately the same as in previous seasons since the episodes were almost twice as long.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1371Attack of the CybermenMatthew RobinsonPaula Moore5 January 1985
      +12 January 1985
      6T8.9
      +7.2
      61
      +65
      1382Vengeance on VarosRon JonesPhilip Martin19 January 1985
      +26 January 1985
      6V7.2
      +7.0
      63
      +65
      1393The Mark of the RaniSarah HellingsPip and Jane Baker2 February 1985
      +9 February 1985
      6X6.3
      +7.3
      64
      +64
      1404The Two DoctorsPeter MoffattRobert Holmes16 February 1985
      +23 February 1985
      +2 March 1985
      6W6.6
      +6.0
      +6.9
      65
      +62
      +65
      1415TimelashPennant RobertsGlen McCoy9 March 1985
      +16 March 1985
      6Y6.7
      +7.4
      66
      +64
      1426Revelation of the DaleksGraeme HarperEric Saward23 March 1985
      +30 March 1985
      6Z7.4
      +7.7
      67
      +65
      +

      Season 23 (1986)

      + +

      After an 18-month production hiatus, the series returned. Eric Saward was script editor up to part eight, when Nathan-Turner unofficially took over script editing the remainder of the season because of Saward's departure. The whole season is titled as The Trial of a Time Lord, and is split into four segments. The segments are commonly referred to by their working titles[10] (listed below) but the season was broadcast as one fourteen-part story and the working titles did not appear on screen. Episode length returned to 25 minutes, but with only fourteen episodes in the season, making the total running time of this season (and subsequent seasons) just over half of the previous seasons, going back to season 7.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      143a1The Mysterious PlanetNicholas MallettRobert Holmes6 September 1986
      +13 September 1986
      +20 September 1986
      +27 September 1986
      7A4.9
      +4.9
      +3.9
      +3.7
      72
      +69
      +70
      +72
      143b2MindwarpRon JonesPhilip Martin4 October 1986
      +11 October 1986
      +18 October 1986
      +25 October 1986
      7B4.8
      +4.6
      +5.1
      +5.0
      71
      +69
      +66
      +72
      143c3Terror of the VervoidsChris CloughPip and Jane Baker1 November 1986
      +8 November 1986
      +15 November 1986
      +22 November 1986
      7C5.2
      +4.6
      +5.3
      +5.3
      66
      +69
      +69
      +69
      143d4The Ultimate FoeChris CloughRobert Holmes
      +Pip and Jane Baker
      29 November 1986
      +6 December 1986
      7C4.4
      +5.6
      69
      +69
      +

      Seventh Doctor

      +

      The Seventh Doctor was portrayed by Sylvester McCoy.

      +

      Season 24 (1987)

      + +

      Andrew Cartmel took over as script editor. This season was moved to a Monday schedule.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1441Time and the RaniAndrew MorganPip and Jane Baker7 September 1987
      +14 September 1987
      +21 September 1987
      +28 September 1987
      7D5.1
      +4.2
      +4.3
      +4.9
      58
      +63
      +57
      +59
      1452Paradise TowersNicholas MallettStephen Wyatt5 October 1987
      +12 October 1987
      +19 October 1987
      +26 October 1987
      7E4.5
      +5.2
      +5.0
      +5.0
      61
      +58
      +58
      +57
      1463Delta and the BannermenChris CloughMalcolm Kohll2 November 1987
      +9 November 1987
      +16 November 1987
      7F5.3
      +5.1
      +5.4
      63
      +60
      +60
      1474DragonfireChris CloughIan Briggs23 November 1987
      +30 November 1987
      +7 December 1987
      7G5.5
      +5.0
      +4.7
      61
      +61
      +64
      +

      Season 25 (1988–89)

      + +

      The series was moved to Wednesdays.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1481Remembrance of the DaleksAndrew MorganBen Aaronovitch5 October 1988
      +12 October 1988
      +19 October 1988
      +26 October 1988
      7H5.5
      +5.8
      +5.1
      +5.0
      68
      +69
      +70
      +72
      1492The Happiness PatrolChris CloughGraeme Curry2 November 1988
      +9 November 1988
      +16 November 1988
      7L5.3
      +4.6
      +5.3
      67
      +65
      +65
      1503Silver NemesisChris CloughKevin Clarke23 November 1988
      +30 November 1988
      +7 December 1988[12]
      7K6.1
      +5.2
      +5.2
      71
      +70
      +70
      1514The Greatest Show in the GalaxyAlan WareingStephen Wyatt14 December 1988
      +21 December 1988
      +28 December 1988
      +4 January 1989
      7J5.0
      +5.3
      +4.8
      +6.6
      68
      +66
      +69
      +64
      +

      Season 26 (1989)

      + +

      The final season continued to push the series towards a darker approach, focusing this time more on Ace's personal life as well as The Doctor's past and manipulations. This season set the tone for the Virgin New Adventures novels that followed.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Serial Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1521BattlefieldMichael KerriganBen Aaronovitch6 September 1989
      +13 September 1989
      +20 September 1989
      +27 September 1989
      7N3.1
      +3.9
      +3.6
      +4.0
      69
      +68
      +67
      +65
      1532Ghost LightAlan WareingMarc Platt4 October 1989
      +11 October 1989
      +18 October 1989
      7Q4.2
      +4.0
      +4.0
      68
      +68
      +64
      1543The Curse of FenricNicholas MallettIan Briggs25 October 1989
      +1 November 1989
      +8 November 1989
      +15 November 1989
      7M4.3
      +4.0
      +4.0
      +4.2
      67
      +68
      +68
      +68
      1554SurvivalAlan WareingRona Munro22 November 1989
      +29 November 1989
      +6 December 1989
      7P5.0
      +4.8
      +5.0
      69
      +69
      +71
      +

      Eighth Doctor

      +

      The Eighth Doctor was portrayed by Paul McGann. The movie is the only television appearance of this Doctor during his tenure. The only production title held by this story was Doctor Who. However, producer Philip Segal later suggested Enemy Within as an alternative title. Lacking any other specific name, many fans have adopted this to refer to the movie. Fan groups have also used other informal titles. The DVD release is titled Doctor Who: The Movie. In 2013, Paul McGann returned for the second television appearance of the Eighth Doctor in the minisode titled "The Night of the Doctor".

      +

      Television movie (1996)

      +
      Main article: Doctor Who (film)
      + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      156Doctor WhoGeoffrey SaxMatthew Jacobs12 May 1996 (Canada)
      +14 May 1996 (USA)
      +27 May 1996 (UK)
      TVM[note 4]9.0875
      +

      Ninth Doctor

      +

      In 2005, the BBC relaunched Doctor Who after a 16-year absence from episodic television, with Russell T Davies, Julie Gardner and Mal Young as executive producers, Phil Collinson as producer, and Christopher Eccleston taking the lead role of the Ninth Doctor.

      +

      The revival adheres to the original continuity. The new series is formatted to a 16:9 widescreen display ratio, and a standard episode length of 45 minutes. For the first time since the 1965/66 season each episode has an individual title, although most stories do not span more than one episode. The show also returned to its traditional Saturday evening slot.

      +

      Series 1 (2005)

      +
      Main article: Doctor Who (series 1)
      +

      The 2005 series constitutes a loose story arc, dealing with the consequences of the Time War and the mysterious Bad Wolf.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1571"Rose"Keith BoakRussell T Davies26 March 2005 (2005-03-26)1.110.8181
      1582"The End of the World"Euros LynRussell T Davies2 April 2005 (2005-04-02)1.27.9779
      1593"The Unquiet Dead"Euros LynMark Gatiss9 April 2005 (2005-04-09)1.38.8680
      1604"Aliens of London"Keith BoakRussell T Davies16 April 2005 (2005-04-16)1.47.6381
      5"World War Three"Keith BoakRussell T Davies23 April 2005 (2005-04-23)1.57.9882
      1616"Dalek"Joe AhearneRobert Shearman30 April 2005 (2005-04-30)1.68.6384
      1627"The Long Game"Brian GrantRussell T Davies7 May 2005 (2005-05-07)1.78.0181
      1638"Father's Day"Joe AhearnePaul Cornell14 May 2005 (2005-05-14)1.88.0683
      1649"The Empty Child"James HawesSteven Moffat21 May 2005 (2005-05-21)1.97.1184
      10"The Doctor Dances"James HawesSteven Moffat28 May 2005 (2005-05-28)1.106.8685
      16511"Boom Town"Joe AhearneRussell T Davies4 June 2005 (2005-06-04)1.117.6882
      16612"Bad Wolf"Joe AhearneRussell T Davies11 June 2005 (2005-06-11)1.126.8185
      13"The Parting of the Ways"Joe AhearneRussell T Davies18 June 2005 (2005-06-18)1.136.9189
      +

      Tenth Doctor

      +

      The Tenth Doctor was portrayed by David Tennant, who was cast before the first series aired.[16] Mal Young vacated his position as executive producer when he departed the BBC after Series 1. He was not replaced in that capacity.

      +

      Series 2 (2006)

      +
      Main article: Doctor Who (series 2)
      +

      The back-story for the spin-off series Torchwood is "seeded" in various episodes in the 2006 series. Each episode also has an accompanying online Tardisode.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      167"The Christmas Invasion"James HawesRussell T Davies25 December 2005 (2005-12-25)2X9.8484
      1681"New Earth"James HawesRussell T Davies15 April 2006 (2006-04-15)2.18.6285
      1692"Tooth and Claw"Euros LynRussell T Davies22 April 2006 (2006-04-22)2.29.2483
      1703"School Reunion"James HawesToby Whithouse29 April 2006 (2006-04-29)2.38.3185
      1714"The Girl in the Fireplace"Euros LynSteven Moffat6 May 2006 (2006-05-06)2.47.9084
      1725"Rise of the Cybermen"Graeme HarperTom MacRae13 May 2006 (2006-05-13)2.59.2286
      6"The Age of Steel"Graeme HarperTom MacRae20 May 2006 (2006-05-20)2.67.6386
      1737"The Idiot's Lantern"Euros LynMark Gatiss27 May 2006 (2006-05-27)2.76.7684
      1748"The Impossible Planet"James StrongMatt Jones3 June 2006 (2006-06-03)2.86.3285
      9"The Satan Pit"James StrongMatt Jones10 June 2006 (2006-06-10)2.96.0886
      17510"Love & Monsters"Dan ZeffRussell T Davies17 June 2006 (2006-06-17)2.106.6676
      17611"Fear Her"Euros LynMatthew Graham24 June 2006 (2006-06-24)2.117.1483
      17712"Army of Ghosts"Graeme HarperRussell T Davies1 July 2006 (2006-07-01)2.128.1986
      13"Doomsday"Graeme HarperRussell T Davies8 July 2006 (2006-07-08)2.138.2289
      +

      Series 3 (2007)

      +
      Main article: Doctor Who (series 3)
      +

      This series introduces Martha Jones and deals with the Face of Boe's final message, the mysterious Mr. Saxon, and the Doctor dealing with the loss of Rose Tyler. Susie Liggat was the producer for "Human Nature" and "The Family of Blood", with Phil Collinson credited as executive producer for those episodes.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      178"The Runaway Bride"Euros LynRussell T Davies25 December 2006 (2006-12-25)3X9.3584
      1791"Smith and Jones"Charles PalmerRussell T Davies31 March 2007 (2007-03-31)3.18.7188
      1802"The Shakespeare Code"Charles PalmerGareth Roberts7 April 2007 (2007-04-07)3.27.2387
      1813"Gridlock"Richard ClarkRussell T Davies14 April 2007 (2007-04-14)3.38.4185
      1824"Daleks in Manhattan"James StrongHelen Raynor21 April 2007 (2007-04-21)3.46.6986
      5"Evolution of the Daleks"James StrongHelen Raynor28 April 2007 (2007-04-28)3.56.9785
      1836"The Lazarus Experiment"Richard ClarkStephen Greenhorn5 May 2007 (2007-05-05)3.67.1986
      1847"42"Graeme HarperChris Chibnall19 May 2007 (2007-05-19)3.77.4185
      1858"Human Nature"Charles PalmerPaul Cornell26 May 2007 (2007-05-26)3.87.7486
      9"The Family of Blood"Charles PalmerPaul Cornell2 June 2007 (2007-06-02)3.97.2186
      18610"Blink"Hettie MacDonaldSteven Moffat9 June 2007 (2007-06-09)3.106.6287
      18711"Utopia"Graeme HarperRussell T Davies16 June 2007 (2007-06-16)3.117.8487
      12"The Sound of Drums"Colin TeagueRussell T Davies23 June 2007 (2007-06-23)3.127.5187
      13"Last of the Time Lords"Colin TeagueRussell T Davies30 June 2007 (2007-06-30)3.138.6188
      +

      Series 4 (2008)

      +
      Main article: Doctor Who (series 4)
      +

      This series explores the coincidences binding the Doctor and Donna together. Susie Liggat was the producer for "Planet of the Ood", "The Sontaran Stratagem", "The Poison Sky", "The Unicorn and the Wasp" and "Turn Left", with Phil Collinson credited as executive producer for those episodes. Phil Collinson left the position of producer at the end of the series.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      188"Voyage of the Damned"James StrongRussell T Davies25 December 2007 (2007-12-25)4X13.3186
      1891"Partners in Crime"James StrongRussell T Davies5 April 2008 (2008-04-05)4.19.1488
      1902"The Fires of Pompeii"Colin TeagueJames Moran12 April 2008 (2008-04-12)4.39.0487
      1913"Planet of the Ood"Graeme HarperKeith Temple19 April 2008 (2008-04-19)4.27.5087
      1924"The Sontaran Stratagem"Douglas MackinnonHelen Raynor26 April 2008 (2008-04-26)4.47.0687
      5"The Poison Sky"Douglas MackinnonHelen Raynor3 May 2008 (2008-05-03)4.56.5388
      1936"The Doctor's Daughter"Alice TroughtonStephen Greenhorn10 May 2008 (2008-05-10)4.67.3388
      1947"The Unicorn and the Wasp"Graeme HarperGareth Roberts17 May 2008 (2008-05-17)4.78.4186
      1958"Silence in the Library"Euros LynSteven Moffat31 May 2008 (2008-05-31)4.96.2789
      9"Forest of the Dead"Euros LynSteven Moffat7 June 2008 (2008-06-07)4.107.8489
      19610"Midnight"Alice TroughtonRussell T Davies14 June 2008 (2008-06-14)4.88.0586
      19711"Turn Left"Graeme HarperRussell T Davies21 June 2008 (2008-06-21)4.118.0988
      19812"The Stolen Earth"Graeme HarperRussell T Davies28 June 2008 (2008-06-28)4.128.7891
      13"Journey's End"Graeme HarperRussell T Davies5 July 2008 (2008-07-05)4.1310.5791
      +

      Specials (2008–10)

      + +

      From "Planet of the Dead", episodes were filmed in HD.[17] Susie Liggat produced "The Next Doctor", while Nikki Wilson produced "The Waters of Mars" and Tracie Simpson produced "Planet of the Dead" and The End of Time. For practical reasons, these specials continued to use Series 4 production codes.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      1991"The Next Doctor"Andy GoddardRussell T Davies25 December 2008 (2008-12-25)4.1413.1086
      2002"Planet of the Dead"James StrongRussell T Davies & Gareth Roberts11 April 2009 (2009-04-11)4.159.7588
      2013"The Waters of Mars"Graeme HarperRussell T Davies & Phil Ford15 November 2009 (2009-11-15)4.1610.3288
      2024–5The End of TimeEuros LynRussell T Davies25 December 2009 (2009-12-25)
      +1 January 2010 (2010-01-01)
      4.17
      +4.18
      12.04
      +12.27
      87
      +89
      +

      Eleventh Doctor

      +

      The Eleventh Doctor was portrayed by Matt Smith. Steven Moffat took over as head writer and executive producer after Russell T Davies stepped down. Julie Gardner also stepped down as executive producer and was replaced by Piers Wenger and Beth Willis.

      +

      Series 5 (2010)

      +
      Main article: Doctor Who (series 5)
      +

      Tracie Simpson and Peter Bennett shared producer duties for this series only, with Patrick Schweitzer co-producing with Simpson for "The Vampires of Venice" and "Vincent and the Doctor".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      2031"The Eleventh Hour"Adam SmithSteven Moffat3 April 2010 (2010-04-03)1.110.0986
      2042"The Beast Below"Andrew GunnSteven Moffat10 April 2010 (2010-04-10)1.28.4286
      2053"Victory of the Daleks"Andrew GunnMark Gatiss17 April 2010 (2010-04-17)1.38.2184
      2064"The Time of Angels"Adam SmithSteven Moffat24 April 2010 (2010-04-24)1.48.5987
      5"Flesh and Stone"Adam SmithSteven Moffat1 May 2010 (2010-05-01)1.58.5086
      2076"The Vampires of Venice"Jonny CampbellToby Whithouse8 May 2010 (2010-05-08)1.67.6886
      2087"Amy's Choice"Catherine MorsheadSimon Nye15 May 2010 (2010-05-15)1.77.5584
      2098"The Hungry Earth"Ashley WayChris Chibnall22 May 2010 (2010-05-22)1.86.4986
      9"Cold Blood"Ashley WayChris Chibnall29 May 2010 (2010-05-29)1.97.4985
      21010"Vincent and the Doctor"Jonny CampbellRichard Curtis5 June 2010 (2010-06-05)1.106.7686
      21111"The Lodger"Catherine MorsheadGareth Roberts12 June 2010 (2010-06-12)1.116.4487
      21212"The Pandorica Opens"Toby HaynesSteven Moffat19 June 2010 (2010-06-19)1.127.5788
      13"The Big Bang"Toby HaynesSteven Moffat26 June 2010 (2010-06-26)1.136.7089
      +

      Series 6 (2011)

      +
      Main article: Doctor Who (series 6)
      +

      The original transmission of series 6 was split into two parts, with the first seven episodes airing April to June 2011 and the final six from late August to October 2011. Sanne Wohlenberg continued as producer for the first block of filming, consisting of "The Doctor's Wife" and "Night Terrors". Marcus Wilson then took over as series producer, with Denise Paul producing "Closing Time".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date Production
      +code 
      UK viewers
      +(millions) [7]
      AI [7]
      213"A Christmas Carol"Toby HaynesSteven Moffat25 December 2010 (2010-12-25)2.X12.1183
      2141"The Impossible Astronaut"Toby HaynesSteven Moffat23 April 2011 (2011-04-23)2.18.8688
      2"Day of the Moon"Toby HaynesSteven Moffat30 April 2011 (2011-04-30)2.27.3087
      2153"The Curse of the Black Spot"Jeremy WebbStephen Thompson7 May 2011 (2011-05-07)2.97.8586
      2164"The Doctor's Wife"Richard ClarkNeil Gaiman14 May 2011 (2011-05-14)2.37.9787
      2175"The Rebel Flesh"Julian SimpsonMatthew Graham21 May 2011 (2011-05-21)2.57.3585
      6"The Almost People"Julian SimpsonMatthew Graham28 May 2011 (2011-05-28)2.66.7286
      2187"A Good Man Goes to War"Peter HoarSteven Moffat4 June 2011 (2011-06-04)2.77.5188
      2198"Let's Kill Hitler"Richard SeniorSteven Moffat27 August 2011 (2011-08-27)2.88.1085
      2209"Night Terrors"Richard ClarkMark Gatiss3 September 2011 (2011-09-03)2.47.0786
      22110"The Girl Who Waited"Nick HurranTom MacRae10 September 2011 (2011-09-10)2.107.6085
      22211"The God Complex"Nick HurranToby Whithouse17 September 2011 (2011-09-17)2.116.7786
      22312"Closing Time"Steve HughesGareth Roberts24 September 2011 (2011-09-24)2.126.9386
      22413"The Wedding of River Song"Jeremy WebbSteven Moffat1 October 2011 (2011-10-01)2.137.6786
      +

      Series 7 (2012–13)

      +
      Main article: Doctor Who (series 7)
      +

      Series 7 started with five episodes in late 2012, followed by a Christmas special and eight episodes in 2013. From this series on, the use of production codes were abandoned. The Christmas special had Steven Moffat, Wenger and Caroline Skinner as executive producers.[18] Beth Willis left the BBC and stepped down as executive producer after series 6[19] and Wenger also departed following the Christmas special, leaving Moffat and Skinner as executive producers for series 7.[20] Denise Paul produced "The Bells of Saint John", "The Rings of Akhaten", "Nightmare in Silver" and "The Name of the Doctor" with Marcus Wilson credited as series producer on those episodes.[citation needed]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date UK viewers
      +(millions) [7]
      AI [7]
      225"The Doctor, the Widow and the Wardrobe"Farren BlackburnSteven Moffat25 December 2011 (2011-12-25)10.7784
      2261"Asylum of the Daleks"Nick HurranSteven Moffat1 September 2012 (2012-09-01)8.3389
      2272"Dinosaurs on a Spaceship"Saul MetzsteinChris Chibnall8 September 2012 (2012-09-08)7.5787
      2283"A Town Called Mercy"Saul MetzsteinToby Whithouse15 September 2012 (2012-09-15)8.4285
      2294"The Power of Three"Douglas MackinnonChris Chibnall22 September 2012 (2012-09-22)7.6787
      2305"The Angels Take Manhattan"Nick HurranSteven Moffat29 September 2012 (2012-09-29)7.8288
      231"The Snowmen"Saul MetzsteinSteven Moffat25 December 20129.8787
      2326"The Bells of Saint John"Colm McCarthySteven Moffat30 March 2013 (2013-03-30)8.4487
      2337"The Rings of Akhaten"Farren BlackburnNeil Cross6 April 2013 (2013-04-06)7.4584
      2348"Cold War"Douglas MackinnonMark Gatiss13 April 2013 (2013-04-13)7.3784
      2359"Hide"Jamie PayneNeil Cross20 April 2013 (2013-04-20)6.6185
      23610"Journey to the Centre of the TARDIS"Mat KingStephen Thompson27 April 2013 (2013-04-27)6.5085
      23711"The Crimson Horror"Saul MetzsteinMark Gatiss4 May 2013 (2013-05-04)6.4785
      23812"Nightmare in Silver"Stephen WoolfendenNeil Gaiman11 May 2013 (2013-05-11)6.6484
      23913"The Name of the Doctor"Saul MetzsteinSteven Moffat18 May 2013 (2013-05-18)7.4588
      +

      Specials (2013)

      + +

      Following Caroline Skinner's departure, BBC Wales' Head of Drama, Faith Penhale, served as Executive Producer with Moffat for the 50th anniversary special;[21] Brian Minchin, previously a script editor in series 5, took over the role thereafter.[22] Marcus Wilson left the position of producer following the Christmas special.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date UK viewers
      +(millions) [7]
      AI [7]
      2401"The Day of the Doctor"Nick HurranSteven Moffat23 November 2013 (2013-11-23)12.8088
      2412"The Time of the Doctor"Jamie PayneSteven Moffat25 December 2013 (2013-12-25)11.1483
      +

      Twelfth Doctor

      +

      The Twelfth Doctor is portrayed by Peter Capaldi.

      +

      Series 8 (2014)

      +
      Main article: Doctor Who (series 8)
      +

      Nikki Wilson and Peter Bennett returned as producers, with Paul Frift producing "In the Forest of the Night".

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date UK viewers
      +(millions) [7]
      AI [7]
      2421"Deep Breath"Ben WheatleySteven Moffat23 August 2014 (2014-08-23)9.1782
      2432"Into the Dalek"Ben WheatleyPhil Ford & Steven Moffat30 August 2014 (2014-08-30)7.2984
      2443"Robot of Sherwood"Paul MurphyMark Gatiss6 September 2014 (2014-09-06)7.2882
      2454"Listen"Douglas MackinnonSteven Moffat13 September 2014 (2014-09-13)7.0182
      2465"Time Heist"Douglas MackinnonStephen Thompson & Steven Moffat20 September 2014 (2014-09-20)6.9984
      2476"The Caretaker"Paul MurphyGareth Roberts & Steven Moffat27 September 2014 (2014-09-27)6.8283
      2487"Kill the Moon"Paul WilmshurstPeter Harness4 October 2014 (2014-10-04)6.9182
      2498"Mummy on the Orient Express"Paul WilmshurstJamie Mathieson11 October 2014 (2014-10-11)7.1185
      2509"Flatline"Douglas MackinnonJamie Mathieson18 October 2014 (2014-10-18)6.7185
      25110"In the Forest of the Night"Sheree FolksonFrank Cottrell Boyce25 October 2014 (2014-10-25)6.9283
      25211"Dark Water"Rachel TalalaySteven Moffat1 November 2014 (2014-11-01)7.3485
      12"Death in Heaven"Rachel TalalaySteven Moffat8 November 2014 (2014-11-08)7.6083
      +

      Series 9 (2015)

      +
      Main article: Doctor Who (series 9)
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title [23]Directed by [23]Written by [23]Original air date [6][24]UK viewers
      +(millions) [7]
      AI [7]
      253"Last Christmas"Paul WilmshurstSteven Moffat25 December 2014 (2014-12-25)8.2882
      2541"The Magician's Apprentice"Hettie MacDonaldSteven Moffat19 September 2015 (2015-09-19)6.5484
      2"The Witch's Familiar"Hettie MacDonaldSteven Moffat26 September 2015 (2015-09-26)5.7183
      2553"Under the Lake"Daniel O'HaraToby Whithouse3 October 2015 (2015-10-03)TBD84
      4"Before the Flood"Daniel O'HaraToby Whithouse10 October 2015 (2015-10-10)TBDTBD
      2565"The Girl Who Died"Ed BazalgetteJamie Mathieson and Steven Moffat17 October 2015 (2015-10-17)TBDTBD
      2576"The Woman Who Lived"Ed BazalgetteCatherine Tregenna24 October 2015 (2015-10-24)TBDTBD
      2587"The Zygon Invasion"Daniel NettheimPeter Harness31 October 2015 (2015-10-31)TBDTBD
      8"The Zygon Inversion"Daniel NettheimPeter Harness and Steven Moffat7 November 2015 (2015-11-07)TBDTBD
      2599"Sleep No More"Justin MolotnikovMark Gatiss14 November 2015 (2015-11-14)TBDTBD
      26010"Face the Raven"Justin MolotnikovSarah Dollard21 November 2015 (2015-11-21)TBDTBD
      26111"Heaven Sent"Rachel TalalaySteven Moffat28 November 2015 (2015-11-28)TBDTBD
      12"Hell Bent"Rachel TalalaySteven Moffat5 December 2015 (2015-12-05)TBDTBD
      +

      2015 Christmas Special

      +

      The 2015 Christmas Special will be produced by Nikki Wilson, and will mark the reappearance of Alex Kingston as River Song. The special began filming on 10 September 2015.[25][26]

      + + + + + + + + + + + + + + + + + + + + + +
      Story Episode Title Directed by Written by Original air date UK viewers
      +(millions) 
      AI 
      262TBADouglas Mackinnon[25]Steven Moffat[25]25 December 2015 (2015-12-25)[25]TBDTBD
      +

      Series 10

      +

      On 14 July 2015, BBC Worldwide's Annual Review revealed that it had invested in a tenth series.[27]

      +

      See also

      + + + + + + +
      + + + + + + + + + +
      Portal iconDoctor Who portal
      Portal iconBBC portal
      +
      + +

      Footnotes

      +
      +
        +
      1. ^ Although technically the sixteenth season, the season was known by its subtitle, The Key to Time.
      2. +
      3. ^ a b Shada was left unfinished due to a strike. Its recorded footage was later released on home video using linking narration by Tom Baker to complete the story. It is not included in the episode or story counts as it was not broadcast.
      4. +
      5. ^ Although technically the twenty-third season, the season was known by its subtitle, The Trial of a Time Lord.
      6. +
      7. ^ "TVM" is used in the BBC's online episode guide.[13] The actual code used during production is 50/LDX071Y/01X.[14] Doctor Who Magazine‍ '​s "Complete Eighth Doctor Special" gives the production code as #83705.[15] Big Finish Productions uses the code 8A, and numbers its subsequent Eighth Doctor stories correspondingly.
      8. +
      +
      +

      References

      +
      +
        +
      1. ^ "Dr Who 'longest-running sci-fi'". BBC. 28 September 2006. Retrieved 15 December 2007. 
      2. +
      3. ^ Howe, David J.; Walker, Stephen James (2003) [1998]. "The Trial of a Time Lord: 1–4 : Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 27 October 2007. 
      4. +
      5. ^ Cornell, Paul; Day, Martin; Topping, Keith (1995). "The Five Doctors: Details". Doctor Who: The Discontinuity Guide. BBC Doctor Who website. Retrieved 27 October 2007. 
      6. +
      7. ^ Spilsbury, Tom (22 April 2009). "The Mighty 200!". Doctor Who Magazine (Royal Tunbridge Wells, Kent: Panini Comics) (407): 26–29. 
      8. +
      9. ^ "Blogtor Who: Doctor Who Series 9 to have 12 eps". Blogtor Who. 30 April 2015. Retrieved 30 April 2015. 
      10. +
      11. ^ a b "Every Saturday evening from 19 September!". Twitter. Doctor Who Magazine. Retrieved 18 August 2015. 
      12. +
      13. ^ a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb "Ratings Guide". Doctor Who News. Retrieved 27 December 2014. 
      14. +
      15. ^ "Tom Baker". BBC Doctor Who website. 12 August 2004. Archived from the original on 29 December 2008. Retrieved 23 April 2013. 
      16. +
      17. ^ The Five Doctors was first broadcast in the United States on 23 November 1983, the actual date of the programme's 20th anniversary.
      18. +
      19. ^ "Doctor Who – Classic Series – Episode Guide – Second Doctor Index". BBC. Retrieved 18 May 2011. 
      20. +
      21. ^ Sullivan, Shannon (7 August 2007). "Silver Nemesis". A Brief History of Time Travel. Retrieved 30 August 2008. 
      22. +
      23. ^ Parts Two and Three of Silver Nemesis were first broadcast in New Zealand on 25 November 1988 as part of a compilation broadcast before their UK transmission.[11]
      24. +
      25. ^ Howe, David J.; Walker, Stephen James. "The TV Movie: Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 26 July 2007. 
      26. +
      27. ^ Segal, Philip; Russell, Gary (2000). Doctor Who: Regeneration. HarperCollinsEntertainment. ISBN 0-00-710591-6. 
      28. +
      29. ^ "The DWM Archive: Doctor Who (1996) – In Production". Doctor Who Magazine Special Edition (5). 3 September 2003. p. 69. ISSN 0957-9818. 
      30. +
      31. ^ "Bad Wolf" / "The Parting of the Ways" at Doctor Who: A Brief History Of Time (Travel) Retrieved 28 November 2007.
      32. +
      33. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Archived from the original on 10 February 2010. Retrieved 22 April 2010. 
      34. +
      35. ^ "Steven Moffat on the New Exec". BBC. Retrieved 21 July 2011. 
      36. +
      37. ^ "BBC – Doctor Who – Beth Willis On Leaving Doctor Who – News & Features". Bbc.co.uk. Retrieved 22 August 2012. 
      38. +
      39. ^ "Doctor Who executive Piers Wenger leaves BBC for Film4". BBC News. 26 May 2011. Retrieved 9 June 2011. 
      40. +
      41. ^ "Caroline Skinner steps down as Executive Producer of Doctor Who". Media Centre. BBC. 13 March 2013. Retrieved 14 March 2013. 
      42. +
      43. ^ "BBC - Brian Minchin confirmed as new Executive Producer of Doctor Who - Media centre". bbc.co.uk. 
      44. +
      45. ^ a b c "Doctor Who season 9: Steven Moffat's episode guide". Radio Times. 15 September 2015. Retrieved 15 September 2015. 
      46. +
      47. ^ "Doctor Who: Episode Guide". Zap2It. Retrieved September 23, 2015. 
      48. +
      49. ^ a b c d "The Doctor and River Song Reunite For A Spectacular Christmas". BBC. The Doctor Who Team. 2 September 2015. Retrieved 2 September 2015. 
      50. +
      51. ^ Mackinnon, Douglas (10 September 2015). "Let it snow! #DoctorWho". Twitter. Retrieved 10 September 2015. 
      52. +
      53. ^ "Doctor Who Series 10 Confirmed". Doctor Who News. 14 July 2015. Retrieved 15 July 2015. 
      54. +
      +
      +

      Sources

      +
      + +
      +

      External links

      + + + + + + + + + + + + + +
      +
      +
      +
      + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm b/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm new file mode 100644 index 000000000..7c5997971 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm @@ -0,0 +1,6078 @@ + + + + + + + + + Cars in Car Type:Standard Car | eBay + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      + + + + + + +
      eBay + + +
      + + + + + + + +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      + +
      + + + + + +
      + +
      +   +
      +
      +
      + +
      +
      +
      +

      Search refinements

      + +
      +
      +
      + +
      + +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
      +
      + +
      +

      + 108,377 + results in Cars +

      + + + + + + + + +
      +
      + +
      + + + +
      + + + + + + + +
      +
      +
      +
      +
      +
      + +
      +
      +
      + +
      + + +
      + +

      Standard Car

      +
      + +
      + in Cars: Standard Car Standard Car + +
      + +   +
      +
      + + + +
      +
      + + +
      + +
      +

       
      + + + +
      +

      Items in search results

      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      + +
      +
      +
      + + +
      Low milage
      +
      + +
      + Reg. Date: 2006 +
      +
      + Mileage: 54,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £1,950.00
      +
      +
      21 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      + +
      +
      +
      + + +
      You Can Afford This £25,000 car & 62mpg
      +
      + +
      + Mileage: 0 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      £299.00
      +
      +
      Classified Ad
      +
      +
      +
      + + Collection only: Free + +
      +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 17,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £395.00
      +
      +
      14 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2003 +
      +
      + Mileage: 100,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £560.00
      +
      +
      8 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2005 +
      +
      + Mileage: 83,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £950.00
      +
      +
      0 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 1997 +
      +
      + Mileage: 78,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £628.89
      +
      +
      21 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      + +
      +
      +
      + + +
      + +
      + Reg. Date: 2003 +
      +
      + Mileage: 132,700 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £970.00
      +
      +
      23 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      + +
      +
      +
      + + +
      + +
      + Mileage: 174,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £4,400.00
      +
      +
      13 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Mileage: 99,441 +
      +
      +
      +
      +
      + + Time left: + + + +
      £350.00
      +
      +
      1 bid
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Mileage: 96,401 +
      +
      +
      +
      +
      + + +
      +
      + £300.00 +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2012 +
      +
      + Mileage: 9,998 +
      +
      +
      +
      +
      + + Time left: + + + +
      £3,700.00
      +
      +
      16 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + rover 75 cdti 2.0 auto + +
      +
      +
      +
      + + +
      + +
      + Mileage: 87,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £850.00
      +
      +
      12 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2008 FORD FIESTA 1.25 STYLE 3DR PANTHER BLACK /BLACK & BLUE INTERIOR FSH NEW MOT + +
      + +
      +
      +
      + + +
      DELIVERY AVAILABLE * CARDS ACCEPTED * LOW MILES 50K FSH
      +
      + +
      + Reg. Date: 2008 +
      +
      + Mileage: 50,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £2,550.00
      +
      +
      13 bids
      +
      +
      +
      +
      + £3,850.00 +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Vauxhall Corsa Gls Di 2002 3 Door Black Diesel 98K Spares or Repair Salvage + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 97,850 +
      +
      +
      +
      +
      + + Time left: + + + +
      £195.00
      +
      +
      13 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + BMW E46 02 316i SUPERB CAR MUST SEE ,JUST SERVICED, crank wont start, REPAIR + +
      + +
      +
      +
      + + +
      + +
      + Mileage: 93,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £1,000.00
      +
      +
      1 bid
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + BMW 520 Auto + +
      + +
      +
      +
      +
      +

      + BMW 520 Auto +

      +
      + +
      + +
      + Mileage: 163,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £500.00
      +
      +
      0 bids
      +
      +
      +
      +
      + £600.00 +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + rover 25 1.4 tax and mot spares and repairs drive it away no reserve + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2001 +
      +
      + Mileage: 65,300 +
      +
      +
      +
      +
      + + Time left: + + + +
      £215.00
      +
      +
      36 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Volkswagen Bora se 1.9 tdi 2001,   ***OFFERS*** + +
      + +
      +
      +
      + + +
      + +
      + Mileage: 150,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      + £999.00 +
      +
      + + +
      +
      +
      + + Postage not specified
      +
      +
      +
      + 32 Watchers +
      + +
      or Best Offer
      +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + VW BORA 1.9 TDI S + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 94,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £720.00
      +
      +
      12 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Ford fiesta freestyle 5door  spares or repair + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 73,803 +
      +
      +
      +
      +
      + + Time left: + + + +
      £150.00
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Renault Clio Billabong 1.2 petrol 16 V + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2003 +
      +
      + Mileage: 69,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £805.00
      +
      +
      5 bids
      +
      +
      +
      +
      + £1,100.00 +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + CITROEN C4 VTR PLUS 2,0 PETROL   SPARE REPAIR + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2006 +
      +
      + Mileage: 82,709 +
      +
      +
      +
      +
      + + Time left: + + + +
      £565.00
      +
      +
      25 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2004 ford ka + +
      +
      +
      +
      +
      +

      + 2004 ford ka +

      +
      + +
      + +
      + Mileage: 106,085 +
      +
      +
      +
      +
      + + Time left: + + + +
      £193.23
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Vauxhall Omega 2.5 CD V6 + +
      +
      +
      +
      + + +
      12 months MOT, taxed until 31/08/14
      +
      + +
      + Reg. Date: 1998 +
      +
      + Mileage: 164,266 +
      +
      +
      +
      +
      + + Time left: + + + +
      £410.00
      +
      +
      5 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + BF02 XOS + +
      + +
      +
      +
      +
      +

      + BF02 XOS +

      +
      + +
      PEUGEOT 607 2.2 HDI AUTO
      +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 120 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £495.00
      +
      +
      0 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Volkswagen Polo mk2 fox, cheap road car, classic, Bread van, Breadvan, dub? + +
      + +
      +
      +
      + + +
      + +
      + Reg. Date: 1989 +
      +
      + Mileage: 76,654 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £336.78
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + ford mondeo 2.0 tdci 130 + +
      +
      +
      +
      + + +
      + +
      + Mileage: 138,000 +
      +
      +
      +
      +
      + + +
      +
      £400.00
      +
      +
      Classified Ad with Best Offer
      +
      +
      +
      + + Collection only: Free + +
      +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Volkswagen Golf GTi 2.0 16v mk3 + +
      + +
      +
      +
      + + +
      + +
      + Mileage: 170,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £175.00
      +
      +
      21 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + vw polo 14cc match 80 + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2008 +
      +
      + Mileage: 83,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £2,562.00
      +
      +
      15 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Mercedes Benz E270 CDI Avantgarde + +
      +
      +
      +
      + + +
      + +
      + Mileage: 108,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £3,800.00
      +
      +
      2 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2004 (54) VOLKSWAGEN BORA 1.9 TDI PD 130 SPORT. FULL VW MAIN DEALER HISTORY + +
      + +
      +
      +
      + + +
      6 SPEED GEARBOX. LONG TAX AND MOT. 2 KEYS. 2 OWNERS
      +
      + +
      + Reg. Date: 2004 +
      +
      + Mileage: 98,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £1,550.00
      +
      +
      25 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + CITROEN C2 VTR 1.4HDI + +
      + +
      +
      +
      + + +
      Nice Example - Full Citroen History
      +
      + +
      + Reg. Date: 2008 +
      +
      + Mileage: 60,998 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £2,939.00
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 1987 VAUXHALL NOVA L SALOON + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 1987 +
      +
      + Mileage: 93,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £205.53
      +
      +
      2 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + BMW 735I V8 FULL BMW SERVICE HISTORY SPARES OR REPAIRS PROJECT NO RESERVE LOOK!! + +
      + +
      +
      +
      + + +
      STARTS RUNS AND DRIVES AS IT SHOULD!!
      +
      + +
      + Mileage: 103,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £510.00
      +
      +
      15 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Ford Fiesta 1.4TDCi 2007.25MY Zetec Blue + +
      + +
      +
      +
      + + +
      FINANCE ONLY
      +
      + +
      + Reg. Date: 2008 +
      +
      + Mileage: 95,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      £495.00
      +
      +
      Classified Ad
      +
      +
      +
      + + Collection only: Free + +
      +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + VW Golf GT TDI + +
      +
      +
      +
      +
      +

      + VW Golf GT TDI +

      +
      + +
      + +
      + Mileage: 180,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £750.00
      +
      +
      0 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2007 CITROEN XSARA PICASSO VTX 1.6 16V + +
      + +
      +
      +
      + + +
      Cheap Family Car
      +
      + +
      + Reg. Date: 2007 +
      +
      + Mileage: 80,188 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £775.99
      +
      +
      3 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Vauxhall Vectra 2003 2.2 liter 16v silver MOT and Taxed + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2003 +
      +
      + Mileage: 167,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £300.00
      +
      +
      18 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + BMW 750i 1990 Black + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 1990 +
      +
      + Mileage: 136,593 +
      +
      +
      +
      +
      + + Time left: + + + +
      £1,020.00
      +
      +
      9 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + AUDI A3 1.9tdi SPORTBACK S + +
      + +
      +
      +
      + + +
      + +
      + Reg. Date: 2008 +
      +
      + Mileage: 58,500 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £6,600.00
      +
      +
      3 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Ford Mondeo 1.8LX Silver Mot and tax needs slight attention + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 148,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £310.00
      +
      +
      14 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2002 Renault clio 1.4L 55k miles + +
      + +
      +
      +
      + + +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 55,031 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £769.00
      +
      +
      22 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Ford Fiesta 1.4 2007.25MY Zetec Climate + +
      + +
      +
      +
      + + +
      £995 deposit CCJ No Problem
      +
      + +
      + Reg. Date: 2007 +
      +
      + Mileage: 68,000 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + +
      +
      £995.00
      +
      +
      Classified Ad
      +
      +
      +
      + + Collection only: Free + +
      +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + AUDI A4 1.8 PETROL model 1A + +
      + +
      +
      +
      + + +
      MOT till Jan 2015 and drives well
      +
      + +
      + Mileage: 131,922 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £205.00
      +
      +
      3 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + VAUXHALL CORSA LIMITED EDITION 1.2VVT + +
      + +
      +
      +
      + + +
      + +
      + Reg. Date: 2012 +
      +
      + Mileage: 26,500 +
      +
      +
      +
      +
      +
      +
      +
      +
      + + Time left: + + + +
      £5,300.00
      +
      +
      20 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + Peugeot 206 XSI 2002 + +
      +
      +
      +
      + + +
      + +
      + Mileage: 108,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £371.00
      +
      +
      15 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2003 Renault Megane 1.6 petrol flame red - taxed and tested - FSH 78k + +
      +
      +
      +
      + + +
      + +
      + Mileage: 78,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £600.00
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Collection only: Free + +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2001 AUDI A4 SILVER,DRIVES FINE.!!!!!!!!!! + +
      +
      +
      +
      + + +
      ***CLEAN AND TIDY - TAX AND MOT***
      +
      + +
      + Reg. Date: 2001 +
      +
      + Mileage: 125,703 +
      +
      +
      +
      +
      + + Time left: + + + +
      £510.00
      +
      +
      9 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2001 JAGUAR S TYPE 4.0 V8 GREEN + +
      +
      +
      +
      + + +
      + +
      + Reg. Date: 2001 +
      +
      + Mileage: 121,000 +
      +
      +
      +
      +
      + + Time left: + + + +
      £620.00
      +
      +
      6 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      + + + + + + + + + + + + +
      +
      +
      +
      + + + + 2002 ROVER 75,CLUB SE.A NICE ONE.!!!!!!!!. + +
      +
      +
      +
      + + +
      NICE CAR DRIVES WELL.!!!!!!!!!
      +
      + +
      + Reg. Date: 2002 +
      +
      + Mileage: 70,464 +
      +
      +
      +
      +
      + + Time left: + + + +
      £420.00
      +
      +
      18 bids
      +
      +
      +
      +
      +
      +
      + + Postage not specified
      +
      +
      + +
      +
      +
      +
      +
      +
      + +
      eBay Premium Service
      +
        +
      • Excellent customer service as rated by buyers
      • +
      • 14-day returns
      • +
      • A free delivery option
      • +
      • A fast delivery option
      • +
      Learn more
      +
      eBay Premium Service
      +
        +
      • Excellent customer service as rated by buyers
      • +
      • 14-day returns
      • +
      • A free delivery option
      • +
      • A fast delivery option
      • +
      Learn more
      +
      +
      +
      +
      +
      +
      + Tell us what you think
      +
      +
      + +
      + + + + + + +
      + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + +
      + +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
      + +
      + + +
      +
      + + + + + + + + + +
      + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv b/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv new file mode 100644 index 000000000..c6d6f520b --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv @@ -0,0 +1,3 @@ +row,c1,c2,c3 +1,,5, +2,4,6, diff --git a/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml b/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml new file mode 100644 index 000000000..b987a726c --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv b/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv new file mode 100644 index 000000000..7c06f3cde --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv @@ -0,0 +1,4 @@ +Distance (metre),Time (second) +50,3.7 +100,5.2 +150,6.4 diff --git a/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml b/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml new file mode 100644 index 000000000..17322d2a9 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/homonim.xsd b/tests/FSharp.Data.Core.Tests/Data/homonim.xsd new file mode 100644 index 000000000..a1c6c028e --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/homonim.xsd @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm b/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm new file mode 100644 index 000000000..b21e310d3 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm @@ -0,0 +1,13481 @@ + + + + + + + + + + + + + + + + + IMDb Top 250 - IMDb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + + + +
      + +
      + +
      + + + +
      + + +
      + +
      + +
      + + + +
      +
      +
      +

      IMDb Charts

      +

      Top 250

      + +
      +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Rank & TitleIMDb RatingYour Rating
      + + + + + 1. + The Shawshank Redemption + (1994) + + 9.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 2. + The Godfather + (1972) + + 9.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 3. + The Godfather: Part II + (1974) + + 9.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 4. + The Dark Knight + (2008) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 5. + Pulp Fiction + (1994) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 6. + The Good, the Bad and the Ugly + (1966) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 7. + Schindler's List + (1993) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 8. + 12 Angry Men + (1957) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 9. + The Lord of the Rings: The Return of the King + (2003) + + 8.9 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 10. + Fight Club + (1999) + + 8.8 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 11. + The Lord of the Rings: The Fellowship of the Ring + (2001) + + 8.8 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.9/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 12. + Star Wars: Episode V - The Empire Strikes Back + (1980) + + 8.8 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 13. + Inception + (2010) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 14. + Forrest Gump + (1994) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 15. + One Flew Over the Cuckoo's Nest + (1975) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 16. + Goodfellas + (1990) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 17. + The Lord of the Rings: The Two Towers + (2002) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 18. + Star Wars: Episode IV - A New Hope + (1977) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 19. + The Matrix + (1999) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 20. + Seven Samurai + (1954) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 21. + City of God + (2002) + + 8.7 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 22. + Se7en + (1995) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 23. + The Usual Suspects + (1995) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 24. + The Silence of the Lambs + (1991) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 25. + Once Upon a Time in the West + (1968) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 26. + It's a Wonderful Life + (1946) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 27. + Léon: The Professional + (1994) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 28. + Casablanca + (1942) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 29. + Life Is Beautiful + (1997) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 30. + Raiders of the Lost Ark + (1981) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 31. + Rear Window + (1954) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 32. + Psycho + (1960) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 33. + American History X + (1998) + + 8.6 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 34. + City Lights + (1931) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.7/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 35. + Saving Private Ryan + (1998) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 36. + Spirited Away + (2001) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 37. + The Intouchables + (2011) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 38. + Memento + (2000) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 39. + Terminator 2: Judgment Day + (1991) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 40. + Modern Times + (1936) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 41. + Sunset Blvd. + (1950) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 42. + Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb + (1964) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 43. + Apocalypse Now + (1979) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 44. + The Pianist + (2002) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 45. + The Green Mile + (1999) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 46. + The Departed + (2006) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 47. + Gladiator + (2000) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 48. + Back to the Future + (1985) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 49. + The Dark Knight Rises + (2012) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 50. + Alien + (1979) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 51. + Django Unchained + (2012) + + 8.5 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 52. + The Lives of Others + (2006) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 53. + The Prestige + (2006) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 54. + The Great Dictator + (1940) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 55. + The Shining + (1980) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 56. + Cinema Paradiso + (1988) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 57. + Paths of Glory + (1957) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 58. + American Beauty + (1999) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 59. + The Lion King + (1994) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 60. + WALL·E + (2008) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 61. + North by Northwest + (1959) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 62. + Amélie + (2001) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 63. + Citizen Kane + (1941) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 64. + Aliens + (1986) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 65. + Toy Story 3 + (2010) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 66. + Vertigo + (1958) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 67. + M + (1931) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 68. + Das Boot + (1981) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 69. + Taxi Driver + (1976) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 70. + A Clockwork Orange + (1971) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 71. + Double Indemnity + (1944) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 72. + Oldboy + (2003) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 73. + To Kill a Mockingbird + (1962) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 74. + Princess Mononoke + (1997) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 75. + Reservoir Dogs + (1992) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 76. + Requiem for a Dream + (2000) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 77. + Once Upon a Time in America + (1984) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 78. + Star Wars: Episode VI - Return of the Jedi + (1983) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 79. + Braveheart + (1995) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 80. + Lawrence of Arabia + (1962) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 81. + Grave of the Fireflies + (1988) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 82. + Eternal Sunshine of the Spotless Mind + (2004) + + 8.4 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 83. + Witness for the Prosecution + (1957) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 84. + Full Metal Jacket + (1987) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 85. + Singin' in the Rain + (1952) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 86. + The Sting + (1973) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 87. + Bicycle Thieves + (1948) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 88. + Monty Python and the Holy Grail + (1975) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 89. + Amadeus + (1984) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 90. + All About Eve + (1950) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 91. + The Wolf of Wall Street + (2013) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 92. + Rashomon + (1950) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 93. + Snatch. + (2000) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 94. + The Treasure of the Sierra Madre + (1948) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 95. + L.A. Confidential + (1997) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 96. + The Apartment + (1960) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 97. + Some Like It Hot + (1959) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 98. + The Third Man + (1949) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 99. + For a Few Dollars More + (1965) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 100. + A Separation + (2011) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 101. + Indiana Jones and the Last Crusade + (1989) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 102. + Inglourious Basterds + (2009) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 103. + Yojimbo + (1961) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 104. + Batman Begins + (2005) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 105. + The Kid + (1921) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 106. + 2001: A Space Odyssey + (1968) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 107. + Unforgiven + (1992) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 108. + Metropolis + (1927) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 109. + Raging Bull + (1980) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 110. + Chinatown + (1974) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 111. + Toy Story + (1995) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 112. + Scarface + (1983) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 113. + Up + (2009) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 114. + Die Hard + (1988) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 115. + Downfall + (2004) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 116. + Mr. Smith Goes to Washington + (1939) + + 8.3 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 117. + The Great Escape + (1963) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 118. + Pan's Labyrinth + (2006) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 119. + On the Waterfront + (1954) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 120. + Like Stars on Earth + (2007) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 121. + The Bridge on the River Kwai + (1957) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 122. + Heat + (1995) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 123. + The Hunt + (2012) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 124. + The Seventh Seal + (1957) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 125. + 3 Idiots + (2009) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 126. + Wild Strawberries + (1957) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 127. + The Elephant Man + (1980) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 128. + Ran + (1985) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 129. + Ikiru + (1952) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 130. + The General + (1926) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 131. + The Gold Rush + (1925) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 132. + Blade Runner + (1982) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 133. + My Neighbor Totoro + (1988) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 134. + 12 Years a Slave + (2013) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 135. + Lock, Stock and Two Smoking Barrels + (1998) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 136. + Gran Torino + (2008) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 137. + Good Will Hunting + (1997) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 138. + Rebecca + (1940) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 139. + The Big Lebowski + (1998) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 140. + The Secret in Their Eyes + (2009) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 141. + It Happened One Night + (1934) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 142. + Rush + (2013) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 143. + Rang De Basanti + (2006) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.6/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 144. + Warrior + (2011) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 145. + Casino + (1995) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 146. + Cool Hand Luke + (1967) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 147. + V for Vendetta + (2005) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 148. + The Grand Budapest Hotel + (2014) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.4/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 149. + Her + (2013) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 150. + The Deer Hunter + (1978) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 151. + The Maltese Falcon + (1941) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 152. + Fargo + (1996) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 153. + Gone with the Wind + (1939) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 154. + Trainspotting + (1996) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 155. + Into the Wild + (2007) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 156. + Howl's Moving Castle + (2004) + + 8.2 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 157. + How to Train Your Dragon + (2010) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 158. + Hotel Rwanda + (2004) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 159. + Judgment at Nuremberg + (1961) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 160. + The Sixth Sense + (1999) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 161. + Butch Cassidy and the Sundance Kid + (1969) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 162. + The Thing + (1982) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 163. + Annie Hall + (1977) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 164. + Dial M for Murder + (1954) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 165. + Platoon + (1986) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 166. + A Beautiful Mind + (2001) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 167. + Kill Bill: Vol. 1 + (2003) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 168. + No Country for Old Men + (2007) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 169. + Sin City + (2005) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 170. + Touch of Evil + (1958) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 171. + Mary and Max + (2009) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 172. + Finding Nemo + (2003) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 173. + Diabolique + (1955) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 174. + Life of Brian + (1979) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 175. + Network + (1976) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 176. + The Princess Bride + (1987) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 177. + Amores Perros + (2000) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 178. + The Wizard of Oz + (1939) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 179. + Stand by Me + (1986) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 180. + The Avengers + (2012) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 181. + Captain America: The Winter Soldier + (2014) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 182. + The Grapes of Wrath + (1940) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 183. + Ben-Hur + (1959) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 184. + The Lego Movie + (2014) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 185. + The Best Years of Our Lives + (1946) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 186. + Incendies + (2010) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 187. + There Will Be Blood + (2007) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 188. + The 400 Blows + (1959) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 189. + Million Dollar Baby + (2004) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 190. + Hachi: A Dog's Tale + (2009) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 191. + + (1963) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 192. + Donnie Darko + (2001) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 193. + Strangers on a Train + (1951) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 194. + The Bourne Ultimatum + (2007) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 195. + In the Name of the Father + (1993) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 196. + High Noon + (1952) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 197. + Gravity + (2013) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 198. + Gandhi + (1982) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 199. + Persona + (1966) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 200. + Notorious + (1946) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 201. + The King's Speech + (2010) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 202. + Infernal Affairs + (2002) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 203. + Jaws + (1975) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 204. + Nausicaä of the Valley of the Wind + (1984) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 205. + Lagaan: Once Upon a Time in India + (2001) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.3/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 206. + Twelve Monkeys + (1995) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 207. + Fanny and Alexander + (1982) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 208. + La Strada + (1954) + + 8.1 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 209. + The Terminator + (1984) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 210. + The Night of the Hunter + (1955) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 211. + Ip Man + (2008) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 212. + Stalker + (1979) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 213. + Who's Afraid of Virginia Woolf? + (1966) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 214. + Groundhog Day + (1993) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 215. + The Big Sleep + (1946) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 216. + Dog Day Afternoon + (1975) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 217. + Rocky + (1976) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 218. + Harry Potter and the Deathly Hallows: Part 2 + (2011) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 219. + The Battle of Algiers + (1966) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 220. + La Haine + (1995) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 221. + Barry Lyndon + (1975) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 222. + Pirates of the Caribbean: The Curse of the Black Pearl + (2003) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 223. + Before Sunrise + (1995) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 224. + Shutter Island + (2010) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 225. + The Graduate + (1967) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 226. + Swades + (2004) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.5/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 227. + The Celebration + (1998) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 228. + The Hustler + (1961) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 229. + Monsters, Inc. + (2001) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 230. + Castle in the Sky + (1986) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 231. + A Christmas Story + (1983) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 232. + Memories of Murder + (2003) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 233. + Roman Holiday + (1953) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 234. + Underground + (1995) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.2/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 235. + Stalag 17 + (1953) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 236. + In the Mood for Love + (2000) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 237. + A Fistful of Dollars + (1964) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 238. + The Help + (2011) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 239. + Slumdog Millionaire + (2008) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 240. + The Hobbit: The Desolation of Smaug + (2013) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 241. + The Killing + (1956) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 242. + Elite Squad: The Enemy Within + (2010) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 243. + Rope + (1948) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 244. + Black Swan + (2010) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 245. + The Truman Show + (1998) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 246. + The Diving Bell and the Butterfly + (2007) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 247. + Three Colors: Red + (1994) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 248. + Beauty and the Beast + (1991) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 249. + La Dolce Vita + (1960) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8.1/10 + X +   +
      +
      +
      +
      +
      +
      + + + + + 250. + Jurassic Park + (1993) + + 8.0 + +
      + + RATE + +
      +
      + + + +   +   + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 8/10 + X +   +
      +
      +
      +
      +
      +
      +
      +
      +

      The formula for calculating the Top Rated 250 Titles gives a true Bayesian estimate:

      +
      weighted rating (WR) = (v ÷ (v+m)) × R + (m ÷ (v+m)) × C
      +

      Where:

      +
        +
      • R = average for the movie (mean) = (Rating)
      • +
      • v = number of votes for the movie = (votes)
      • +
      • m = minimum votes required to be listed in the Top 250 (currently 25000)
      • +
      • C = the mean vote across the whole report (currently 7.0)
      • +
      +

      For the Top 250, only votes from regular voters are considered.

      +
      +
      + +
      + +
      +
      + + + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html new file mode 100644 index 000000000..fc8c5b2f2 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html @@ -0,0 +1,1306 @@ + + + + +List of urban areas in the United Kingdom - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +

      List of urban areas in the United Kingdom

      +
      +
      From Wikipedia, the free encyclopedia
      +
      +
      + Jump to: navigation, search +
      +

      List of urban areas in the United Kingdom is a list of the most populous urban areas in 2011, as defined by the Office for National Statistics (ONS).

      +

      The detailed methodology of the process used by ONS in 2011 is set out in 2011 Built-up Areas - Methodology and Guidance, published in June 2013. In reporting the results of the 2011 UK census, ONS use the term "built-up area" rather than the term "urban area" used for previous censuses. However, it states that the criteria used to define "built-up area" are the same as those used previously, as follows:[1]

      +
      +

      "..the definition follows a ‘bricks and mortar’ approach, with areas defined as built-up land with a minimum area of 20 hectares (200,000 m2), while settlements within 200 metres of each other are linked. Built-up area sub-divisions are also identified to provide greater detail in the data, especially in the larger conurbations."

      +
      +

      In reporting the 2001 census, ONS gave a clearer definition of the term "built-up" as follows:

      +
      +

      "This comprises permanent structures and the land on which they are situated, including land enclosed by or closely associated with such structures; transportation corridors such as roads, railways and canals which have built up land on one or both sides, or which link built-up sites which are less than 200 metres apart; transportation features such as airports and operational airfields, railway yards, motorway service areas and car parks; mine buildings, excluding mineral workings and quarries; and any area completely surrounded by builtup sites. Areas such as playing fields and golf courses are excluded unless completely surrounded by builtup sites..."[2]

      +
      +

      A conurbation is formed when cities and towns expand sufficiently that their urban areas join up with each other. This process has happened many times in the United Kingdom. In many cases, there are differences of interpretation as to the limits of a conurbation - where it begins and ends. For the purposes of consistency, the list on this page uses the Office for National Statistics definition of built-up areas (previously defined as urban areas).

      +

      + +

      +

      List of most populous built-up areas in England and Wales[edit]

      +

      The list below shows the most populous Built-up areas in England and Wales as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 100,000 at the 2011 census.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      RankBuilt-up area[3]Population +

      (2011 Census)[3]

      +
      Area (m²)[3]Density (People/km²)[3]Major subdivisions[3]Metropolitan Area[4]Notable changes between 2001 and 2011 censuses [5]
      1Greater London Built-up area9,787,4261,737.95,630London Boroughs, Hemel Hempstead, Watford, Woking, Harlow, St Albans, BracknellLondonThe addition of Guildford, Harlow, Bracknell and St Albans
      2Greater Manchester Built-up area2,553,379630.34,051Manchester, Salford, Bolton, Stockport, Oldham, Rochdale, Bury, Trafford, TamesideManchesterThe addition of Golborne, Glossop and Newton-le-Willows
      3West Midlands Built-up area2,440,986598.94,076Birmingham, Wolverhampton, West Bromwich, Dudley, Walsall, SolihullBirmingham
      4West Yorkshire Built-up area1,777,934487.83,645Leeds, Bradford, Wakefield, Huddersfield, Dewsbury, Keighley, HalifaxLeeds-BradfordThe addition of Halifax
      5Liverpool Built-up area864,122199.64,329Liverpool, Bootle, Litherland, Crosby, Prescot, St. Helens, Ashton-in-MakerfieldLiverpoolThe addition of Ashton-in-Makerfield
      6South Hampshire Built-up area855,569192.04,455Southampton, Portsmouth, Eastleigh, Gosport, Fareham, Havant, HorndeanSouthampton-PortsmouthPortsmouth Urban Area and Southampton Urban Area combined into one. +

      The addition of Hedge End, Locks Heath, Bursledon and Whiteley. Stubbington and Lee-on-the-Solent are no longer part of the built-up area.

      +
      7Tyneside Built-up area774,891180.54,292Newcastle upon Tyne, Gateshead, South Shields, Tynemouth, Wallsend, Whitley Bay, JarrowNewcastle-SunderlandWashington, Chester-Le-Street, Hetton-le-Hole and Houghton-le-Spring are no longer part of the built-up area.
      8Nottingham Built-up area729,977176.44,139Nottingham, Beeston, Carlton, West Bridgford, Ilkeston, HucknallNottingham-Derby
      9Sheffield Built-up area685,368167.54,092Sheffield, Rotherham, RawmarshSheffield
      10Bristol Built-up area617,280144.44,274Bristol, Filton, Pill, Frampton Cotterell, WinterbourneBristol
      11Leicester Built-up area508,916109.44,653Leicester, Syston, Whetstone, Birstall, Narborough, EnderbyLeicesterRatby no longer part of the built-up area. +

      Addition of Narborough and Enderby

      +
      12Brighton and Hove Built-up area474,48589.45,304Brighton and Hove, Worthing, Littlehampton, Shoreham-by-SeaBrightonRottingdean, Saltdean and Findon are no longer part of the built-up area.
      13Bournemouth/Poole Built-up area466,266131.03,559Bournemouth, Poole, Christchurch, Ferndown, New Milton, Wimborne MinsterBournemouth/PooleFerndown and Wimborne Minster now part of the built-up area.
      14Cardiff Built-up area447,287102.34,370Cardiff, Caerphilly, Penarth, PontypriddCardiff-NewportCaerphilly and Pontypridd now part of the built-up area.
      15Teesside Built-up area376,633108.23,482Middlesbrough, Stockton-On-Tees, Billingham, RedcarMiddlesbroughEston & Southbank now part of Middlesbrough sub-division, no longer counted as separate sub-division
      16Stoke-on-Trent Built-up area372,775103.93,588Stoke-on-Trent, Newcastle-under-Lyme, KidsgroveStoke-on-Trent
      17Coventry Built-up area359,26281.34,420Coventry, BedworthBirmingham
      18Sunderland Built-up area335,41583.54,018Sunderland, Washington, Chester-Le-Street, Hetton-le-Hole, Houghton-le-SpringNewcastle-SunderlandAddition of Washington, Chester-Le-Street, Hetton-le-Hole and Houghton-le-Spring
      19Birkenhead Built-up area325,26488.23,687Birkenhead, Wallasey, Ellesmere Port, BebingtonLiverpool
      20Reading Built-up area318,01483.73,800Reading, Wokingham, Woodley, CrowthorneLondonBracknell no longer part of the built-up area.
      21Kingston upon Hull Built-up area314,01882.63,802Kingston upon Hull, Cottingham, HessleHull
      22Preston Built-up area313,32282.43,802Preston, Bamber Bridge, Chorley, Fulwood, LeylandPrestonThe addition of Longton and Adlington to the built-up area.
      23Newport Built-up area306,84484.23,643Newport, Pontypool, Cwmbran, Blackwood, Risca, Ystrad MynachCardiff-NewportPontypool, Cwmbran and Blackwood added to the built-up area.
      24Swansea Built-up area300,35287.63,431Swansea, Neath, Port Talbot, Ystradgynlais, PontardaweSwansea/Neath/Port TalbotYstradgynlais now part of the built-up area.
      25Southend-on-Sea Built-up area295,31071.84,111Southend-on-Sea, Hullbridge, Rayleigh, RochfordLondonHullbridge now part of the built-up area.
      26Derby Built-up area270,46864.14,219Derby, Borrowash, DuffieldNottingham-Derby
      27Plymouth Built-up area260,20359.74,356Plymouth, PlymstockPlymouth
      28Luton Built-up area258,01850.75,088Luton, Dunstable, Houghton RegisLondon
      29Farnborough/Aldershot Built-up area252,39778.53,217Farnborough, Aldershot, Camberley, Farnham, Frimley, Sandhurst, YateleyLondon
      30Medway Towns Built-up area243,93152.24,677Gillingham, Chatham, RochesterLondon
      31Blackpool Built-up area239,40961.33,908Blackpool, Lytham St Annes, Poulton-le-Fylde, Thornton, CleveleysBlackpoolFleetwood no longer forms part of the built-up area.
      32Milton Keynes Built-up area229,94162.53,678'Milton Keynes',[6] Bletchley, Newport Pagnell, Woburn SandsMilton KeynesThe addition of Woburn Sands.
      33Barnsley/Dearne Valley Built-up area223,28159.73,739Barnsley, Wath upon Dearne, Wombwell, HoylandSheffield
      34Northampton Built-up area215,96357.93,731Northampton, CollingtreeNorthampton
      35Norwich Built-up area213,16661.93,444Norwich, Taverham, Costessey, Cringleford, HellesdonNorwich
      36Swindon Built-up area185,60947.13,945Swindon, Broad Blunsdon, Blunsdon St AndrewSwindon
      37Crawley Built-up area180,50858.13,107Crawley, Horley, East Grinstead, Copthorne, Crawley DownLondonThe addition of East Grinstead, Copthorne and Crawley Down. +

      Reigate and Redhill no longer part of the built-up area.

      +
      38Ipswich Built-up area178,83549.13,639Ipswich, Kesgrave, WoodbridgeIpswichThe addition of Woodbridge.
      39Wigan Built-up area175,40543.84,009Wigan, Skelmersdale, Standish, Ince-in-MakerfieldLiverpool
      40Mansfield Built-up area171,95848.43,556Mansfield, Sutton-in-Ashfield, Kirkby-in-Ashfield, Mansfield WoodhouseNottingham-Derby
      41Oxford Built-up area171,38037.44,585Oxford, Kennington, WheatleyOxfordThe addition of Kennington and Wheatley.
      42Warrington Built-up area165,45644.93,686WarringtonLiverpool
      43Slough Built-up area163,77734.14,797Slough, Stoke Poges, PoyleLondon
      44Peterborough Built-up area163,37944.23,693Peterborough, FarcetPeterborough
      45Cambridge Built-up area158,43442.13,760Cambridge, Fen Ditton, Girton, HistonCambridgeAddition of Histon and Impington and Fen Ditton
      46Doncaster Built-up area158,14143.53,634Doncaster, Bentley, Armthorpe, SprotbroughSheffieldAddition of Bessacarr
      47York Built-up area153,71734.04,518York, EarswickYork
      48Gloucester Built-up area150,05340.43,718Gloucester, InnsworthGloucester-Cheltenham
      49Burnley Built-up area149,42235.74,183Burnley, Colne, NelsonBlackburn-Burnley
      50Telford Built-up area147,98047.73,103Telford, BroseleyTelford
      51Blackburn Built-up area146,52135.64,115Blackburn, DarwenBlackburn-Burnley
      52Basildon Built-up area144,85937.13,902Basildon, Wickford, Ramsden Heath, North BenfleetLondonThe addition of Wickford to the urban area.
      53Grimsby Built-up area134,16035.33,804Grimsby, Cleethorpes, WalthamGrimsbyNew Waltham is no longer part of the Built-up area.
      54Hastings Built-up area133,42233.24,019Hastings, BexhillHastings
      55High Wycombe Built-up area133,20439.23,398High Wycombe, Cookham, Hughenden ValleyLondon
      56Thanet Built-up area125,37027.94,495Margate, Ramsgate, BroadstairsThanet
      57Accrington/Rossendale Built-up area125,05930.04,168Accrington, Rawtenstall, Bacup, Great Harwood, Haslingden, OswaldtwistleBlackburn-BurnleyAccrington Urban Area and Rossendale Urban Area combined.
      58Burton-upon-Trent Built-up area122,19935.03,487Burton-upon-Trent, SwadlincoteBurton-upon-TrentThe addition of Swadlincote, Stapenhill and Winshill[7]
      59Colchester Built-up area121,85932.73,732Colchester, Marks TeyColchester
      60Eastbourne Built-up area118,21925.14,705Eastbourne, PolegateBrighton
      61Exeter Built-up area117,76328.54,133Exeter, TopshamExeter
      62Cheltenham Built-up area116,44728.94,034Cheltenham,Gloucester-Cheltenham
      63Paignton/Torquay Built-up area115,41031.53,667Paignton, Torquay, MarldonTorbay
      64Lincoln Built-up area114,87932.73,518Lincoln, North HykehamLincoln
      65Chesterfield Built-up area113,05734.63,263Chesterfield, Staveley, Wingerworth, HolymoorsideSheffieldAddition of Wingerworth to the Built-up area.
      66Chelmsford Built-up area111,51126.24,259Chelmsford, Little WalthamLondon
      67Basingstoke Built-up area107,64229.43,662BasingstokeLondon
      68Maidstone Built-up area107,62725.44,229MaidstoneLondon
      69Bedford Built-up area106,94024.84,309Bedford, KempstonBedford
      70Worcester Built-up area101,65924.74,121Worcester, NortonWorcester
      +

      List of most populous urban areas in Scotland[edit]

      +

      The list below shows the most populous Built-up areas in Scotland as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 50,000 at the 2011 census.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      RankUrban Area[8]Population +

      (2001 Census)

      +
      Area (km²)Density (People/km²)Major subdivisionsMetropolitan Area[4]
      1Greater Glasgow976,970267.463,653Glasgow, Paisley, ClydebankGlasgow
      2Edinburgh488,610122.973,973Edinburgh, MusselburghEdinburgh
      3Aberdeen209,46065.073,219Aberdeen, Cove Bay, DyceAberdeen
      4Dundee157,69049.703,173DundeeDundee
      5Motherwell and Bellshill124,53044.482,800Motherwell, Bellshill, WishawGlasgow
      6Falkirk100,48043.392,316Falkirk, Grangemouth, Carron, Polmont, StenhousemuirFalkirk
      6Coatbridge and Airdrie90,33023.503,844Airdrie, Bargeddie, CoatbridgeGlasgow
      7Hamilton82,31027.193,028Blantyre, HamiltonGlasgow
      8East Kilbride74,74024.293,077East KilbrideGlasgow
      9Dunfermline71,82027.902,574Dunfermline, Rosyth, InverkeithingDunfermline
      10Greenock69,45020.523,384Greenock, Gourock, Port GlasgowGlasgow
      11Ayr62,87026.412,280Ayr, PrestwickAyr
      12Livingston60,03027.092,216Livingston, East Calder, Mid CalderEdinburgh
      13Cumbernauld51,61021.062,451CumbernauldGlasgow
      14Kilmarnock51,15016.643,075KilmarnockKilmarnock
      +

      List of most populous urban areas in Northern Ireland[edit]

      +

      The list below shows the most populous Built-up areas in Northern Ireland as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 50,000 at the 2001 census.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      RankUrban Area[9]Population +

      (2001 Census)

      +
      Area (km²)Density (People/km²)Major subdivisionsMetropolitan Area[4]
      1Belfast Metropolitan Urban Area579,554161.672,990.2Belfast, Castlereagh, Newtownabbey, Lisburn, BangorBelfast
      2Derry Urban Area90,73637.182,440Derry, Culmore, Strathfoyle, Newbuildings, CregganLondonderry
      3Craigavon57,68537.701,530Craigavon, Lurgan, Portadown, BlearyCraigavon
      +

      Commentary[edit]

      +

      There is a spectrum that can be drawn between the conurbations that have a clear 'head' (such as Bristol and Leicester) to those that do not, known as multi-centred conurbations (such as Bournemouth/Poole and Teesside), via ones that are more borderline (West Midlands). In the case of the West Midlands, for example, the largest city, Birmingham, expanded massively and is now considered to include areas that were formerly independent towns, such as Sutton Coldfield. However, here it stopped, with the Black Country and Wolverhampton retaining strong identities.[citation needed]

      +

      There are also various large areas in which the amount of development is substantial, although not contiguous. Heavily built up areas of this type include:

      + +

      See also[edit]

      + +

      References and Notes[edit]

      +
      +
        +
      1. ^ Office for National Statistics, 2011 Built-up Areas - Methodology and Guidance, p.3
      2. +
      3. ^ ONS definition of urban areas[dead link]
      4. +
      5. ^ a b c d e "2011 Census - Built-up areas". ONS. Retrieved 1 July 2013. 
      6. +
      7. ^ a b c d e http://www.espon.eu/export/sites/default/Documents/Projects/ESPON2006Projects/StudiesScientificSupportProjects/UrbanFunctions/fr-1.4.3_April2007-final.pdf#page=122
      8. +
      9. ^ Some of the names of subdivisions and the areas they represent have changed between the two censuses. So it may look as though an area has become part of a built-up area between the two censuses but it may have already been part of the 2001 urban area but was included under a different subdivision.
      10. +
      11. ^ The urban sub-area that the ONS has called 'Milton Keynes' is actually just the northern 80% (approx) of Milton Keynes proper. The ONS has separated out Bletchley (which is about 20% of MK) for reasons that are not explained.
      12. +
      13. ^ Stapenhill and Winshill were treated as a separate urban area in the 2001 census but in the 2011 census they were treated as part of the Burton-upon-Trent subdivision
      14. +
      15. ^ Mid-2012 Population Estimates for Settlements and Localities in Scotland General Register Office for Scotland
      16. +
      17. ^ "NISRA - Northern Ireland Statistics and Research Agency". Nisranew.nisra.gov.uk. Retrieved 2012-11-15. 
      18. +
      19. ^ "Shrinking cities and growing regions – emerging trends of new rural-urban relationships in the UK and Germany (Manchester eScholar - The University of Manchester)". Escholar.manchester.ac.uk. Retrieved 2012-11-15. 
      20. +
      21. ^ Martin Wainwright (2006-10-23). "Seeking peace and quiet? Here's where to find it | UK news". The Guardian. Retrieved 2012-11-15. 
      22. +
      +
      + + + + + + + + + + +
      +
      +
      +
      +
      +

      Navigation menu

      + +
      + +
      + + +
      +
      + + + +
      +
      + +
      + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml b/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml new file mode 100644 index 000000000..b84928ddd --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals.json b/tests/FSharp.Data.Core.Tests/Data/optionals.json new file mode 100644 index 000000000..3d6ed8d07 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/optionals.json @@ -0,0 +1,23 @@ +{ "recordProperty" : { "stringProperty": "foo", + "intProperty": 2, + "int64Property": 2222222222, + "decimalProperty" : 2.5, + "floatProperty": 222222222222222222222222222222222222222222, + "boolProperty" : false, + "dateProperty" : "2005/5/5", + "guidProperty" : "{312B0D64-B27C-4ED2-B2A6-89EA6DD299F5}" }, + "nullProperty" : null, + "emptyStringProperty": "", + "emptyArrayProperty" : [], + "oneElementArrayProperty" : [2], + "multipleElementsArrayProperty" : [2,4,5,6], + "arrayOfObjects" : [ { "heterogeneousArrayProperty": [1,2,false,"foo"], "heterogeneousProperty": 2, "heterogeneousOptionalProperty": 2 }, + { "heterogeneousArrayProperty": [1,2,false], "heterogeneousProperty": true, "heterogeneousOptionalProperty": false }, + { "heterogeneousArrayProperty": [false], "heterogeneousProperty": "2005/5/5" } ], + "optionalPrimitives" : [ { "optionalBecauseMissing" : 1, "optionalBecauseNull" : 2, "optionalBecauseEmptyString" : 3, "notOptional" : 4, "nullNotOptional" : null }, + { "optionalBecauseNull" : null, "optionalBecauseEmptyString" : "", "notOptional" : "5" } ], + "optionalRecords" : [ { "optionalBecauseMissing" : {"a":1}, "optionalBecauseNull" : {"a":1}, "optionalBecauseEmptyString" : {"a":2}, "notOptional" : {"a":3} }, + { "optionalBecauseNull" : null, "optionalBecauseEmptyString" : "", "notOptional" : {"a":4} } ], + "heterogeneousArray" : [ { "a" : 1 }, 2, false, [5, 6, 7], [8, false, { "a": 3 }] ], + "heterogeneousRecords" : [ { "b" : { "a" : 1 }}, { "b" : 2}, { "b" : false}, { "b" : [5, 6, 7]}, { "b" : [8, false, { "a": 3 }] } ] +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals1.xml b/tests/FSharp.Data.Core.Tests/Data/optionals1.xml new file mode 100644 index 000000000..ed9a766c2 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/optionals1.xml @@ -0,0 +1,13 @@ + + + A + B + + + C + + + D + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals2.xml b/tests/FSharp.Data.Core.Tests/Data/optionals2.xml new file mode 100644 index 000000000..617dc761b --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/optionals2.xml @@ -0,0 +1,17 @@ + + + + + + + + A + + + + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals3.xml b/tests/FSharp.Data.Core.Tests/Data/optionals3.xml new file mode 100644 index 000000000..9aec329c5 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/optionals3.xml @@ -0,0 +1,20 @@ + + + + + A + + + + + + + + + + + B + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/po.xsd b/tests/FSharp.Data.Core.Tests/Data/po.xsd new file mode 100644 index 000000000..bdb0a75a7 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/po.xsd @@ -0,0 +1,76 @@ + + + + Purchase order schema for Example.com. + Copyright 2000 Example.com. All rights reserved. + + + + + + + + + + + + + + + + + + + + + Purchase order schema for Example.Microsoft.com. + Copyright 2001 Example.Microsoft.com. All rights reserved. + + + Application info. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/projects.json b/tests/FSharp.Data.Core.Tests/Data/projects.json new file mode 100644 index 000000000..899a13a8e --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/projects.json @@ -0,0 +1,8 @@ +{ + "ordercontainer": { + "backgrounds": { + "background": { "title": { "text": "purple stars" } } + }, + "project": { "title": { "text": "Avery" } } + } +} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/projects.xml b/tests/FSharp.Data.Core.Tests/Data/projects.xml new file mode 100644 index 000000000..77f3dadaf --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/projects.xml @@ -0,0 +1,11 @@ + + + + + purple stars + + + + Avery + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/reddit.json b/tests/FSharp.Data.Core.Tests/Data/reddit.json new file mode 100644 index 000000000..0b32cbbe7 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/reddit.json @@ -0,0 +1 @@ +{"kind": "Listing", "data": {"modhash": "", "children": [{"kind": "t1", "data": {"subreddit_id": "t5_2u479", "link_title": "I'm fundraising for another billboard, this one outside the FCC offices, to help save net neutrality.", "banned_by": null, "subreddit": "Stand", "link_author": "kn0thing", "likes": null, "replies": null, "saved": false, "id": "ch2xdud", "gilded": 0, "author": "kn0thing", "parent_id": "t1_ch2weca", "approved_by": null, "body": "I love what YOU'RE DOING. Thanks a ton.", "edited": false, "author_flair_css_class": null, "downs": 0, "body_html": "<div class=\"md\"><p>I love what YOU&#39;RE DOING. Thanks a ton.</p>\n</div>", "link_id": "t3_2424px", "score_hidden": false, "name": "t1_ch2xdud", "created": 1398586311.0, "author_flair_text": null, "link_url": "https://www.crowdtilt.com/campaigns/save-net-neutrality-billboard-in-fccs-backyard", "created_utc": 1398557511.0, "ups": 3, "num_reports": null, "distinguished": null}}], "after": "t1_ch2xdud", "before": null}} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html b/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html new file mode 100644 index 000000000..b8d154a26 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html @@ -0,0 +1,20023 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + + + +
      + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Movies

      + + + + +
      +
      + + + + +

      Opening

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 85% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Mystery Road29/8
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 40% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Quiet Ones11/4
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 56% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +L'�trange couleur des larmes de ton corps (The Strange Colour of Your Body's Tears)11/4
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 95% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Lunchbox11/4
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Last Days On Mars11/4
      +
      + Show More +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + +
      + + + + + +

      Weekend's Widest Releases

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 71% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Rio 2 + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 89% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Captain America: The Winter Soldier + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 40% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Divergent + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 79% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Muppets Most Wanted + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 76% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Noah + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 96% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Lego Movie + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 92% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Grand Budapest Hotel + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 59% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Non-Stop + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Need For Speed + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 88% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Double + + +
      +
      + Show More +
      + +

      Coming Soon

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 24% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Pompeii02/5
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 32% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +3 Days To Kill20/6
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 88% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Wind Rises09/5
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Oculus13/6
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + —— + + + + + + + + + + + + + + + + + + + + + + + + + + +Heaven Is for Real09/5
      +
      + Show More +
      + + + + + + + +

      Top Rentals

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 89% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Hunger Games: Catching Fire +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 65% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Thor: The Dark World +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 89% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Frozen +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 75% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Hobbit: The Desolation Of Sm... +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 70% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Cloudy with a Chance of Meatball... +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 93% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Captain Phillips +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 78% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +42 +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 80% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Saving Mr. Banks +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 61% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Ender's Game +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 99% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Godfather, Part II +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 67% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Turbo +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 82% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Prisoners +
      + + + + + + + + +
      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Showtimes & Tickets

      + + + + +
      +
      + + +
      + + + + +
      + + + + +
      + +
      + + + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Movie & TV News

      + + + + +
      +
      + +
      Comments
      +

      Featured on RT

      +
        + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Game of Thrones Premiere Reviews Are In! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mickey Rooney: 1920-2014 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Box Office: Record Opening for Captain America + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 41 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Video: Captain America's Red White and Blue Carpet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Weekly Ketchup: The Fantastic Four Reboot Casts Its Doctor Doom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 52 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Five Favorite Films with Sean Astin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7 + + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Video: Captain America Isn't Getting Any + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + +
      • + +
      + + +

      Top Headlines

      +
        + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Universal Planning Battlestar Galactica Movie Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breck Eisner Directing Karate Kid Sequel Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Studios File New Lawsuit Against Megaupload New York Times in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Wars: Episode VII Has Already Started Shooting Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Goonies Sequel May Finally Happen Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Game of Thrones Premiere Crashes HBO Go Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chiwetel Ejiofor Wanted for Bond 24 Variety in new window + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + +
      • + +
      + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      + + + + + + + + + + + + + + + + + + + +Celebrities

      + + + +
      + + + + + + + + + + + + + + + + + + + +View All
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Irfan Khan +
      +

      + + + + + + + + + + + + + + + + + + + + + + +Irfan Khan

      + +

      Highest Rated:

      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Gunday
      + +

      Lowest Rated:

      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 35% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +New York, I Love You
      + +

      Filmography

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 95% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Lunchbox
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Gunday
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 87% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Life of Pi
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + —— + + + + + + + + + + + + + + + + + + + + + + + + + + +The Amazing Spider-Man 2
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 94% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Slumdog Millionaire
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 68% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The Darjeeling Limited
      +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Around the Community

      + + + + +
      +
      + + + + + + + + +

      Today's Hot List Entries

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Raiders of the Lost Ark + + + +
      +
        + +
      1. + + + + + + + + + + + + + + + + + + + + + + + + +Raiders of the Lost Ark (1981)
      2. + +
      3. + + + + + + + + + + + + + + + + + + + + + + + + +Inception (2010)
      4. + +
      5. + + + + + + + + + + + + + + + + + + + + + + + + +The Hunger Games: Catching Fire (2013)
      6. + +
      7. + + + + + + + + + + + + + + + + + + + + + + + + +Harry Potter and the Sorcerer's Stone (2001)
      8. + +
      9. + + + + + + + + + + + + + + + + + + + + + + + + +Captain America: The Winter Soldier (2014)
      10. + +
      +
      +
      + +

      Contributors' Hub

      + + +
      + +
      + + + + + + + + + + + +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Featured Trailers & Clips

      + + + + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Son Of God +
      +
      Son Of God
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + +

      Picture Galleries

      + + + + +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Emma Watson +
      +
      Emma Watson
      +
      +
      + + + + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Jennifer Connelly +
      +
      Jennifer Connelly
      +
      +
      + + + + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Douglas Booth +
      +
      Douglas Booth
      +
      +
      + + + + + + +
      + + + + +
      + +
      + + + + + + + + + + + + + + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + +
      + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + + +
      + + + + + +
      + + + + +
      + Find us on:      +     +     +     +
      + + +
      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/search.atom.xml b/tests/FSharp.Data.Core.Tests/Data/search.atom.xml new file mode 100644 index 000000000..70e642dac --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/search.atom.xml @@ -0,0 +1,297 @@ + + + tag:search.twitter.com,2005:search/Windows8 + + + Windows8 - Twitter Search + + + 2013-04-02T20:06:39Z + 15 + + + tag:search.twitter.com,2005:319179090185818113 + 2013-04-02T20:06:39Z + + J'AI plus de personnes pour le défis flash !! #windows8 #acer #tryandlikeit + J'AI plus de personnes pour le défis flash !! #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:06:39Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + MOURETTEDelph (MOURETTE) + http://twitter.com/MOURETTEDelph + + + + tag:search.twitter.com,2005:319179088025763841 + 2013-04-02T20:06:39Z + + bcp de mes camarades sont intéressent à la tablette #windows8 #acer #tryandlikeit + bcp de mes camarades sont intéressent à la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:06:39Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319179081969180673 + 2013-04-02T20:06:37Z + + Après celui de la VivoTab RT, FraWin vous propose le Test de l’Acer Iconia W510, un nouvel hybride ordinateur #windows8 #acer #tryandlikeit + Après celui de la VivoTab RT, FraWin vous propose le Test de l’Acer Iconia W510, un nouvel hybride ordinateur #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:06:37Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + AnnaSicily (chO colat ) + http://twitter.com/AnnaSicily + + + + tag:search.twitter.com,2005:319178892155944960 + 2013-04-02T20:05:52Z + + regarde le film avec la tablette est super agreable #windows8 #acer #tryandlikeit + regarde le film avec la tablette est super agreable #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:05:52Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319178777039097857 + 2013-04-02T20:05:25Z + + The #Windows8 productivity apps get more productive http://t.co/Ov1lY8VAM4 + The #<em>Windows8</em> productivity apps get more productive <a href="http://t.co/Ov1lY8VAM4">http://t.co/Ov1lY8VAM4</a> + 2013-04-02T20:05:25Z + + + + recent + + <a href="http://www.hootsuite.com">HootSuite</a> + en + + ConverterTech (Shawn Allaway) + http://twitter.com/ConverterTech + + + + tag:search.twitter.com,2005:319178745753792512 + 2013-04-02T20:05:17Z + + ecoute la musique avec la tablette est super cool, #windows8 #acer #tryandlikeit + ecoute la musique avec la tablette est super cool, #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:05:17Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319178625767317504 + 2013-04-02T20:04:49Z + + Step-By-Step: Deploying Windows 8 w/ System Center 2012 SP1 http://t.co/vm9VNzUdpA #CANITPRO #ITPRO #myITForum #SysCtr #Windows8 #ConfigMgr + Step-By-Step: Deploying Windows 8 w/ System Center 2012 SP1 <a href="http://t.co/vm9VNzUdpA">http://t.co/vm9VNzUdpA</a> <a href="http://search.twitter.com/search?q=%23CANITPRO" title="#CANITPRO" class=" ">#CANITPRO</a> <a href="http://search.twitter.com/search?q=%23ITPRO" title="#ITPRO" class=" ">#ITPRO</a> <a href="http://search.twitter.com/search?q=%23myITForum" title="#myITForum" class=" ">#myITForum</a> <a href="http://search.twitter.com/search?q=%23SysCtr" title="#SysCtr" class=" ">#SysCtr</a> #<em>Windows8</em> <a href="http://search.twitter.com/search?q=%23ConfigMgr" title="#ConfigMgr" class=" ">#ConfigMgr</a> + 2013-04-02T20:04:49Z + + + + recent + + <a href="http://www.tweetdeck.com">TweetDeck</a> + en + + WirelessLife (Anthony Bartolo) + http://twitter.com/WirelessLife + + + + tag:search.twitter.com,2005:319178494506586112 + 2013-04-02T20:04:17Z + + ecoute la musique avec la tablette est super cool #windows8 #acer #tryandlikeit + ecoute la musique avec la tablette est super cool #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:04:17Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319178479600013312 + 2013-04-02T20:04:14Z + + Messi n'est plus sur la pelouse... #windows8 #acer #tryandlikeit + Messi n'est plus sur la pelouse... #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:04:14Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Geek_Erick (Erick Péchereau) + http://twitter.com/Geek_Erick + + + + tag:search.twitter.com,2005:319178376592117760 + 2013-04-02T20:03:49Z + + No alcanzaron ni a vender el #Windows8 y sale el 8.1 + No alcanzaron ni a vender el #<em>Windows8</em> y sale el 8.1 + 2013-04-02T20:03:49Z + + + + recent + + <a href="http://twitter.com/download/android">Twitter for Android</a> + es + + ppanchaa (pancha♡) + http://twitter.com/ppanchaa + + + + tag:search.twitter.com,2005:319178076124753920 + 2013-04-02T20:02:38Z + + Playing Resident Evil 6 #Windows8; 1 and 2 great when they first came out, loved 5, now see what 6 has to offer,graphics great so far. + Playing Resident Evil 6 #<em>Windows8</em>; 1 and 2 great when they first came out, loved 5, now see what 6 has to offer,graphics great so far. + 2013-04-02T20:02:38Z + + + + recent + + <a href="http://twitter.com/download/iphone">Twitter for iPhone</a> + en + + SteBar1 (Steve Bartlett) + http://twitter.com/SteBar1 + + + + tag:search.twitter.com,2005:319178055564271616 + 2013-04-02T20:02:33Z + + RT @pierreroman: Step-By-Step: Deploying Windows 8 with System Center 2012 Service Pack 1 : http://t.co/CvlkQ02SFq # CanITPro #SysCtr # ... + RT @<a class=" " href="https://twitter.com/pierreroman">pierreroman</a>: Step-By-Step: Deploying Windows 8 with System Center 2012 Service Pack 1 : <a href="http://t.co/CvlkQ02SFq">http://t.co/CvlkQ02SFq</a> # CanITPro <a href="http://search.twitter.com/search?q=%23SysCtr" title="#SysCtr" class=" ">#SysCtr</a> # ... + 2013-04-02T20:02:33Z + + + + recent + + <a href="http://www.tweetdeck.com">TweetDeck</a> + en + + DamirB (DamirB) + http://twitter.com/DamirB + + + + tag:search.twitter.com,2005:319177851528171520 + 2013-04-02T20:01:44Z + + je me sens très très bien utiliser la tablette #windows8 #acer #tryandlikeit + je me sens très très bien utiliser la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:01:44Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319177690483671041 + 2013-04-02T20:01:06Z + + je bien profit la tablette #windows8 #acer #tryandlikeit + je bien profit la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> + 2013-04-02T20:01:06Z + + + + recent + + <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> + fr + + Flavieli1 (Flavie li) + http://twitter.com/Flavieli1 + + + + tag:search.twitter.com,2005:319177470978961409 + 2013-04-02T20:00:13Z + + News: How to keep the #Windows8 Display ON during audio/video playback? http://t.co/ba4ecWzSp2 via @kunal2383 #win8dev #winrt + News: How to keep the #<em>Windows8</em> Display ON during audio/video playback? <a href="http://t.co/ba4ecWzSp2">http://t.co/ba4ecWzSp2</a> via @<a class=" " href="https://twitter.com/kunal2383">kunal2383</a> <a href="http://search.twitter.com/search?q=%23win8dev" title="#win8dev" class=" ">#win8dev</a> <a href="http://search.twitter.com/search?q=%23winrt" title="#winrt" class=" ">#winrt</a> + 2013-04-02T20:00:13Z + + + + recent + + <a href="http://bufferapp.com">Buffer</a> + en + + silverlightshow (silverlightshow) + http://twitter.com/silverlightshow + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv b/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv new file mode 100644 index 000000000..bdcdea7e7 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv @@ -0,0 +1,201 @@ +Game,Bat1,Bat2,Runs,Wkts,Conceded,Caught,Stumped,,Opposition,Ground,StartDate +1,15,DNB,15,0,25,0,0,,v Pakistan,Karachi,11/15/1989 +2,59,8,67,-,-,1,0,,v Pakistan,Faisalabad,11/23/1989 +3,41,-,41,-,-,0,0,,v Pakistan,Lahore,12/1/89 +4,35,57,92,-,-,0,0,,v Pakistan,Sialkot,12/9/89 +5,0,24,24,-,-,0,0,,v New Zealand,Christchurch,2/2/90 +6,88,-,88,-,-,0,0,,v New Zealand,Napier,2/9/90 +7,5,DNB,5,-,-,1,0,,v New Zealand,Auckland,2/22/1990 +8,10,27,37,-,-,1,0,,v England,Lord's,7/26/1990 +9,68,119*,187,-,-,2,0,,v England,Manchester,8/9/90 +10,21,-,21,-,-,0,0,,v England,The Oval,8/23/1990 +11,11,-,11,-,-,0,0,,v Sri Lanka,Chandigarh,11/23/1990 +12,16,7,23,0,13,0,0,,v Australia,Brisbane,11/29/1991 +13,15,40,55,0,16,2,0,,v Australia,Melbourne,12/26/1991 +14,148*,-,148,1,2,1,0,,v Australia,Sydney,1/2/92 +15,6,17,23,2,54,1,0,,v Australia,Adelaide,1/25/1992 +16,114,5,119,0,9,1,0,,v Australia,Perth,2/1/92 +17,0,-,0,0,8,0,0,,v Zimbabwe,Harare,10/18/1992 +18,11,-,11,0,3,2,0,,v South Africa,Durban,11/13/1992 +19,111,1,112,0,2,1,0,,v South Africa,Johannesburg,11/26/1992 +20,6,0,6,1,9,0,0,,v South Africa,Port Elizabeth,12/26/1992 +21,73,DNB,73,-,-,1,0,,v South Africa,Cape Town,1/2/93 +22,50,9*,59,-,-,1,0,,v England,Kolkata,1/29/1993 +23,165,-,165,0,9,2,0,,v England,Chennai,2/11/93 +24,78,-,78,-,-,1,0,,v England,Mumbai,2/19/1993 +25,62,-,62,0,11,0,0,,v Zimbabwe,Delhi,3/13/1993 +26,TDNB,-,-,-,-,0,0,,v Sri Lanka,Kandy,7/17/1993 +27,28,104*,132,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/27/1993 +28,71,-,71,0,4,3,0,,v Sri Lanka,Colombo (PSS),8/4/93 +29,142,-,142,-,-,0,0,,v Sri Lanka,Lucknow,1/18/1994 +30,96,-,96,-,-,2,0,,v Sri Lanka,Bangalore,1/26/1994 +31,6,-,6,0,7,0,0,,v Sri Lanka,Ahmedabad,2/8/94 +32,43,11*,54,-,-,0,0,,v New Zealand,Hamilton,3/19/1994 +33,34,85,119,0,9,3,0,,v West Indies,Mumbai,11/18/1994 +34,179,54,233,-,-,2,0,,v West Indies,Nagpur,12/1/94 +35,40,10,50,0,10,0,0,,v West Indies,Mohali,12/10/1994 +36,4,0*,4,-,-,3,0,,v New Zealand,Bangalore,10/18/1995 +37,52*,-,52,-,-,-,-,,v New Zealand,Chennai,10/25/1995 +38,2,-,2,-,-,0,0,,v New Zealand,Cuttack,11/8/95 +39,24,122,146,-,-,0,0,,v England,Birmingham,6/6/96 +40,31,-,31,0,1,2,0,,v England,Lord's,6/20/1996 +41,177,74,251,0,28,0,0,,v England,Nottingham,7/4/96 +42,10,0,10,-,-,0,0,,v Australia,Delhi,10/10/1996 +43,42,7,49,-,-,0,0,,v South Africa,Ahmedabad,11/20/1996 +44,18,2,20,-,-,0,0,,v South Africa,Kolkata,11/27/1996 +45,61,36,97,-,-,1,0,,v South Africa,Kanpur,12/8/96 +46,15,4,19,0,0,2,0,,v South Africa,Durban,12/26/1996 +47,169,9,178,-,-,1,0,,v South Africa,Cape Town,1/2/97 +48,35,9,44,0,18,0,0,,v South Africa,Johannesburg,1/16/1997 +49,7,15*,22,0,9,1,0,,v West Indies,Kingston,3/6/97 +50,88,-,88,-,-,0,0,,v West Indies,Port of Spain,3/14/1997 +51,92,4,96,-,-,3,0,,v West Indies,Bridgetown,3/27/1997 +52,DNB,-,-,-,-,1,0,,v West Indies,St John's,4/4/97 +53,83,-,83,-,-,0,0,,v West Indies,Georgetown,4/17/1997 +54,143,-,143,0,2,0,0,,v Sri Lanka,Colombo (RPS),8/2/97 +55,139,8,147,-,-,1,0,,v Sri Lanka,Colombo (SSC),8/9/97 +56,23,-,23,-,-,1,0,,v Sri Lanka,Mohali,11/19/1997 +57,15,-,15,-,-,-,-,,v Sri Lanka,Nagpur,11/26/1997 +58,148,13,161,0,0,1,0,,v Sri Lanka,Mumbai,12/3/97 +59,4,155*,159,-,-,1,0,,v Australia,Chennai,3/6/98 +60,79,-,79,0,6,0,0,,v Australia,Kolkata,3/18/1998 +61,177,31,208,1,41,1,0,,v Australia,Bangalore,3/25/1998 +62,34,7,41,-,-,0,0,,v Zimbabwe,Harare,10/7/98 +63,47,113,160,2,15,1,0,,v New Zealand,Wellington,12/26/1998 +64,67,DNB,67,2,53,0,0,,v New Zealand,Hamilton,1/2/99 +65,0,136,136,3,45,0,0,,v Pakistan,Chennai,1/28/1999 +66,6,29,35,-,-,0,0,,v Pakistan,Delhi,2/4/99 +67,0,9,9,1,18,0,0,,v Pakistan,Kolkata,2/16/1999 +68,53,124*,177,0,16,0,0,,v Sri Lanka,Colombo (SSC),2/24/1999 +69,18,126*,144,0,11,0,0,,v New Zealand,Mohali,10/10/1999 +70,15,44*,59,-,-,2,0,,v New Zealand,Kanpur,10/22/1999 +71,217,15,232,0,19,0,0,,v New Zealand,Ahmedabad,10/29/1999 +72,61,0,61,0,12,0,0,,v Australia,Adelaide,12/10/1999 +73,116,52,168,-,-,0,0,,v Australia,Melbourne,12/26/1999 +74,45,4,49,1,34,0,0,,v Australia,Sydney,1/2/00 +75,97,8,105,3,14,0,0,,v South Africa,Mumbai,2/24/2000 +76,21,20,41,0,33,2,0,,v South Africa,Bangalore,3/2/00 +77,18,DNB,18,1,34,0,0,,v Bangladesh,Dhaka,11/10/2000 +78,122,39,161,1,61,1,0,,v Zimbabwe,Delhi,11/18/2000 +79,201*,-,201,0,26,2,0,,v Zimbabwe,Nagpur,11/25/2000 +80,76,65,141,0,35,1,0,,v Australia,Mumbai,2/27/2001 +81,10,10,20,3,38,0,0,,v Australia,Kolkata,3/11/01 +82,126,17,143,0,78,0,0,,v Australia,Chennai,3/18/2001 +83,74,36*,110,0,23,0,0,,v Zimbabwe,Bulawayo,6/7/01 +84,20,69,89,1,26,0,0,,v Zimbabwe,Harare,6/15/2001 +85,155,15,170,0,27,0,0,,v South Africa,Bloemfontein,11/3/01 +86,1,22*,23,1,32,0,0,,v South Africa,Port Elizabeth,11/16/2001 +87,88,DNB,88,0,4,0,0,,v England,Mohali,12/3/01 +88,103,26,129,1,27,3,0,,v England,Ahmedabad,12/11/2001 +89,90,-,90,0,19,1,0,,v England,Bangalore,12/19/2001 +90,176,-,176,0,11,1,0,,v Zimbabwe,Nagpur,2/21/2002 +91,36,42,78,0,6,1,0,,v Zimbabwe,Delhi,2/28/2002 +92,79,-,79,0,18,0,0,,v West Indies,Georgetown,4/11/02 +93,117,0,117,0,6,1,0,,v West Indies,Port of Spain,4/19/2002 +94,0,8,8,0,8,1,0,,v West Indies,Bridgetown,5/2/02 +95,0,-,0,2,107,0,0,,v West Indies,St John's,5/10/02 +96,41,86,127,-,-,0,0,,v West Indies,Kingston,5/18/2002 +97,16,12,28,0,14,1,0,,v England,Lord's,7/25/2002 +98,34,92,126,0,15,0,0,,v England,Nottingham,8/8/02 +99,193,-,193,-,-,0,0,,v England,Leeds,8/22/2002 +100,54,-,54,0,4,0,0,,v England,The Oval,9/5/02 +101,35,-,35,0,2,1,0,,v West Indies,Mumbai,10/9/02 +102,43,16*,59,-,-,1,0,,v West Indies,Chennai,10/17/2002 +103,36,176,212,0,33,0,0,,v West Indies,Kolkata,10/30/2002 +104,8,51,59,-,-,0,0,,v New Zealand,Wellington,12/12/2002 +105,9,32,41,-,-,1,0,,v New Zealand,Hamilton,12/19/2002 +106,8,7,15,0,45,0,0,,v New Zealand,Ahmedabad,10/8/03 +107,55,1,56,1,55,0,0,,v New Zealand,Mohali,10/16/2003 +108,0,DNB,0,0,9,0,0,,v Australia,Brisbane,12/4/03 +109,1,37,38,2,39,0,0,,v Australia,Adelaide,12/12/2003 +110,0,44,44,1,57,2,0,,v Australia,Melbourne,12/26/2003 +111,241*,60*,301,0,36,1,0,,v Australia,Sydney,1/2/04 +112,194*,-,194,2,59,1,0,,v Pakistan,Multan,3/28/2004 +113,2,8,10,1,38,0,0,,v Pakistan,Lahore,4/5/04 +114,1,-,1,1,1,0,0,,v Pakistan,Rawalpindi,4/13/2004 +115,8,2,10,0,41,0,0,,v Australia,Nagpur,10/26/2004 +116,5,55,60,-,-,1,0,,v Australia,Mumbai,11/3/04 +117,3,-,3,0,54,0,0,,v South Africa,Kanpur,11/20/2004 +118,20,32*,52,0,8,0,0,,v South Africa,Kolkata,11/28/2004 +119,248*,-,248,-,-,2,0,,v Bangladesh,Dhaka,12/10/2004 +120,36,-,36,1,39,0,0,,v Bangladesh,Chittagong,12/17/2004 +121,94,DNB,94,0,30,0,0,,v Pakistan,Mohali,3/8/05 +122,52,52,104,-,-,2,0,,v Pakistan,Kolkata,3/16/2005 +123,41,16,57,1,76,0,0,,v Pakistan,Bangalore,3/24/2005 +124,22,-,22,-,-,0,0,,v Sri Lanka,Chennai,12/2/05 +125,109,16,125,0,6,0,0,,v Sri Lanka,Delhi,12/10/2005 +126,23,19,42,0,13,0,0,,v Sri Lanka,Ahmedabad,12/18/2005 +127,DNB,-,-,0,16,0,0,,v Pakistan,Lahore,1/13/2006 +128,14,DNB,14,-,-,1,0,,v Pakistan,Faisalabad,1/21/2006 +129,23,26,49,0,40,3,0,,v Pakistan,Karachi,1/29/2006 +130,16,28*,44,0,11,0,0,,v England,Nagpur,3/1/06 +131,4,DNB,4,-,-,0,0,,v England,Mohali,3/9/06 +132,1,34,35,-,-,1,0,,v England,Mumbai,3/18/2006 +133,44,14,58,-,-,1,0,,v South Africa,Johannesburg,12/15/2006 +134,63,0,63,-,-,2,0,,v South Africa,Durban,12/26/2006 +135,64,14,78,1,33,0,0,,v South Africa,Cape Town,1/2/07 +136,101,31,132,1,22,2,0,,v Bangladesh,Chittagong,5/18/2007 +137,122*,-,122,2,35,2,0,,v Bangladesh,Dhaka,5/25/2007 +138,37,16,53,0,10,1,0,,v England,Lord's,7/19/2007 +139,91,1,92,0,38,2,0,,v England,Nottingham,7/27/2007 +140,82,1,83,1,104,1,0,,v England,The Oval,8/9/07 +141,1,56*,57,0,8,0,0,,v Pakistan,Delhi,11/22/2007 +142,82,DNB,82,0,39,0,0,,v Pakistan,Kolkata,11/30/2007 +143,62,15,77,0,4,2,0,,v Australia,Melbourne,12/26/2007 +144,154*,12,166,0,20,3,0,,v Australia,Sydney,1/2/08 +145,71,13,84,-,-,0,0,,v Australia,Perth,1/16/2008 +146,153,13,166,0,6,0,0,,v Australia,Adelaide,1/24/2008 +147,0,-,0,-,-,0,0,,v South Africa,Chennai,3/26/2008 +148,27,12,39,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/23/2008 +149,5,31,36,-,-,0,0,,v Sri Lanka,Galle,7/31/2008 +150,6,14,20,-,-,0,0,,v Sri Lanka,Colombo (PSS),8/8/08 +151,13,49,62,-,-,0,0,,v Australia,Bangalore,10/9/08 +152,88,10*,98,-,-,1,0,,v Australia,Mohali,10/17/2008 +153,68,47,115,0,2,0,0,,v Australia,Delhi,10/29/2008 +154,109,12,121,0,13,1,0,,v Australia,Nagpur,11/6/08 +155,37,103*,140,-,-,0,0,,v England,Chennai,12/11/2008 +156,11,5,16,-,-,0,0,,v England,Mohali,12/19/2008 +157,160,DNB,160,-,-,1,0,,v New Zealand,Hamilton,3/18/2009 +158,49,64,113,-,-,1,0,,v New Zealand,Napier,3/26/2009 +159,62,9,71,2,45,0,0,,v New Zealand,Wellington,4/3/09 +160,4,100*,104,0,20,1,0,,v Sri Lanka,Ahmedabad,11/16/2009 +161,40,-,40,0,6,1,0,,v Sri Lanka,Kanpur,11/24/2009 +162,53,-,53,-,-,0,0,,v Sri Lanka,Mumbai (BS),12/2/09 +163,105*,16,121,-,-,0,0,,v Bangladesh,Chittagong,1/17/2010 +164,143,DNB,143,-,-,0,0,,v Bangladesh,Dhaka,1/24/2010 +165,7,100,107,-,-,0,0,,v South Africa,Nagpur,2/6/10 +166,106,-,106,0,1,0,0,,v South Africa,Kolkata,2/14/2010 +167,8,84,92,-,-,1,0,,v Sri Lanka,Galle,7/18/2010 +168,203,-,203,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/26/2010 +169,41,54,95,-,-,1,0,,v Sri Lanka,Colombo (PSS),8/3/10 +170,98,38,136,-,-,0,0,,v Australia,Mohali,10/1/10 +171,214,53*,267,-,-,0,0,,v Australia,Bangalore,10/9/10 +172,40,12,52,0,16,0,0,,v New Zealand,Ahmedabad,11/4/10 +173,13,DNB,13,0,7,0,0,,v New Zealand,Hyderabad (Deccan),11/12/2010 +174,61,-,61,-,-,0,0,,v New Zealand,Nagpur,11/20/2010 +175,36,111*,147,0,51,0,0,,v South Africa,Centurion,12/16/2010 +176,13,6,19,0,6,0,0,,v South Africa,Durban,12/26/2010 +177,146,14*,160,1,9,0,0,,v South Africa,Cape Town,1/2/11 +178,34,12,46,-,-,0,0,,v England,Lord's,7/21/2011 +179,16,56,72,-,-,1,0,,v England,Nottingham,7/29/2011 +180,1,40,41,0,17,1,0,,v England,Birmingham,8/10/11 +181,23,91,114,0,11,0,0,,v England,The Oval,8/18/2011 +182,7,76,83,-,-,0,0,,v West Indies,Delhi,11/6/11 +183,38,-,38,-,-,0,0,,v West Indies,Kolkata,11/14/2011 +184,94,3,97,0,29,2,0,,v West Indies,Mumbai,11/22/2011 +185,73,32,105,-,-,0,0,,v Australia,Melbourne,12/26/2011 +186,41,80,121,-,-,2,0,,v Australia,Sydney,1/3/12 +187,15,8,23,-,-,0,0,,v Australia,Perth,1/13/2012 +188,25,13,38,-,-,1,0,,v Australia,Adelaide,1/24/2012 +189,19,-,19,0,6,0,0,,v New Zealand,Hyderabad (Deccan),8/23/2012 +190,17,27,44,-,-,0,0,,v New Zealand,Bangalore,8/31/2012 +191,13,DNB,13,0,8,1,0,,v England,Ahmedabad,11/15/2012 +192,8,8,16,-,-,0,0,,v England,Mumbai,11/23/2012 +193,76,5,81,-,-,0,0,,v England,Kolkata,12/5/12 +194,2,-,2,-,-,0,0,,v England,Nagpur,12/13/2012 +195,81,13*,94,-,-,1,0,,v Australia,Chennai,2/22/2013 +196,7,-,7,-,-,0,0,,v Australia,Hyderabad (Deccan),3/2/13 +197,37,21,58,0,2,0,0,,v Australia,Mohali,3/14/2013 +198,32,1,33,-,-,0,0,,v Australia,Delhi,3/22/2013 +199,10,-,10,1,23,0,0,,v West Indies,Kolkata,11/6/13 +200,74,-,74,-,-,0,0,,v West Indies,Mumbai,11/14/2013 diff --git a/tests/FSharp.Data.Core.Tests/Data/topics.json b/tests/FSharp.Data.Core.Tests/Data/topics.json new file mode 100644 index 000000000..646a284c9 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/topics.json @@ -0,0 +1,5619 @@ +[{"photo":"https://s3.amazonaws.com/coursera/topics/ml/large-icon.png","preview_link":"https://class.coursera.org/ml/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/ml/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/ml/large-icon.png","video":"e0WKJLovaZg","university-ids":["stanford"],"id":2,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":null,"short_description":"Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.","short_name":"ml","category-ids":["stats","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/ml/small-icon.hover.png","instructor":"Andrew Ng, Associate Professor","categories":[{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Machine Learning","language":"en","courses":[{"grading_policy_distinction":"N/A","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":20,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":152,"start_month":8,"certificate_description":"Congratulations! You have successfully completed the online Machine Learning course (ml-class.org). To successfully complete the course, students were required to watch lectures, review questions and complete programming assignments. ","start_date_string":"20 August 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-03-10","certificates_ready":true,"signature_track_price":null,"statement_design_id":8,"signature_track_registration_open":false,"topic_id":2,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[232841],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 18 equally-weighted quizzes (1/3 of the total grade) and 8 programming assignments (2/3 of the total grade). The lowest two quiz grades were dropped, as well as the lowest programming assignment grade. To receive a Statement of Accomplishment, you must have obtained 80% or more of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/ml-2012-002/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[152],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/pgm/large-icon.png","preview_link":"https://class.coursera.org/pgm/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/pgm/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/pgm/large-icon.png","video":"bVMBe50GfnI","university-ids":["stanford"],"id":3,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":null,"short_description":"In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.","short_name":"pgm","category-ids":["cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/pgm/small-icon.hover.png","instructor":"Daphne Koller, Professor","categories":[{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Probabilistic Graphical Models","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 20 assessments (25% of the final grade), 9 programming assignments with companion quizzes (together worth 63% of the final grade) and a final exam (12% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"11 weeks","signature_track_last_chance_time":null,"id":82,"start_month":9,"certificate_description":"This graduate-level course covers the essentials of probabilistic graphical models and their applications: the representation of Bayesian and Markov networks; exact and approximate inference in these networks; and parameter and structure learning.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-19","certificates_ready":true,"signature_track_price":null,"statement_design_id":8,"signature_track_registration_open":false,"topic_id":3,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":84.5634194535585,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":81.3340565033494,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1257],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 20 assignments (77.5% of the final grade) and a final exam (22.5% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have achieved 70% or more of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/pgm-2012-002/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[82],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/modelthinking/large-icon.png","preview_link":"https://class.coursera.org/modelthinking-004/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/modelthinking/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/modelthinking/large-icon.png","video":"RX5LBZvEh10","university-ids":["umich"],"id":11,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"In this class, you will learn how to think with models and use them to make sense of the complex world around us.","short_name":"modelthinking","category-ids":["economics","humanities"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/modelthinking/small-icon.hover.png","instructor":"Scott E. Page","categories":[{"id":2,"name":"Economics & Finance","mailing_list_id":null,"short_name":"economics","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":6,"name":"Humanities ","mailing_list_id":11,"short_name":"humanities","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Model Thinking","language":"en","courses":[{"grading_policy_distinction":"N/A","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":null,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":30,"start_month":2,"certificate_description":"This course provided an introduction on how to think using models. Specific topics included, among others, decision-making, tipping points, economic models, crowd dynamics, Markov processes, game theory and predictive thinking.","start_date_string":"Feb 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-05-13","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":11,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":95.9090909090909,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":95.9090909090909,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[785],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"This Statement of Accomplishment has been granted to all students who earned a grade of 70% or above.","ace_open_date":null,"home_link":"https://class.coursera.org/modelthinking/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[30],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/b5/62b8827c61b48597f9b526ce04aaee/dbLogo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/cb/61b70b13451469aa582fc91d020f64/dbLogo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/c9/643d403b593b865b40c64b0f6cc33c/dbLogo.jpg","video":"","university-ids":["stanford"],"id":12,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":32,"short_description":"This course covers database design and the use of database management systems for applications.","short_name":"db","category-ids":["cs-systems","cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/cb/61b70b13451469aa582fc91d020f64/dbLogo.jpg","instructor":"Jennifer Widom, Professor","categories":[{"id":11,"name":"Computer Science: Systems & Security","mailing_list_id":null,"short_name":"cs-systems","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Databases","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":null,"duration_string":"","signature_track_last_chance_time":null,"id":32,"start_month":null,"certificate_description":"","start_date_string":"Self-service","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":12,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":null,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[1196954],"active":true,"eligible_for_certificates":false,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"2012-selfservice","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/db/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[32],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/sna/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/sna/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/sna/large-icon.png","video":"AJGGiAb47S4","university-ids":["umich"],"id":38,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.","short_name":"sna","category-ids":["infotech","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/sna/small-icon.hover.png","instructor":"Lada Adamic","categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Social Network Analysis","language":"en","courses":[{"grading_policy_distinction":"The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":108,"start_month":9,"certificate_description":"This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-06","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":38,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":70.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":85.6667,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[123682],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/sna-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[108],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/introfinance/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/introfinance/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/introfinance/large-icon.png","video":"7xy0mKUCXV4","university-ids":["umich"],"id":40,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"This course will introduce you to frameworks and tools to measure value; both for corporate and personal assets. It will also help you in decision-making, again at both the corporate and personal levels.","short_name":"introfinance","category-ids":["economics","business"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/introfinance/small-icon.hover.png","instructor":"Gautam Kaul","categories":[{"id":2,"name":"Economics & Finance","mailing_list_id":null,"short_name":"economics","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":13,"name":"Business & Management","mailing_list_id":null,"short_name":"business","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Finance","language":"en","courses":[{"grading_policy_distinction":" ","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":23,"duration_string":"13 weeks","signature_track_last_chance_time":null,"id":112,"start_month":7,"certificate_description":"You have successfully completed the course, Introduction to Finance, an online, non-credit course, authorized by the University of Michigan and taught by Professor Gautam Kaul of the University of Michigan.","start_date_string":"23 July 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-03-18","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":40,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[209008],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"This student scored at least 70% on five of the nine assignments, and earned a minimum of 70% on the final exam.","ace_open_date":null,"home_link":"https://class.coursera.org/introfinance-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[112],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/65/633c11334e2ae04b02afbe1edf0085/data_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/85/66e0866777387498cefc7190837922/data_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f0/2cf694d28c1bca40bc1604b0d43c46/data_B-02.jpg","video":"-lutj1vrPwQ","university-ids":["jhu"],"id":61,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Learn about the most effective data analysis methods to solve problems and achieve insight.","short_name":"dataanalysis","category-ids":["health","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/85/66e0866777387498cefc7190837922/data_B-02.jpg","instructor":"Jeff Leek","categories":[{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Data Analysis","language":"en","courses":[{"grading_policy_distinction":"The final grade is based eight weekly quizzes worth 10 points and two peer-reviewed data analysis reports worth 40 points each. There are 160 total points for the course. To earn the statement of accomplishment with distinction for the course, a student must earn at least 144 points.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":28,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":971332,"start_month":10,"certificate_description":"This course teaches students the most effective data analysis methods to solve problems and achieve insight.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":61,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[694443],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade is based eight weekly quizzes worth 10 points and two peer-reviewed data analysis reports worth 40 points each. There are 160 total points for the course. To earn the statement of accomplishment for the course, a student must earn at least 100 points.","ace_open_date":null,"home_link":"https://class.coursera.org/dataanalysis-002/","creator_id":248174,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/73/45231e50250d1f9778f9c45850c362/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[971332],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/9d/193d89375944329ca3c0bf32b32c56/computing_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/97/aba290f88787a8c3b13a816837ab6c/computing_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/76/469a2849f2ae5a29cbefba53c82592/computing_B-02.jpg","video":"gk6E57H6mTs","university-ids":["jhu"],"id":63,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"This course is about learning the fundamental computing skills necessary for effective data analysis. You will learn to program in R and to use R for reading data, writing functions, making informative graphs, and applying modern statistical methods.","short_name":"compdata","category-ids":["health","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/97/aba290f88787a8c3b13a816837ab6c/computing_B-02.jpg","instructor":"Roger Peng","categories":[{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Computing for Data Analysis","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 90% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"4 weeks","signature_track_last_chance_time":null,"id":300,"start_month":9,"certificate_description":"In this course students learn programming in R, reading data into R, creating data graphics, accessing and installing R packages, writing R functions, debugging, and organizing and commenting R code. ","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-06","certificates_ready":true,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":63,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[685384],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 70% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/compdata-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/46/2952c73da820e080b97b63f9ac0fba/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[300],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/eb/cf8c0e7e0bb418255e48fe210446c1/bootcamp_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/cd/3cc4db194a8f70139ec63afd200a0f/bootcamp_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/99/b022103b7d744911d090acafe2cb98/bootcamp_B-02.jpg","video":"ekdpaf_WT_8","university-ids":["jhu"],"id":68,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"This class presents the fundamental probability and statistical concepts used in elementary data analysis. It will be taught at an introductory level for students with junior or senior college-level mathematical training including a working knowledge of calculus. A small amount of linear algebra and programming are useful for the class, but not required. ","short_name":"biostats","category-ids":["math","health","biology","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/cd/3cc4db194a8f70139ec63afd200a0f/bootcamp_B-02.jpg","instructor":"Brian Caffo","categories":[{"id":5,"name":"Mathematics","mailing_list_id":null,"short_name":"math","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":10,"name":"Biology & Life Sciences","mailing_list_id":null,"short_name":"biology","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Mathematical Biostatistics Boot Camp 1","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 90% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"7 weeks","signature_track_last_chance_time":null,"id":302,"start_month":9,"certificate_description":"This course puts forward key mathematical and statistical topics to help students understand biostatistics at a deeper level. Successful students have a basic understanding of the goals, assumptions, benefits and negatives of probability modeling in the medical sciences.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-11","certificates_ready":true,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":68,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":94.7619047619047,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":94.7619047619047,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[688901],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 70% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/biostats-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/41/41ed34d097fda979808abc09e4030a/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[302],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/neuralnets/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/neuralnets/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/neuralnets/large-icon.png","video":"KuPai0ogiHk","university-ids":["utoronto"],"id":77,"universities":[{"rectangular_logo_svg":null,"wordmark":null,"website_twitter":"uoftnews","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/8e/773801b870a0cb946698134a77417d/favicon-utoronto.ico","website_facebook":"universitytoronto","logo":"https://coursera-university-assets.s3.amazonaws.com/78/334b4573e06c876cff8e2484f082d7/logo-utoronto-front.png","background_color":"","id":11,"location_city":"Toronto","location_country":"CA","location_lat":43.65322600000000000,"location":"Toronto, ON, Canada","primary_color":"#1c3361","abbr_name":"U of T","website":"http://www.utoronto.ca/","description":"Established in 1827, the University of Toronto has one of the strongest research and teaching faculties in North America, presenting top students at all levels with an intellectual environment unmatched in depth and breadth on any other Canadian campus.","short_name":"utoronto","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/84/774219ef720c726661c682cda7838a/UofT-Banner.jpg","mailing_list_id":null,"website_youtube":"universitytoronto","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/6f/9a578312b814f8aeaf942f4f248447/banner-utoronto.jpg","location_state":"ON","name":"University of Toronto","square_logo":"https://coursera-university-assets.s3.amazonaws.com/04/1df8943d27a485a986a3ebf10c83d9/UofT-Crest-Square.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/dd/cf4561b10afb34d449bb9574ecbca3/UofT-Crest-Square.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/06/0e2fff91e34df097bbb12ecd57c0af/UofT-Crest-Square.svg","location_lng":-79.38318429999998000,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/e0/c3219157fdcd439fb3b765c4b723e5/UofT-Crest-Wide.png","display":true}],"self_service_course_id":null,"short_description":"Learn about artificial neural networks and how they're being used for machine learning, as applied to speech and object recognition, image segmentation, modeling language and human motion, etc. We'll emphasize both the basic algorithms and the practical tricks needed to get them to work well.","short_name":"neuralnets","category-ids":["stats","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/neuralnets/small-icon.hover.png","instructor":"Geoffrey Hinton","categories":[{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Neural Networks for Machine Learning","language":"en","courses":[{"grading_policy_distinction":"Students who achieved at least 90% overall receive a Statement of Accomplishment with Distinction.\n","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":256,"start_month":10,"certificate_description":"The course covered learning techniques for many different types of neural network including deep feed-forward networks, recurrent networks and Boltzmann Machines. It covered recent applications to speech, vision, and language, and used hands-on programming assignments.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-19","certificates_ready":true,"signature_track_price":null,"statement_design_id":14,"signature_track_registration_open":false,"topic_id":77,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":70.2813657407407,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":70.2813657407407,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[831097],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on the four programming assignments (5% for PA1, 10% for each of the other three), the weekly quizzes (40%, with each quiz being weighted as one fifteenth of that), and the final exam (25%). Students who achieved at least 70% overall receive a Statement of Accomplishment.\n","ace_open_date":null,"home_link":"https://class.coursera.org/neuralnets-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[256],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/datasci/large-icon.png","preview_link":"https://class.coursera.org/datasci-001/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/datasci/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/datasci/large-icon.png","video":"","university-ids":["uw"],"id":106,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"UW","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/98/7480c1f9271144aa75fe024a1ad5a0/favicon-uw.ico","website_facebook":"UofWA","logo":"https://coursera-university-assets.s3.amazonaws.com/53/2f0ff155b3390e3d7190c363a4a045/uw-logo-coursera-transparent.png","background_color":"","id":15,"location_city":"Seattle","location_country":"US","location_lat":47.60620950000000000,"location":"Seattle, WA","primary_color":"#38255a","abbr_name":"Washington","website":"https://www.washington.edu/","description":"Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.","short_name":"uw","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/d0/f1be9c6b196a5a0446da96548a85b6/banner-uw1.jpg","mailing_list_id":null,"website_youtube":"user/uwhuskies","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/5d/7f56a74b7b3009b4a888e372a41f67/banner-uw1.jpg","location_state":"WA","name":"University of Washington","square_logo":"https://coursera-university-assets.s3.amazonaws.com/8a/903cf68039c31a207eb7eafff458f7/w-patch-purple.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/76/45ce3d3eba0b28c763eacbb2387322/w-patch-purple.png","square_logo_svg":"","location_lng":-122.33207080000000000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Join the data revolution. Companies are searching for data scientists. This specialized field demands multiple skills not easy to obtain through conventional curricula. Introduce yourself to the basics of data science and leave armed with practical experience extracting value from big data.","short_name":"datasci","category-ids":["infotech","cs-systems","cs-programming","stats"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/datasci/small-icon.hover.png","instructor":"Bill Howe","categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":11,"name":"Computer Science: Systems & Security","mailing_list_id":null,"short_name":"cs-systems","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Data Science","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 75% of the maximum possible score. ","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":346,"start_month":5,"certificate_description":"This course covered a broad set of topics critical to practical data science: relational databases, MapReduce, NoSQL, statistical modeling, basic machine learning, and visualization, and a variety of algorithmic topics.","start_date_string":"April 2013","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-06-29","certificates_ready":true,"signature_track_price":null,"statement_design_id":43,"signature_track_registration_open":false,"topic_id":106,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":58.1818181818182,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":0,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":58.1818181818182,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[999946],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 60% of the maximum possible score. ","ace_open_date":null,"home_link":"https://class.coursera.org/datasci-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":null,"course-ids":[346],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/progfun/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/progfun/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/progfun/large-icon.png","video":"_NVySmdAH4c","university-ids":["epfl"],"id":116,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/89/7f14b8c6f54b56a2446c99b2b8df86/EPFL_LOG_QUADRI_Red_resized.svg","wordmark":null,"website_twitter":"EPFL","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/ba/142188830b51c8c51b95cc25e5dbf3/epflfav.png","website_facebook":"EPFL.ch","logo":"https://coursera-university-assets.s3.amazonaws.com/1d/0a73c737b332745aac47797f57cda4/logo-epfl-front.png","background_color":"","id":16,"location_city":"Lausanne","location_country":"CH","location_lat":46.51996170000000000,"location":"Lausanne, Switzerland","primary_color":"#7E000C","abbr_name":"EPFL","website":"http://www.epfl.ch/","description":"","short_name":"epfl","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/22/b50d471bc34471c5a7c696b1d714cc/rolex_learning_center.jpg","mailing_list_id":null,"website_youtube":"user/epflnews","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/ab/bb616e071f67f5bcaead9b67dbaa36/banner-epfl.jpg","location_state":"VD","name":"\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne","square_logo":"https://coursera-university-assets.s3.amazonaws.com/01/a5c9c211331132096e7ba9942dbd51/square_epfl_400.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/5f/f441e9c1630625018763c3b86cf582/square_epfl_400.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/a7/fca9be507583b1f25e0fcd9fca0d59/square_epfl_400.svg","location_lng":6.63359709999997450,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Learn about functional programming, and how it can be effectively combined with object-oriented programming. Gain practice in writing clean functional code, using the Scala programming language.","short_name":"progfun","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/progfun/small-icon.hover.png","instructor":"Martin Odersky","categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Functional Programming Principles in Scala","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment with Distinction, one must obtain >= 80% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":18,"duration_string":"7 weeks","signature_track_last_chance_time":null,"id":308,"start_month":9,"certificate_description":"This advanced undergraduate programming course covers the principles of functional programming using Scala, including the use of functions as values, recursion, immutability, pattern matching, higher-order functions and collections, and lazy evaluation.","start_date_string":"18 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-05","certificates_ready":true,"signature_track_price":null,"statement_design_id":13,"signature_track_registration_open":false,"topic_id":116,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":98.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":98.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[672627],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":null,"grading_policy_normal":"The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment, one must obtain >= 60% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/progfun-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[308],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/02/c44a1233fcf277511c7720292324e3/course_logo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/e1/644d37da2af639d0c9d1f4fca323c2/course_logo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f2/e2d37549671b4a0c04b4f40669e1c9/course_logo.jpg","video":"","university-ids":["uw"],"id":117,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"UW","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/98/7480c1f9271144aa75fe024a1ad5a0/favicon-uw.ico","website_facebook":"UofWA","logo":"https://coursera-university-assets.s3.amazonaws.com/53/2f0ff155b3390e3d7190c363a4a045/uw-logo-coursera-transparent.png","background_color":"","id":15,"location_city":"Seattle","location_country":"US","location_lat":47.60620950000000000,"location":"Seattle, WA","primary_color":"#38255a","abbr_name":"Washington","website":"https://www.washington.edu/","description":"Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.","short_name":"uw","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/d0/f1be9c6b196a5a0446da96548a85b6/banner-uw1.jpg","mailing_list_id":null,"website_youtube":"user/uwhuskies","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/5d/7f56a74b7b3009b4a888e372a41f67/banner-uw1.jpg","location_state":"WA","name":"University of Washington","square_logo":"https://coursera-university-assets.s3.amazonaws.com/8a/903cf68039c31a207eb7eafff458f7/w-patch-purple.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/76/45ce3d3eba0b28c763eacbb2387322/w-patch-purple.png","square_logo_svg":"","location_lng":-122.33207080000000000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Investigate the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming. Use the programming languages ML, Racket, and Ruby in ways that will teach you how the pieces of a language fit together to create more than the sum of the parts. Gain new software skills and the concepts needed to learn new languages on your own.","short_name":"proglang","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/e1/644d37da2af639d0c9d1f4fca323c2/course_logo.jpg","instructor":"Dan Grossman","categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Programming Languages","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":14,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":352,"start_month":1,"certificate_description":"This course investigates the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming along with many other topics.","start_date_string":"January 2013","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-04-02","certificates_ready":true,"signature_track_price":null,"statement_design_id":73,"signature_track_registration_open":false,"topic_id":117,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":false,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":83.2487076923077,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[873260],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 7 assignments each worth 10% of the final grade, with 90% of the 10% produced from auto-grading and the remaining 10% coming from peer assessment. The course had two exams each worth 15% of the course grade.","ace_open_date":null,"home_link":"https://class.coursera.org/proglang-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[352],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/ec/6faacf42b19cf2772061ae095d98ee/460_259_logo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/c9/8b3a8357fe29791971ece8cc8fb35b/460_259_logo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/6c/ffdfc097878bc0f8115148d7ee6826/460_259_logo.jpg","video":"IWugXcWpfoM","university-ids":["brown"],"id":198,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"BrownUniversity","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/54/51fc6594a22ce0fcd31168f109900f/5_brown_icon_coursera.jpg","website_facebook":"BrownUniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/1e/b5f0ff349ddbf16b116d9a181c9552/Coursera_CourseTopLeftLogo_Brown.png","background_color":"","id":22,"location_city":"","location_country":"","location_lat":null,"location":"Providence, RI","primary_color":"#c00404","abbr_name":"Brown","website":"http://www.brown.edu/","description":"Founded in 1764, Brown University is an independent, coeducational Ivy League institution. It is recognized for the quality of its teaching, research, and unique curriculum. The seventh-oldest college in the United States, Brown University is located in historic Providence, Rhode Island.","short_name":"brown","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c0/b026ace077f637396a1dacdf1eb779/3_banner6_coursera.jpg","mailing_list_id":null,"website_youtube":"brownuniversity","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/7f/dcd11ef97345d4931ed1d5b187f21e/2_brown_banner_coursera.jpg","location_state":"","name":"Brown University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/c6/d5fc95810a4783b7f71c066c620a54/1_brown_logo_coursera.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/b9/5c77b26d99a8c59314414d6d43e3e2/1_brown_logo_coursera.png","square_logo_svg":"","location_lng":null,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/1a/474b90e9993ebe86bea13056066d66/8_brown_logo_class_page_coursera.png","display":true}],"self_service_course_id":null,"short_description":"Learn the concepts and methods of linear algebra, and how to use them to think about computational problems arising in computer science. Coursework includes building on the concepts to write small programs and run them on real data. ","short_name":"matrix","category-ids":["cs-theory","math","stats","cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/c9/8b3a8357fe29791971ece8cc8fb35b/460_259_logo.jpg","instructor":"Phil Klein","categories":[{"id":1,"name":"Computer Science: Theory","mailing_list_id":null,"short_name":"cs-theory","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":5,"name":"Mathematics","mailing_list_id":null,"short_name":"math","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Coding the Matrix: Linear Algebra through Computer Science Applications","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":970260,"start_month":7,"certificate_description":"","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":198,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1234717],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/matrix-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[970260],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/26/761dfb7b58773c88fe4cb2aed26a3c/iStock_000020359734_Small.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/c5/42ab154bbf6f76f51b74b8347deab5/iStock_000020359734_Small.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/7e/0150790f6c92c48d03bf6178ea9193/iStock_000020359734_Small.jpg","video":"","university-ids":["columbia"],"id":225,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"columbia","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/72/c9b56e3ff66fa6e1ca52bdea9440ae/ColumbialittleLOGO4.png","website_facebook":"Columbia","logo":"https://coursera-university-assets.s3.amazonaws.com/9b/42f2eca2f10769400d1f8519892413/ColumbiaLOGO.png","background_color":"","id":40,"location_city":"New York","location_country":"US","location_lat":40.71435280000000000,"location":"New York City, NY, USA","primary_color":"#1f2f60","abbr_name":"Columbia","website":"http://www.columbia.edu/","description":"For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.","short_name":"columbia","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/3d/731d687dff430714ea6413c8b9d932/banner_coursera_columbia.jpg","mailing_list_id":null,"website_youtube":"columbia","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/0d/6b60ecae321cd9d6e02b5a1376e7cb/columbia-banner.jpg","location_state":"NY","name":"Columbia University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/d2/74c67a99b3e2516e7efbb4d9892721/cu_collegiate_blue.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/bb/d42540e622a1bb89a1b5f2258f3602/cu_collegiate_blue.png","square_logo_svg":"","location_lng":-74.00597310000000000,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/8e/592ba6a9789657a5a0912204491332/logo_cu_background_trans.png","display":true}],"self_service_course_id":null,"short_description":"Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.","short_name":"nlangp","category-ids":["cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/c5/42ab154bbf6f76f51b74b8347deab5/iStock_000020359734_Small.jpg","instructor":"Michael Collins","categories":[{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Natural Language Processing","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":970276,"start_month":2,"certificate_description":"This introductory graduate/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-05-15","certificates_ready":true,"signature_track_price":null,"statement_design_id":59,"signature_track_registration_open":false,"topic_id":225,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":8.92857142857143,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":0,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":8.92857142857143,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1325520],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/nlangp-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[970276],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/b1/0dd0ff0e44a763cfba188a761ae2cb/movielens.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/42/291d55c2b40660fdbf65e590831949/movielens.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/9b/6095ca516e757248df2abf357fde72/movielens.jpg","video":"eMlcMAa0IOg","university-ids":["minnesota"],"id":746,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/32/051960873fd1cc2b6a315b80853ff2/minnesota.svg","wordmark":null,"website_twitter":"UMNews","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/f2/c0c3766390def44d6704f82d4d7955/favicon.ico","website_facebook":"UofMN","logo":"","background_color":"","id":50,"location_city":"Minneapolis","location_country":"US","location_lat":44.98333400000000000,"location":"Minneapolis, MN, USA","primary_color":"#7A0019","abbr_name":"Minnesota","website":"http://www.umn.edu/","description":"The University of Minnesota is among the largest public research universities in the country, offering undergraduate, graduate, and professional students a multitude of opportunities for study and research. Located at the heart of one of the nation\u2019s most vibrant, diverse metropolitan communities, students on the campuses in Minneapolis and St. Paul benefit from extensive partnerships with world-renowned health centers, international corporations, government agencies, and arts, nonprofit, and public service organizations.","short_name":"minnesota","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c0/5512775b06b7e0c1b2e30d8b7585df/5-1280x320.jpg","mailing_list_id":null,"website_youtube":"UniversityofMinn","partner_type":1,"banner":"","location_state":"MN","name":"University of Minnesota","square_logo":"https://coursera-university-assets.s3.amazonaws.com/75/a144950f75d01464eef8e64003285c/FB-GoldM-maroon.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/4e/bcdf60eb515f6611860f25ca6dc893/FB-GoldM-maroon.png","square_logo_svg":"","location_lng":-93.26666999999998000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/2e/0cd5e2383ba389999647887f51de4c/UofMD2D200x48transp.png","display":true}],"self_service_course_id":null,"short_description":"This course introduces the concepts, applications, algorithms, programming, and design of recommender systems--software systems that recommend products or information, often based on extensive personalization. Learn how web merchants such as Amazon.com personalize product suggestions and how to apply the same techniques in your own systems!","short_name":"recsys","category-ids":["infotech","business","cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/42/291d55c2b40660fdbf65e590831949/movielens.jpg","instructor":null,"categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":13,"name":"Business & Management","mailing_list_id":null,"short_name":"business","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Recommender Systems","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":3,"duration_string":"14 weeks","signature_track_last_chance_time":null,"id":971201,"start_month":9,"certificate_description":"","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":56,"signature_track_registration_open":false,"topic_id":746,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[3108924,3691077],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/recsys-001/","creator_id":952027,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[971201],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/f4/fc7a006d2bafe837b6de5016d8a423/Course-Logo.png","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/4e/1d7362a932b2aa5baaa895d4f8425b/Course-Logo.png","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f0/377e1431e27761059cf1d408e67642/Course-Logo.png","video":"Bc1-PZ5NfRs","university-ids":["cusystem"],"id":781,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":1,"favicon":"","website_facebook":"","logo":"","background_color":"","id":126,"location_city":"","location_country":"","location_lat":null,"location":"","primary_color":"","abbr_name":"CU System","website":"","description":"The University of Colorado is a recognized leader in higher education on the national and global stage. We collaborate to meet the diverse needs of our students and communities. We promote innovation, encourage discovery and support the extension of knowledge in ways unique to the state of Colorado and beyond.","short_name":"cusystem","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/40/7f8dc97c973fcd38a4d202c143f2a9/cu-bkg-coursera.jpg","mailing_list_id":null,"website_youtube":"","partner_type":2,"banner":"","location_state":"","name":"University of Colorado System","square_logo":"https://coursera-university-assets.s3.amazonaws.com/1b/fb8b2887a17b007626846d08988b39/colorado.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/0c/5859039090ad9fd55834fde43636a2/colorado.jpg","square_logo_svg":"","location_lng":null,"home_link":"","class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Start learning how to program video games using the C# programming language. Plenty of practice opportunities are included!","short_name":"gameprogramming","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/4e/1d7362a932b2aa5baaa895d4f8425b/Course-Logo.png","instructor":null,"categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Beginning Game Programming with C#","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":16,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":971200,"start_month":9,"certificate_description":"This introductory undergraduate course teaches beginning programming concepts in a game development context.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":781,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[3134388],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 6 Programming Assignments (48% of the final grade), a game development project (30% of the final grade), and a final exam (22% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score. ","ace_open_date":null,"home_link":"https://class.coursera.org/gameprogramming-001/","creator_id":3134388,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/13/0e2b677ebb94e8d3fdcd7cfdae92fd/cu-coursera.png","course-ids":[971200],"display":true}] +[ + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/ml\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", + "video": "e0WKJLovaZg", + "university-ids": [ + "stanford" + ], + "id": 2, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.", + "short_name": "ml", + "category-ids": [ + "stats", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", + "instructor": "Andrew Ng, Associate Professor", + "categories": [ + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Machine Learning", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 22, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 970311, + "start_month": 4, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 2, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1244 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "003", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/ml-003\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970311 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/hci-2012-002\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/large-icon.png", + "video": "GBwLAqOjbrA", + "university-ids": [ + "stanford" + ], + "id": 6, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Helping you build human-centered design skills, so that you have the principles and methods to create excellent interfaces with any technology.", + "short_name": "hci", + "category-ids": [ + "infotech", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/small-icon.hover.png", + "instructor": "Scott Klemmer", + "categories": [ + { + "id": 4, + "name": "Information, Tech & Design", + "mailing_list_id": null, + "short_name": "infotech", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Human-Computer Interaction", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "Congratulations on completing the Studio track! Your final grade consists of the design project assignments (worth 67%) and four quizzes (worth 33%). To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "9 weeks", + "signature_track_last_chance_time": null, + "id": 164, + "start_month": 9, + "certificate_description": "This course analyzed techniques of design such as rapid prototyping and evaluating interface alternatives, and how these practices inform the design of technology. Specific topics included mock-ups, field testing, principles of perception and evaluating designs with people.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 6, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1250 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "Congratulations on completing the Apprentice track! Your final grade consists of four weekly quizzes. To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/hci-2012-002\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + }, + { + "grading_policy_distinction": "Congratulations on completing the Studio track! Your final grade consists of the design project assignments (worth 67%) and four quizzes (worth 33%). To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 31, + "duration_string": "9 weeks", + "signature_track_last_chance_time": null, + "id": 970447, + "start_month": 3, + "certificate_description": "This course analyzed techniques of design such as rapid prototyping and evaluating interface alternatives, and how these practices inform the design of technology. Specific topics included mock-ups, field testing, principles of perception and evaluating designs with people.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-06-12", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 6, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1250 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "003", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "Congratulations on completing the Apprentice track! Your final grade consists of four quizzes. To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/hci-003\/", + "creator_id": 2009121, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 164, + 970447 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/large-icon.png", + "video": "0t1oCt88XJk", + "university-ids": [ + "stanford" + ], + "id": 9, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about the inner workings of cryptographic primitives and how to apply this knowledge in real-world applications!", + "short_name": "crypto", + "category-ids": [ + "cs-theory", + "cs-systems" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/small-icon.hover.png", + "instructor": "Dan Boneh, Professor", + "categories": [ + { + "id": 1, + "name": "Computer Science: Theory", + "mailing_list_id": null, + "short_name": "cs-theory", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Cryptography I", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was calculated based on 6 equally-weighted assignments (60% of the final grade) and the final exam (40% of the final grade). An additional 120 percentage points were available through optional programming assignments, and the resulting grade is capped at 100%. To receive a Statement of Accomplishment with Distinction, you have to obtain >= 70% of the maximum possible score on the programming assignments. The grade shown here on this page reflects only your score on the programming assignments.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 27, + "duration_string": "6 weeks", + "signature_track_last_chance_time": null, + "id": 170, + "start_month": 8, + "certificate_description": "This course examined cryptographic primitives in theory and in deployed protocols. Topics included public-key encryption, digital signatures, authentication protocols, zero-knowledge and distributed protocols.", + "start_date_string": "27 August 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 9, + "eligible_for_signature_track": false, + "start_date": "2012-08-27", + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 774 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-003", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was calculated based on 6 equally-weighted assignments (60% of the final grade) and the final exam (40% of the final grade). An additional 120 percentage points were available through optional programming assignments, and the resulting grade is capped at 100%. To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/crypto-2012-003\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 170 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/b5\/62b8827c61b48597f9b526ce04aaee\/dbLogo.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/61b70b13451469aa582fc91d020f64\/dbLogo.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c9\/643d403b593b865b40c64b0f6cc33c\/dbLogo.jpg", + "video": "", + "university-ids": [ + "stanford" + ], + "id": 12, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": 32, + "short_description": "This course covers database design and the use of database management systems for applications.", + "short_name": "db", + "category-ids": [ + "cs-systems", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/61b70b13451469aa582fc91d020f64\/dbLogo.jpg", + "instructor": "Jennifer Widom, Professor", + "categories": [ + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Introduction to Databases", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": null, + "duration_string": "", + "signature_track_last_chance_time": null, + "id": 32, + "start_month": null, + "certificate_description": "", + "start_date_string": "Self-service", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 12, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": null, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1196954 + ], + "active": true, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "2012-selfservice", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/db\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 32 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/compilers\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/large-icon.png", + "video": "sm0QQO-WZlM", + "university-ids": [ + "stanford" + ], + "id": 16, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": 378, + "short_description": "This course will discuss the major ideas used today in the implementation of programming language compilers. You will learn how a program written in a high-level language designed for humans is systematically translated into a program written in low-level assembly more suited to machines!", + "short_name": "compilers", + "category-ids": [ + "cs-systems", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/small-icon.hover.png", + "instructor": "Alex Aiken, Professor", + "categories": [ + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Compilers", + "language": "en", + "courses": [ + { + "grading_policy_distinction": null, + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": null, + "duration_string": "", + "signature_track_last_chance_time": null, + "id": 378, + "start_month": null, + "certificate_description": null, + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 16, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": null, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + + ], + "active": true, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": null, + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/compilers-selfservice\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 378 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/08\/22d8b0b6c3bedfc930f9e42c067b82\/more-height_2.png", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/40\/89e1c7e5b1209fd587aae6fe8615af\/more-height_2.png", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/16\/14c599959bd3d6e7b0a710e7d4eb5f\/more-height_2.png", + "video": "KXsz5aPCYFM", + "university-ids": [ + "stanford" + ], + "id": 19, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "location_lat": 37.4418834, + "background_color": "", + "mailing_list_id": null, + "location_city": "Palo Alto", + "location_country": "US", + "id": 1, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "location_state": "CA", + "website_youtube": "", + "partner_type": 1, + "banner": "", + "landing_page_banner": "", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "display": true, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "square_logo_svg": null + } + ], + "self_service_course_id": null, + "short_description": "Learn how to design secure systems and write secure code. ", + "short_name": "security", + "category-ids": [ + "cs-systems" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/40\/89e1c7e5b1209fd587aae6fe8615af\/more-height_2.png", + "instructor": "Dan Boneh and Dawn Song", + "categories": [ + { + "mailing_list_id": null, + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", + "id": 11, + "short_name": "cs-systems", + "name": "Computer Science: Systems & Security" + } + ], + "name": "Computer Security", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_year": null, + "duration_string": "", + "signature_track_last_chance_time": null, + "id": 60, + "start_month": null, + "certificate_description": "", + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "creator_id": null, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 19, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_day": null, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": false, + "instructors": [ + 95, + 774, + 1039793 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/security\/", + "certificates_ready": false, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 60 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/gametheory-2012-002\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/large-icon.png", + "video": "d1k7DNuRBoI", + "university-ids": [ + "stanford", + "ubc" + ], + "id": 20, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + }, + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "ubcaplaceofmind", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d1\/159770b1b64f0bb3736e0a1ad5144b\/favicon.ico", + "website_facebook": "universityofbc", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d1\/4b45f1fa68329d09b869d990e5d48e\/panel_signature3.png", + "background_color": "", + "id": 29, + "location_city": "Vancouver", + "location_country": "CA", + "location_lat": 49.264878, + "location": "The University of British Columbia, West Mall, Vancouver, BC, Canada", + "primary_color": "#0f2144", + "abbr_name": "UBC", + "website": "http:\/\/www.ubc.ca\/", + "description": "The University of British Columbia is a global centre for research and teaching.", + "short_name": "ubc", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1f\/1a1a7375877cd97e0d8b02301e42e7\/UBC-Coursera-Banner-1280x320.jpg", + "mailing_list_id": null, + "website_youtube": "user\/ubc", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dd\/396bbc8612e8d7bd419bdffa4c9f36\/ubc4.jpg", + "location_state": "BC", + "name": "The University of British Columbia", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/38\/521e5807d761297a1cf2dcc56ede8e\/UBC-Coursera-Avatar-360x360.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cc\/5fd6b4afd6c4f42d006c13bcb3a3ff\/UBC-Coursera-Avatar-360x360.jpg", + "square_logo_svg": "", + "location_lng": -123.252496, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1f\/a1b550b8642963fd065c0315202ded\/UBC-Coursera-Signature-200x48-v2.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "The course covers the basics: representing games and strategies, the extensive form (which computer scientists call game trees), repeated and stochastic games, coalitional games, and Bayesian games (modeling things like auctions).", + "short_name": "gametheory", + "category-ids": [ + "cs-theory", + "economics", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/small-icon.hover.png", + "instructor": "Kevin Leyton-Brown, Matthew O. Jackson and Yoav Shoham", + "categories": [ + { + "id": 1, + "name": "Computer Science: Theory", + "mailing_list_id": null, + "short_name": "cs-theory", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 2, + "name": "Economics & Finance", + "mailing_list_id": null, + "short_name": "economics", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Game Theory", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Certificate of Completion with Distinction, a student has to obtain >= 90% of the maximum possible score", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 7, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 86, + "start_month": 1, + "certificate_description": "This course on Game Theory covers notions of equilibrium, dominance, normal and extensive form games, and games of complete and incomplete information, as well as an introduction to cooperative games.", + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-03-26", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 20, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1251, + 1252, + 174814 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Certificate of Completion, a student has to obtain >= 70% of the maximum possible score. ", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/gametheory-2012-002\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/e189ccd6ee363b8a52cf199f5d05d0\/stanford_ubc.png", + "course-ids": [ + 86 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/large-icon.png", + "video": "nkozG17Q_34", + "university-ids": [ + "princeton" + ], + "id": 24, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "princeton", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", + "website_facebook": "PrincetonU", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", + "background_color": "", + "id": 4, + "location_city": "", + "location_country": "", + "location_lat": null, + "location": "", + "primary_color": "#BA632D", + "abbr_name": "Princeton", + "website": "http:\/\/www.princeton.edu\/", + "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", + "short_name": "princeton", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", + "mailing_list_id": null, + "website_youtube": "princetonuniversity\/", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", + "location_state": "", + "name": "Princeton University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", + "square_logo_svg": "", + "location_lng": null, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "In this course, you will learn to design the computer architecture of complex modern microprocessors.", + "short_name": "comparch", + "category-ids": [ + "cs-systems", + "ee" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/small-icon.hover.png", + "instructor": "David Wentzlaff", + "categories": [ + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 15, + "name": "Engineering", + "mailing_list_id": null, + "short_name": "ee", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Computer Architecture", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 30, + "duration_string": "11 weeks", + "signature_track_last_chance_time": null, + "id": 100, + "start_month": 9, + "certificate_description": "", + "start_date_string": "30 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 24, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 227247, + 260922, + 419989 + ], + "active": true, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/comparch-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 100 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/large-icon.png", + "video": "gZV5jVF8lJ8", + "university-ids": [ + "princeton" + ], + "id": 26, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "princeton", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", + "website_facebook": "PrincetonU", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", + "background_color": "", + "id": 4, + "location_city": "", + "location_country": "", + "location_lat": null, + "location": "", + "primary_color": "#BA632D", + "abbr_name": "Princeton", + "website": "http:\/\/www.princeton.edu\/", + "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", + "short_name": "princeton", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", + "mailing_list_id": null, + "website_youtube": "princetonuniversity\/", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", + "location_state": "", + "name": "Princeton University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", + "square_logo_svg": "", + "location_lng": null, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations. Part I covers basic iterable data types, sorting, and searching algorithms.", + "short_name": "algs4partI", + "category-ids": [ + "cs-theory", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/small-icon.hover.png", + "instructor": "Kevin Wayne and Robert Sedgewick", + "categories": [ + { + "id": 1, + "name": "Computer Science: Theory", + "mailing_list_id": null, + "short_name": "cs-theory", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Algorithms, Part I", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 12, + "duration_string": "6 weeks", + "signature_track_last_chance_time": null, + "id": 104, + "start_month": 8, + "certificate_description": "", + "start_date_string": "12 August 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 26, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 227247, + 246867, + 250165, + 260922 + ], + "active": false, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/algs4partI-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 104 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/large-icon.png", + "video": "GO8frjxq25I", + "university-ids": [ + "princeton" + ], + "id": 27, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "princeton", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", + "website_facebook": "PrincetonU", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", + "background_color": "", + "id": 4, + "location_city": "", + "location_country": "", + "location_lat": null, + "location": "", + "primary_color": "#BA632D", + "abbr_name": "Princeton", + "website": "http:\/\/www.princeton.edu\/", + "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", + "short_name": "princeton", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", + "mailing_list_id": null, + "website_youtube": "princetonuniversity\/", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", + "location_state": "", + "name": "Princeton University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", + "square_logo_svg": "", + "location_lng": null, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations.", + "short_name": "algs4partII", + "category-ids": [ + "cs-theory", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/small-icon.hover.png", + "instructor": "Kevin Wayne and Robert Sedgewick", + "categories": [ + { + "id": 1, + "name": "Computer Science: Theory", + "mailing_list_id": null, + "short_name": "cs-theory", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Algorithms, Part II", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 25, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 970478, + "start_month": 3, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 27, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 246867, + 250165 + ], + "active": false, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/algs4partII-001\/", + "creator_id": 63735, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970478 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", + "video": "AJGGiAb47S4", + "university-ids": [ + "umich" + ], + "id": 38, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", + "wordmark": null, + "website_twitter": "umich", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", + "website_facebook": "universityofmichigan", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", + "background_color": "", + "id": 3, + "location_city": "Ann Arbor", + "location_country": "US", + "location_lat": 42.2808256, + "location": "Ann Arbor, MI", + "primary_color": "#002e5f", + "abbr_name": "Michigan", + "website": "http:\/\/www.umich.edu\/", + "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", + "short_name": "umich", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", + "mailing_list_id": null, + "website_youtube": "user\/um", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", + "location_state": "MI", + "name": "University of Michigan", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", + "location_lng": -83.7430378, + "home_link": "", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.", + "short_name": "sna", + "category-ids": [ + "infotech", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", + "instructor": "Lada Adamic", + "categories": [ + { + "id": 4, + "name": "Information, Tech & Design", + "mailing_list_id": null, + "short_name": "infotech", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Social Network Analysis", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 108, + "start_month": 9, + "certificate_description": "This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 3, + "signature_track_registration_open": false, + "topic_id": 38, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 10, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 10, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 123682 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/sna-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 108 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/large-icon.png", + "video": "Zrq-8qZks3U", + "university-ids": [ + "princeton" + ], + "id": 46, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "princeton", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", + "website_facebook": "PrincetonU", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", + "location_lat": null, + "background_color": "", + "mailing_list_id": null, + "location_city": "", + "location_country": "", + "id": 4, + "location": "", + "primary_color": "#BA632D", + "abbr_name": "Princeton", + "website": "http:\/\/www.princeton.edu\/", + "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", + "short_name": "princeton", + "location_state": "", + "website_youtube": "princetonuniversity\/", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", + "name": "Princeton University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", + "display": true, + "location_lng": null, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", + "square_logo_svg": "" + } + ], + "self_service_course_id": null, + "short_description": "This course teaches a calculus that enables precise quantitative predictions of large combinatorial structures. Part I covers generating functions and real asymptotics and then introduces the symbolic method in the context of applications in the analysis of algorithms and basic structures such as permutations, trees, strings, words, and mappings.", + "short_name": "introACpartI", + "category-ids": [ + "math" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/small-icon.hover.png", + "instructor": "Robert Sedgewick", + "categories": [ + { + "mailing_list_id": null, + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", + "id": 5, + "short_name": "math", + "name": "Mathematics" + } + ], + "name": "Analytic Combinatorics, Part I", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_year": 2013, + "duration_string": "5 weeks", + "signature_track_last_chance_time": null, + "id": 142, + "start_month": 2, + "certificate_description": "", + "start_date_string": "February 2013", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "creator_id": null, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 46, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_day": 8, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 250165 + ], + "active": true, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/introACpartI-001\/", + "certificates_ready": false, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 142 + ], + "display": false + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/large-icon.png", + "preview_link": "", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/large-icon.png", + "video": "dummylink", + "university-ids": [ + "coursera" + ], + "id": 52, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "", + "favicon": "", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/c122fadabd6e23bd278cade259b843\/160_coursera-01.png", + "location_lat": 37.7749295, + "background_color": "", + "mailing_list_id": null, + "location_city": "SF", + "location_country": "US", + "id": 46, + "location": "", + "primary_color": "", + "abbr_name": "Coursera", + "website": "", + "description": "", + "short_name": "coursera", + "location_state": "CA", + "website_youtube": "", + "partner_type": 1, + "banner": "", + "landing_page_banner": "", + "name": "Coursera", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a6\/2a6416aa61cf1f8d3138d0c787bb8b\/Screen-Shot-2013-01-28-at-9.42.14-PM.png", + "square_logo_source": "", + "display": false, + "location_lng": -122.4194155, + "home_link": "http:\/\/www.coursera.org", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6a\/c15c38afd852855ccf4f97e43867b5\/coursera_1500-copy.png", + "square_logo_svg": "" + } + ], + "self_service_course_id": null, + "short_description": "

      Coursera Internal<\/p>", + "short_name": "__courserainternal", + "category-ids": [ + + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/small-icon.hover.png", + "instructor": "Coursera, Inc.", + "categories": [ + + ], + "name": "School Playspace", + "language": "en", + "courses": [ + { + "grading_policy_distinction": null, + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_year": null, + "duration_string": "", + "signature_track_last_chance_time": null, + "id": 36, + "start_month": null, + "certificate_description": null, + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "creator_id": null, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 52, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_day": null, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "Placeholder for Course 36", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": null, + "ace_open_date": null, + "home_link": "", + "certificates_ready": false, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 36 + ], + "display": false + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/compinvesting1-002\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/large-icon.png", + "video": "HUDwIEeil38", + "university-ids": [ + "gatech" + ], + "id": 86, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e6\/f7803ce100fc4fd2ff4314a25995b3\/Coursera-STO-logo-01.svg", + "wordmark": null, + "website_twitter": "georgiatech", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/4d9c7e8a6ad0e787553d8b9d77d450\/favicon-gatech.ico", + "website_facebook": "georgiatech", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/30\/4b35cef753fcd6f13494279b65dc84\/Georgia-Tech.png", + "background_color": "", + "id": 9, + "location_city": "Atlanta", + "location_country": "US", + "location_lat": 33.7784626, + "location": "Georgia Institute of Technology, Atlanta, GA", + "primary_color": "#C59353", + "abbr_name": "Georgia Tech", + "website": "http:\/\/www.gatech.edu\/", + "description": "The Georgia Institute of Technology is one of the nation's top research universities, distinguished by its commitment to improving the human condition through advanced science and technology.\n\nGeorgia Tech's campus occupies 400 acres in the heart of the city of Atlanta, where more than 20,000 undergraduate and graduate students receive a focused, technologically based education.", + "short_name": "gatech", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/24\/0de4d4975ff698bdce7b8cf2f86c88\/GT-Coursera-Banner.jpg", + "mailing_list_id": null, + "website_youtube": "georgiatech", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ee\/a21fe3506486f9ef6b5d7ca324d55f\/banner-gatech.jpg", + "location_state": "GA", + "name": "Georgia Institute of Technology", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/27\/a693dcb342a1ed209fdb0c2de7e6a3\/GT-Coursera-logo-square.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/be\/3e07cb47dd285544de28654fb24b18\/GT-Coursera-logo-square.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/29\/c5d764e8d4ad4eca175ca2f7a6ae40\/GT-Coursera-logo-square.svg", + "location_lng": -84.3988806, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c4\/4371496c5361191aa6a9721cfbe1cf\/Georgia-Institute-of-Technology.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Find out how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them. \u00a0Build algorithms and visualizations to inform investing practice.", + "short_name": "compinvesting1", + "category-ids": [ + "economics", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/small-icon.hover.png", + "instructor": "Tucker Balch", + "categories": [ + { + "id": 2, + "name": "Economics & Finance", + "mailing_list_id": null, + "short_name": "economics", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Computational Investing, Part I", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 4 quizzes (40% of the final grade) and four homework assignments (60% of the final grade). The quizzes were weighted equally, as were homework assignments. To receive a Statement of Accomplishment, you must have obtained 90% or more of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 22, + "duration_string": "9 weeks", + "signature_track_last_chance_time": null, + "id": 364, + "start_month": 10, + "certificate_description": "This course helps you discover how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them and to build algorithms and visualizations to inform investing practice.", + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-01-02", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 17, + "signature_track_registration_open": false, + "topic_id": 86, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 2225883, + 2351781 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 4 quizzes (40% of the final grade) and four homework assignments (60% of the final grade). The quizzes were weighted equally with the lowest quiz score dropped, and likewise for homework assignments. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/compinvesting1-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 364 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f2\/1f3c174e05ac2b604742aa79a989c5\/small-icon.hover.png", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/56\/3d5827c565edde379dabc12ba8f36c\/small-icon.hover.png", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/bc\/1b1da1510430626d00a99244019e0a\/small-icon.hover.png", + "video": "", + "university-ids": [ + "uw" + ], + "id": 95, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "UW", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", + "website_facebook": "UofWA", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", + "background_color": "", + "id": 15, + "location_city": "Seattle", + "location_country": "US", + "location_lat": 47.6062095, + "location": "Seattle, WA", + "primary_color": "#38255a", + "abbr_name": "Washington", + "website": "https:\/\/www.washington.edu\/", + "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", + "short_name": "uw", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", + "mailing_list_id": null, + "website_youtube": "user\/uwhuskies", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", + "location_state": "WA", + "name": "University of Washington", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", + "square_logo_svg": "", + "location_lng": -122.3320708, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "

      In this course, you will explore several structured, risk management approaches that guide information security decision-making.\u00a0<\/div>\n
      <\/div>", + "short_name": "inforisk", + "category-ids": [ + "infotech", + "cs-systems" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/56\/3d5827c565edde379dabc12ba8f36c\/small-icon.hover.png", + "instructor": "", + "categories": [ + { + "id": 4, + "name": "Information, Tech & Design", + "mailing_list_id": null, + "short_name": "infotech", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Building an Information Risk Management Toolkit", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 7, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 324, + "start_month": 1, + "certificate_description": "", + "start_date_string": "", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 95, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2013, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1109500 + ], + "active": true, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/inforisk-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 324 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/large-icon.png", + "video": "exBbVX0pYxo", + "university-ids": [ + "uw" + ], + "id": 97, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "UW", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", + "website_facebook": "UofWA", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", + "background_color": "", + "id": 15, + "location_city": "Seattle", + "location_country": "US", + "location_lat": 47.6062095, + "location": "Seattle, WA", + "primary_color": "#38255a", + "abbr_name": "Washington", + "website": "https:\/\/www.washington.edu\/", + "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", + "short_name": "uw", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", + "mailing_list_id": null, + "website_youtube": "user\/uwhuskies", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", + "location_state": "WA", + "name": "University of Washington", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", + "square_logo_svg": "", + "location_lng": -122.3320708, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Understanding how the brain works is one of the fundamental challenges in science today. This course will introduce you to basic computational techniques for analyzing, modeling, and understanding the behavior of cells and circuits in the brain. You do not need to have any prior background in neuroscience to take this course.", + "short_name": "compneuro", + "category-ids": [ + "biology", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/small-icon.hover.png", + "instructor": "Rajesh P. N. Rao and Adrienne Fairhall", + "categories": [ + { + "id": 10, + "name": "Biology & Life Sciences", + "mailing_list_id": null, + "short_name": "biology", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Computational Neuroscience", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 19, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 330, + "start_month": 4, + "certificate_description": "This advanced undergraduate course introduces a broad range of computational techniques for analyzing, modeling, and understanding the behavior of neurons and networks of neurons in the brain. ", + "start_date_string": "April 2013", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-06-25", + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": 73, + "signature_track_registration_open": false, + "topic_id": 97, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1282559, + 1522272 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade is based on 5 homework assignments. To receive a Statement of Accomplishment, you have to obtain 60% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/compneuro-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 330 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/large-icon.png", + "video": "", + "university-ids": [ + "stanford" + ], + "id": 127, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about the inner workings of cryptographic primitives and protocols and how to apply this knowledge in real-world applications.", + "short_name": "crypto2", + "category-ids": [ + "cs-theory", + "cs-systems" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/small-icon.hover.png", + "instructor": "Dan Boneh, Professor", + "categories": [ + { + "id": 1, + "name": "Computer Science: Theory", + "mailing_list_id": null, + "short_name": "cs-theory", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Cryptography II", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 15, + "duration_string": "6 weeks", + "signature_track_last_chance_time": null, + "id": 376, + "start_month": 10, + "certificate_description": "", + "start_date_string": "21 January 2013", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 127, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 774 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/crypto2-2013-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 376 + ], + "display": true + }, + { + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/large-icon.png", + "video": "LKBZTL7mOgA", + "university-ids": [ + "iitd" + ], + "id": 145, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/93\/8531f10a9edadb75ba98db75fb5ad4\/favicon-iitd.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bc\/189a02293cf34426f34a396d34e742\/logo-iitd-v2-course.png", + "background_color": "", + "id": 19, + "location_city": "", + "location_country": "", + "location_lat": null, + "location": "", + "primary_color": "#38AFA9", + "abbr_name": "IIT, Delhi", + "website": "", + "description": "", + "short_name": "iitd", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "", + "name": "Indian Institute of Technology Delhi", + "square_logo": "", + "square_logo_source": "", + "square_logo_svg": "", + "location_lng": null, + "home_link": "http:\/\/www.iitd.ac.in\/", + "class_logo": "", + "display": false + } + ], + "self_service_course_id": null, + "short_description": "This course is about building 'web-intelligence' applications exploiting big data sources arising social media, mobile devices and sensors, using new big-data platforms based on the 'map-reduce' parallel programming paradigm. During the fall semester this course is offered at the Indian Institute of Technology Delhi as well as the Indraprastha Institute of Information Technology Delhi. ", + "short_name": "bigdata", + "category-ids": [ + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/small-icon.hover.png", + "instructor": "Gautam Shroff", + "categories": [ + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Web Intelligence and Big Data", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on your best 5 of 8 quizzes (10% of the final grade), best 3 of 4 homework assignments (25% of the final grade), best 2 of 3 programming\/analysis assignments (25% of the final grade) and all of the final exam (40% of the final grade). To receive a Statement of Accomplishment with Distinction, you need to have obtained >= 85% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 970315, + "start_month": 3, + "certificate_description": "This course is about building 'web-intelligence' applications using machine-learning and parallel map-reduce programming to analyze 'big data' such as arising from social media or genomics.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-06-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 10, + "signature_track_registration_open": false, + "topic_id": 145, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 107347 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on your best 5 of 8 quizzes (10% of the final grade), best 3 of 4 homework assignments (25% of the final grade), best 2 of 3 programming\/analysis assignments (25% of the final grade) and all of the final exam (40% of the final grade). To receive a Statement of Accomplishment, you need to have obtained >= 61% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/bigdata-002\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970315 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/26\/761dfb7b58773c88fe4cb2aed26a3c\/iStock_000020359734_Small.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/7e\/0150790f6c92c48d03bf6178ea9193\/iStock_000020359734_Small.jpg", + "video": "", + "university-ids": [ + "columbia" + ], + "id": 225, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "columbia", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/72\/c9b56e3ff66fa6e1ca52bdea9440ae\/ColumbialittleLOGO4.png", + "website_facebook": "Columbia", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/9b\/42f2eca2f10769400d1f8519892413\/ColumbiaLOGO.png", + "background_color": "", + "id": 40, + "location_city": "New York", + "location_country": "US", + "location_lat": 40.7143528, + "location": "New York City, NY, USA", + "primary_color": "#1f2f60", + "abbr_name": "Columbia", + "website": "http:\/\/www.columbia.edu\/", + "description": "For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.", + "short_name": "columbia", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/3d\/731d687dff430714ea6413c8b9d932\/banner_coursera_columbia.jpg", + "mailing_list_id": null, + "website_youtube": "columbia", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0d\/6b60ecae321cd9d6e02b5a1376e7cb\/columbia-banner.jpg", + "location_state": "NY", + "name": "Columbia University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d2\/74c67a99b3e2516e7efbb4d9892721\/cu_collegiate_blue.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bb\/d42540e622a1bb89a1b5f2258f3602\/cu_collegiate_blue.png", + "square_logo_svg": "", + "location_lng": -74.0059731, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/592ba6a9789657a5a0912204491332\/logo_cu_background_trans.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.", + "short_name": "nlangp", + "category-ids": [ + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", + "instructor": "Michael Collins", + "categories": [ + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Natural Language Processing", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 970276, + "start_month": 2, + "certificate_description": "This introductory graduate\/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-05-15", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 59, + "signature_track_registration_open": false, + "topic_id": 225, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 0, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 0, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1325520 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/nlangp-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970276 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/214ce37265a397e3cb97fd25e658de\/cavallaro-logo.png", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d4\/edab6f88cb29582e8215774b2fa19e\/cavallaro-logo.png", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e8\/06553aa034970e31d0c6372c02822e\/cavallaro-logo.png", + "video": "G_ejj8NfiUw", + "university-ids": [ + "london" + ], + "id": 232, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "LondonU", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/7737f6a77362b5ef13cb10fd1aeaa0\/uol.ico", + "website_facebook": "LondonU", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/b867b6dc7439e708b44006cea8c399\/ULondonTrans.png", + "background_color": "", + "id": 26, + "location_city": "London", + "location_country": "GB", + "location_lat": 51.521061, + "location": "Senate House, Malet Street, London, United Kingdom", + "primary_color": "#4F7FA2", + "abbr_name": "London International", + "website": "http:\/\/www.londoninternational.ac.uk\/", + "description": "The University of London is a federal University with 18 world leading Colleges. Our International Programmes were founded in 1858 and have enriched the lives of thousands of students across the globe. Our alumni includes 7 Nobel Prize winners. Today, we are a global leader in distance and flexible study, offering degree programmes to 52,000 students in 190 countries.", + "short_name": "london", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8c\/8a71f733b70e2d8e16f5a5a548464b\/UoLIP-Coursera-Banner_opt2.jpg", + "mailing_list_id": null, + "website_youtube": "user\/unioflondon", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/96\/1040015ba05fc94541f6d10a9bd3e4\/Header_928x220.jpg", + "location_state": "", + "name": "University of London International Programmes", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/43\/a6210027ba5aece40a701cd587d75a\/UoLIP-logo-360x360.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/fa\/c5f9b56ff7f4d1000c7a4b5201070c\/UoLIP-logo-360x360.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1a\/dd7cd4af07eb1ee5017d2f4cda53a6\/UoLIP-logo-360x360.svg", + "location_lng": -0.12873500000001, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ca\/b1f99e17d2ba14a0ad911017419f2e\/wide-logo-png.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about traditional and mobile malware, the security threats they represent, state-of-the-art analysis and detection techniques, and the underground ecosystem that drives such a profitable but illegal business.", + "short_name": "malsoftware", + "category-ids": [ + "cs-systems", + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d4\/edab6f88cb29582e8215774b2fa19e\/cavallaro-logo.png", + "instructor": "Lorenzo Cavallaro of Royal Holloway, University of London", + "categories": [ + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Malicious Software and its Underground Economy: Two Sides to Every Story", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 17, + "duration_string": "6 weeks", + "signature_track_last_chance_time": "2013-06-24", + "id": 970255, + "start_month": 6, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": 69, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": 49, + "statement_design_id": null, + "signature_track_registration_open": true, + "topic_id": 232, + "eligible_for_signature_track": true, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1347691 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": "2013-06-13", + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/malsoftware-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": "2013-07-02" + } + ], + "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/0539fcb47b048c506f175b7ef56c51\/RHUL-logo.png", + "course-ids": [ + 970255 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d6\/b79772266def5c49c018552620b760\/logo.png", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/4fba1627b59c96672c9c067eed24c0\/logo.png", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/6d\/36b377d4ad926485cb6342444f6743\/logo.png", + "video": "", + "university-ids": [ + "stanford" + ], + "id": 300, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "", + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": null, + "square_logo_svg": null, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn the engineering skills needed to build a technology startup from the ground up.", + "short_name": "startup", + "category-ids": [ + "cs-programming", + "business", + "stats" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/4fba1627b59c96672c9c067eed24c0\/logo.png", + "instructor": "Balaji S. Srinivasan; Vijay Pande", + "categories": [ + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 13, + "name": "Business & Management", + "mailing_list_id": null, + "short_name": "business", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Startup Engineering", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based entirely on multiple choice questions and programming assignments. To receive a Statement of Accomplishment with Distinction, you have to obtain >= 90% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 17, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 970374, + "start_month": 6, + "certificate_description": "This MS-level course teaches engineering, design, and marketing in the context of mobile HTML5 development. Final projects are nontrivial open-source mobile apps.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 300, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1845856, + 1853352 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based entirely on multiple choice questions and programming assignments. To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/startup-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970374 + ], + "display": true + }, + { + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/37\/dc9609e73affd2ed41611617dfe67d\/Course_Logo_Computer_Vision.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/58\/2d3041eb65a7d499fb670d86d0d934\/Course_Logo_Computer_Vision.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/3f\/cb4a7c3ce0e6ac6a504ed714fcf59f\/Course_Logo_Computer_Vision.jpg", + "video": "", + "university-ids": [ + "tum" + ], + "id": 508, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "TU_Muenchen", + "favicon": "", + "website_facebook": "TU.Muenchen", + "logo": "", + "background_color": "", + "id": 78, + "location_city": "M\u00fcnchen", + "location_country": "DE", + "location_lat": 48.1366069, + "location": "Munich, Germany", + "primary_color": "#0065BD", + "abbr_name": "TUM", + "website": "http:\/\/www.tum.de\/", + "description": "Technische Universit\u00e4t M\u00fcnchen (TUM) is one of Europe\u2019s top universities. It is committed to excellence in research and teaching, interdisciplinary education and the active promotion of promising young scientists. The university forges strong links with companies and scientific institutions across the world. TUM was one of the first universities in Germany to be named a University of Excellence.", + "short_name": "tum", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/fd14d92dd4fa15b7ee49a52246d41b\/TUM-Haupteingang_1280x320px.jpg", + "mailing_list_id": null, + "website_youtube": "TUMuenchen1", + "partner_type": 1, + "banner": "", + "location_state": "BY", + "name": "Technische Universit\u00e4t M\u00fcnchen (TUM)", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/2c\/6b2e1799cc2e95901e763daac8d476\/TUM-Logo_360x360px.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/46\/6537b2cdd206869a732a8d278a95e1\/TUM-Logo_360x360px.png", + "square_logo_svg": "", + "location_lng": 11.5770851, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/a33c1f53da7ef95c6ebccf1378de46\/TUM-Logo_200x48px.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Dieser Kurs vermittelt einen \u00dcberblick \u00fcber die Grundlagen des Maschinellen Sehens an Hand der Extraktion von 3D-Information aus dem Stereokamerabild einer Szene.", + "short_name": "compvision", + "category-ids": [ + "cs-ai" + ], + "visibility": null, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/58\/2d3041eb65a7d499fb670d86d0d934\/Course_Logo_Computer_Vision.jpg", + "instructor": "Martin Kleinsteuber", + "categories": [ + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Einf\u00fchrung in Computer Vision", + "language": "de", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": null, + "duration_string": "", + "signature_track_last_chance_time": null, + "id": 970707, + "start_month": null, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 508, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": null, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": false, + "instructors": [ + 2693792 + ], + "active": false, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/compvision-001\/", + "creator_id": 3, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null + } + ], + "university_logo": "", + "course-ids": [ + 970707 + ], + "display": true + } +] +[ + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/ml\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", + "video": "e0WKJLovaZg", + "university-ids": [ + "stanford" + ], + "id": 2, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "", + "china_mirror": 2, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "location_lat": 37.4418834, + "background_color": "", + "mailing_list_id": null, + "location_city": "Palo Alto", + "location_country": "US", + "id": 1, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "location_state": "CA", + "website_youtube": "", + "partner_type": 1, + "banner": "", + "landing_page_banner": "", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": "", + "display": true, + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "square_logo_svg": "" + } + ], + "self_service_course_id": null, + "short_description": "Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.", + "short_name": "ml", + "category-ids": [ + "stats", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", + "instructor": "Andrew Ng, Associate Professor", + "categories": [ + { + "mailing_list_id": null, + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", + "id": 16, + "short_name": "stats", + "name": "Statistics and Data Analysis" + }, + { + "mailing_list_id": null, + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", + "id": 17, + "short_name": "cs-ai", + "name": "Computer Science: Artificial Intelligence" + } + ], + "name": "Machine Learning", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "N\/A", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_year": 2012, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 152, + "start_month": 8, + "certificate_description": "Congratulations! You have successfully completed the online Machine Learning course (ml-class.org). To successfully complete the course, students were required to watch lectures, review questions and complete programming assignments. ", + "start_date_string": "20 August 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-03-10", + "creator_id": null, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 2, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 100, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 100, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_day": 20, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 232841 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 18 equally-weighted quizzes (1\/3 of the total grade) and 8 programming assignments (2\/3 of the total grade). The lowest two quiz grades were dropped, as well as the lowest programming assignment grade. To receive a Statement of Accomplishment, you must have obtained 80% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/ml-2012-002\/", + "certificates_ready": true, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 152 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/pgm\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/large-icon.png", + "video": "bVMBe50GfnI", + "university-ids": [ + "stanford" + ], + "id": 3, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "", + "china_mirror": 2, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", + "website_facebook": "", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", + "background_color": "", + "id": 1, + "location_city": "Palo Alto", + "location_country": "US", + "location_lat": 37.4418834, + "location": "Palo Alto, CA, United States", + "primary_color": "#8c1515", + "abbr_name": "Stanford", + "website": "", + "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", + "short_name": "stanford", + "landing_page_banner": "", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 1, + "banner": "", + "location_state": "CA", + "name": "Stanford University", + "square_logo": "", + "square_logo_source": "", + "square_logo_svg": "", + "location_lng": -122.1430195, + "home_link": "http:\/\/online.stanford.edu\/", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.", + "short_name": "pgm", + "category-ids": [ + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/small-icon.hover.png", + "instructor": "Daphne Koller, Professor", + "categories": [ + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Probabilistic Graphical Models", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 20 assessments (25% of the final grade), 9 programming assignments with companion quizzes (together worth 63% of the final grade) and a final exam (12% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "11 weeks", + "signature_track_last_chance_time": null, + "id": 82, + "start_month": 9, + "certificate_description": "This graduate-level course covers the essentials of probabilistic graphical models and their applications: the representation of Bayesian and Markov networks; exact and approximate inference in these networks; and parameter and structure learning.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-19", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 8, + "signature_track_registration_open": false, + "topic_id": 3, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 84.563419453558, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 2, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 81.334056503349, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1257 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-002", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 20 assignments (77.5% of the final grade) and a final exam (22.5% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have achieved 70% or more of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/pgm-2012-002\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 82 + ], + "display": true + }, + { + "subtitle_languages_csv": "uk,zh", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/modelthinking-004\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/large-icon.png", + "video": "RX5LBZvEh10", + "university-ids": [ + "umich" + ], + "id": 11, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", + "wordmark": null, + "website_twitter": "umich", + "china_mirror": 3, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", + "website_facebook": "universityofmichigan", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", + "background_color": "", + "id": 3, + "location_city": "Ann Arbor", + "location_country": "US", + "location_lat": 42.2808256, + "location": "Ann Arbor, MI", + "primary_color": "#002e5f", + "abbr_name": "Michigan", + "website": "http:\/\/www.umich.edu\/", + "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", + "short_name": "umich", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", + "mailing_list_id": null, + "website_youtube": "user\/um", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", + "location_state": "MI", + "name": "University of Michigan", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", + "location_lng": -83.7430378, + "home_link": "", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "In this class, you will learn how to think with models and use them to make sense of the complex world around us.", + "short_name": "modelthinking", + "category-ids": [ + "economics", + "humanities" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/small-icon.hover.png", + "instructor": "Scott E. Page", + "categories": [ + { + "id": 2, + "name": "Economics & Finance", + "mailing_list_id": null, + "short_name": "economics", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 6, + "name": "Humanities ", + "mailing_list_id": 11, + "short_name": "humanities", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Model Thinking", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "N\/A", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": null, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 30, + "start_month": 2, + "certificate_description": "This course provided an introduction on how to think using models. Specific topics included, among others, decision-making, tipping points, economic models, crowd dynamics, Markov processes, game theory and predictive thinking.", + "start_date_string": "Feb 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-05-13", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 3, + "signature_track_registration_open": false, + "topic_id": 11, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 95.909090909091, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 95.909090909091, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 785 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "This Statement of Accomplishment has been granted to all students who earned a grade of 70% or above.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/modelthinking\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 30 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", + "video": "AJGGiAb47S4", + "university-ids": [ + "umich" + ], + "id": 38, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", + "wordmark": null, + "website_twitter": "umich", + "china_mirror": 3, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", + "website_facebook": "universityofmichigan", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", + "background_color": "", + "id": 3, + "location_city": "Ann Arbor", + "location_country": "US", + "location_lat": 42.2808256, + "location": "Ann Arbor, MI", + "primary_color": "#002e5f", + "abbr_name": "Michigan", + "website": "http:\/\/www.umich.edu\/", + "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", + "short_name": "umich", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", + "mailing_list_id": null, + "website_youtube": "user\/um", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", + "location_state": "MI", + "name": "University of Michigan", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", + "location_lng": -83.7430378, + "home_link": "", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.", + "short_name": "sna", + "category-ids": [ + "infotech", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", + "instructor": "Lada Adamic", + "categories": [ + { + "id": 4, + "name": "Information, Tech & Design", + "mailing_list_id": null, + "short_name": "infotech", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Social Network Analysis", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 108, + "start_month": 9, + "certificate_description": "This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 3, + "signature_track_registration_open": false, + "topic_id": 38, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 70, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 85.6667, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 123682 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/sna-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + }, + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 7, + "duration_string": "9 weeks", + "signature_track_last_chance_time": null, + "id": 970779, + "start_month": 10, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": 3, + "signature_track_registration_open": false, + "topic_id": 38, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 123682 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "003", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/sna-003\/", + "creator_id": 353840, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 108, + 970779 + ], + "display": true + }, + { + "subtitle_languages_csv": "uk,zh", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/large-icon.png", + "video": "7xy0mKUCXV4", + "university-ids": [ + "umich" + ], + "id": 40, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", + "wordmark": null, + "website_twitter": "umich", + "china_mirror": 3, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", + "website_facebook": "universityofmichigan", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", + "background_color": "", + "id": 3, + "location_city": "Ann Arbor", + "location_country": "US", + "location_lat": 42.2808256, + "location": "Ann Arbor, MI", + "primary_color": "#002e5f", + "abbr_name": "Michigan", + "website": "http:\/\/www.umich.edu\/", + "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", + "short_name": "umich", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", + "mailing_list_id": null, + "website_youtube": "user\/um", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", + "location_state": "MI", + "name": "University of Michigan", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", + "location_lng": -83.7430378, + "home_link": "", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course will introduce you to frameworks and tools to measure value; both for corporate and personal assets. It will also help you in decision-making, again at both the corporate and personal levels.", + "short_name": "introfinance", + "category-ids": [ + "economics", + "business" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/small-icon.hover.png", + "instructor": "Gautam Kaul", + "categories": [ + { + "id": 2, + "name": "Economics & Finance", + "mailing_list_id": null, + "short_name": "economics", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 13, + "name": "Business & Management", + "mailing_list_id": null, + "short_name": "business", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Introduction to Finance", + "language": "en", + "courses": [ + { + "grading_policy_distinction": " ", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 23, + "duration_string": "13 weeks", + "signature_track_last_chance_time": null, + "id": 112, + "start_month": 7, + "certificate_description": "You have successfully completed the course, Introduction to Finance, an online, non-credit course, authorized by the University of Michigan and taught by Professor Gautam Kaul of the University of Michigan.", + "start_date_string": "23 July 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-03-18", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 3, + "signature_track_registration_open": false, + "topic_id": 40, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 100, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 100, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 209008 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "This student scored at least 70% on five of the nine assignments, and earned a minimum of 70% on the final exam.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/introfinance-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 112 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/9d\/193d89375944329ca3c0bf32b32c56\/computing_B-02.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/97\/aba290f88787a8c3b13a816837ab6c\/computing_B-02.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/76\/469a2849f2ae5a29cbefba53c82592\/computing_B-02.jpg", + "video": "gk6E57H6mTs", + "university-ids": [ + "jhu" + ], + "id": 63, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "JohnsHopkins", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/80\/d81353ccd0bab30962a5770d7aec97\/favicon-jhu.ico", + "website_facebook": "johnshopkinsuniversity", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/0db65d1501244b9e6eacfa5e637fea\/logo-jhu-front.png", + "background_color": "", + "id": 8, + "location_city": "Baltimore", + "location_country": "US", + "location_lat": 39.2903848, + "location": "Baltimore, MD", + "primary_color": "#0061AA", + "abbr_name": "Johns Hopkins", + "website": "http:\/\/www.jhu.edu\/", + "description": "The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.", + "short_name": "jhu", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c2\/544537cee93c0acd67b6573d46a32e\/Coursera-banner.jpg", + "mailing_list_id": null, + "website_youtube": "johnshopkins", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/83\/94437b11dcbef874ea1f30d960a26b\/banner-jhu.jpg", + "location_state": "MD", + "name": "Johns Hopkins University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/4b\/229e9cabab40da92cdd0fc46cd7e06\/JHUNewSquare.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/4b4ca39464d8fd3a75bf8a68d0a1d9\/JHUNewSquare.png", + "square_logo_svg": "", + "location_lng": -76.6121893, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This course is about learning the fundamental computing skills necessary for effective data analysis. You will learn to program in R and to use R for reading data, writing functions, making informative graphs, and applying modern statistical methods.", + "short_name": "compdata", + "category-ids": [ + "health", + "stats" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/97\/aba290f88787a8c3b13a816837ab6c\/computing_B-02.jpg", + "instructor": "Roger Peng", + "categories": [ + { + "id": 8, + "name": "Health & Society", + "mailing_list_id": null, + "short_name": "health", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Computing for Data Analysis", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 90% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "4 weeks", + "signature_track_last_chance_time": null, + "id": 300, + "start_month": 9, + "certificate_description": "In this course students learn programming in R, reading data into R, creating data graphics, accessing and installing R packages, writing R functions, debugging, and organizing and commenting R code. ", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-06", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 6, + "signature_track_registration_open": false, + "topic_id": 63, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 100, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 2, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 100, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 685384 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 70% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/compdata-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/46\/2952c73da820e080b97b63f9ac0fba\/bloomberg.small.horizontal.blue-Coursera.png", + "course-ids": [ + 300 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/eb\/cf8c0e7e0bb418255e48fe210446c1\/bootcamp_B-02.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/3cc4db194a8f70139ec63afd200a0f\/bootcamp_B-02.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/99\/b022103b7d744911d090acafe2cb98\/bootcamp_B-02.jpg", + "video": "ekdpaf_WT_8", + "university-ids": [ + "jhu" + ], + "id": 68, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "JohnsHopkins", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/80\/d81353ccd0bab30962a5770d7aec97\/favicon-jhu.ico", + "website_facebook": "johnshopkinsuniversity", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/0db65d1501244b9e6eacfa5e637fea\/logo-jhu-front.png", + "background_color": "", + "id": 8, + "location_city": "Baltimore", + "location_country": "US", + "location_lat": 39.2903848, + "location": "Baltimore, MD", + "primary_color": "#0061AA", + "abbr_name": "Johns Hopkins", + "website": "http:\/\/www.jhu.edu\/", + "description": "The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.", + "short_name": "jhu", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c2\/544537cee93c0acd67b6573d46a32e\/Coursera-banner.jpg", + "mailing_list_id": null, + "website_youtube": "johnshopkins", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/83\/94437b11dcbef874ea1f30d960a26b\/banner-jhu.jpg", + "location_state": "MD", + "name": "Johns Hopkins University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/4b\/229e9cabab40da92cdd0fc46cd7e06\/JHUNewSquare.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/4b4ca39464d8fd3a75bf8a68d0a1d9\/JHUNewSquare.png", + "square_logo_svg": "", + "location_lng": -76.6121893, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "This class presents the fundamental probability and statistical concepts used in elementary data analysis. It will be taught at an introductory level for students with junior or senior college-level mathematical training including a working knowledge of calculus. A small amount of linear algebra and programming are useful for the class, but not required. ", + "short_name": "biostats", + "category-ids": [ + "math", + "health", + "biology", + "stats" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/3cc4db194a8f70139ec63afd200a0f\/bootcamp_B-02.jpg", + "instructor": "Brian Caffo", + "categories": [ + { + "id": 5, + "name": "Mathematics", + "mailing_list_id": null, + "short_name": "math", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 8, + "name": "Health & Society", + "mailing_list_id": null, + "short_name": "health", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 10, + "name": "Biology & Life Sciences", + "mailing_list_id": null, + "short_name": "biology", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Mathematical Biostatistics Boot Camp 1", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 90% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 302, + "start_month": 9, + "certificate_description": "This course puts forward key mathematical and statistical topics to help students understand biostatistics at a deeper level. Successful students have a basic understanding of the goals, assumptions, benefits and negatives of probability modeling in the medical sciences.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-11", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 6, + "signature_track_registration_open": false, + "topic_id": 68, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 94.761904761905, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 2, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 94.761904761905, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 688901 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 70% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/biostats-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/41\/41ed34d097fda979808abc09e4030a\/bloomberg.small.horizontal.blue-Coursera.png", + "course-ids": [ + 302 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/large-icon.png", + "video": "KuPai0ogiHk", + "university-ids": [ + "utoronto" + ], + "id": 77, + "universities": [ + { + "rectangular_logo_svg": null, + "wordmark": null, + "website_twitter": "uoftnews", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/773801b870a0cb946698134a77417d\/favicon-utoronto.ico", + "website_facebook": "universitytoronto", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/78\/334b4573e06c876cff8e2484f082d7\/logo-utoronto-front.png", + "background_color": "", + "id": 11, + "location_city": "Toronto", + "location_country": "CA", + "location_lat": 43.653226, + "location": "Toronto, ON, Canada", + "primary_color": "#1c3361", + "abbr_name": "U of T", + "website": "http:\/\/www.utoronto.ca\/", + "description": "Established in 1827, the University of Toronto has one of the strongest research and teaching faculties in North America, presenting top students at all levels with an intellectual environment unmatched in depth and breadth on any other Canadian campus.", + "short_name": "utoronto", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/84\/774219ef720c726661c682cda7838a\/UofT-Banner.jpg", + "mailing_list_id": null, + "website_youtube": "universitytoronto", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6f\/9a578312b814f8aeaf942f4f248447\/banner-utoronto.jpg", + "location_state": "ON", + "name": "University of Toronto", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/04\/1df8943d27a485a986a3ebf10c83d9\/UofT-Crest-Square.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dd\/cf4561b10afb34d449bb9574ecbca3\/UofT-Crest-Square.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/06\/0e2fff91e34df097bbb12ecd57c0af\/UofT-Crest-Square.svg", + "location_lng": -79.3831843, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e0\/c3219157fdcd439fb3b765c4b723e5\/UofT-Crest-Wide.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about artificial neural networks and how they're being used for machine learning, as applied to speech and object recognition, image segmentation, modeling language and human motion, etc. We'll emphasize both the basic algorithms and the practical tricks needed to get them to work well.", + "short_name": "neuralnets", + "category-ids": [ + "stats", + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/small-icon.hover.png", + "instructor": "Geoffrey Hinton", + "categories": [ + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Neural Networks for Machine Learning", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "Students who achieved at least 90% overall receive a Statement of Accomplishment with Distinction.\n", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 1, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 256, + "start_month": 10, + "certificate_description": "The course covered learning techniques for many different types of neural network including deep feed-forward networks, recurrent networks and Boltzmann Machines. It covered recent applications to speech, vision, and language, and used hands-on programming assignments.", + "start_date_string": "24 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-19", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 14, + "signature_track_registration_open": false, + "topic_id": 77, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 70.281365740741, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 70.281365740741, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 831097 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on the four programming assignments (5% for PA1, 10% for each of the other three), the weekly quizzes (40%, with each quiz being weighted as one fifteenth of that), and the final exam (25%). Students who achieved at least 70% overall receive a Statement of Accomplishment.\n", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/neuralnets-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 256 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/large-icon.png", + "preview_link": "https:\/\/class.coursera.org\/datasci-001\/lecture\/preview", + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/large-icon.png", + "video": "", + "university-ids": [ + "uw" + ], + "id": 106, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "UW", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", + "website_facebook": "UofWA", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", + "background_color": "", + "id": 15, + "location_city": "Seattle", + "location_country": "US", + "location_lat": 47.6062095, + "location": "Seattle, WA", + "primary_color": "#38255a", + "abbr_name": "Washington", + "website": "https:\/\/www.washington.edu\/", + "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", + "short_name": "uw", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", + "mailing_list_id": null, + "website_youtube": "user\/uwhuskies", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", + "location_state": "WA", + "name": "University of Washington", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", + "square_logo_svg": "", + "location_lng": -122.3320708, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Join the data revolution. Companies are searching for data scientists. This specialized field demands multiple skills not easy to obtain through conventional curricula. Introduce yourself to the basics of data science and leave armed with practical experience extracting value from big data.", + "short_name": "datasci", + "category-ids": [ + "infotech", + "cs-systems", + "cs-programming", + "stats" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/small-icon.hover.png", + "instructor": "Bill Howe", + "categories": [ + { + "id": 4, + "name": "Information, Tech & Design", + "mailing_list_id": null, + "short_name": "infotech", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 11, + "name": "Computer Science: Systems & Security", + "mailing_list_id": null, + "short_name": "cs-systems", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 16, + "name": "Statistics and Data Analysis", + "mailing_list_id": null, + "short_name": "stats", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Introduction to Data Science", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 75% of the maximum possible score. ", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 1, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 346, + "start_month": 5, + "certificate_description": "This course covered a broad set of topics critical to practical data science: relational databases, MapReduce, NoSQL, statistical modeling, basic machine learning, and visualization, and a variety of algorithmic topics.", + "start_date_string": "April 2013", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-06-29", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 43, + "signature_track_registration_open": false, + "topic_id": 106, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 58.181818181818, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 58.181818181818, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 999946 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 60% of the maximum possible score. ", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/datasci-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": null, + "course-ids": [ + 346 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/large-icon.png", + "preview_link": null, + "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/small-icon.hover.png", + "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/large-icon.png", + "video": "_NVySmdAH4c", + "university-ids": [ + "epfl" + ], + "id": 116, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/7f14b8c6f54b56a2446c99b2b8df86\/EPFL_LOG_QUADRI_Red_resized.svg", + "wordmark": null, + "website_twitter": "EPFL", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ba\/142188830b51c8c51b95cc25e5dbf3\/epflfav.png", + "website_facebook": "EPFL.ch", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/0a73c737b332745aac47797f57cda4\/logo-epfl-front.png", + "background_color": "", + "id": 16, + "location_city": "Lausanne", + "location_country": "CH", + "location_lat": 46.5199617, + "location": "Lausanne, Switzerland", + "primary_color": "#7E000C", + "abbr_name": "EPFL", + "website": "http:\/\/www.epfl.ch\/", + "description": "", + "short_name": "epfl", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/b50d471bc34471c5a7c696b1d714cc\/rolex_learning_center.jpg", + "mailing_list_id": null, + "website_youtube": "user\/epflnews", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ab\/bb616e071f67f5bcaead9b67dbaa36\/banner-epfl.jpg", + "location_state": "VD", + "name": "\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/01\/a5c9c211331132096e7ba9942dbd51\/square_epfl_400.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/f441e9c1630625018763c3b86cf582\/square_epfl_400.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a7\/fca9be507583b1f25e0fcd9fca0d59\/square_epfl_400.svg", + "location_lng": 6.6335971, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn about functional programming, and how it can be effectively combined with object-oriented programming. Gain practice in writing clean functional code, using the Scala programming language.", + "short_name": "progfun", + "category-ids": [ + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/small-icon.hover.png", + "instructor": "Martin Odersky", + "categories": [ + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Functional Programming Principles in Scala", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment with Distinction, one must obtain >= 80% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 18, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 308, + "start_month": 9, + "certificate_description": "This advanced undergraduate programming course covers the principles of functional programming using Scala, including the use of functions as values, recursion, immutability, pattern matching, higher-order functions and collections, and lazy evaluation.", + "start_date_string": "18 September 2012", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2012-12-05", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 13, + "signature_track_registration_open": false, + "topic_id": 116, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 98, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 2, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 98, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2012, + "signature_track_certificate_combined_signature": null, + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 672627 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": null, + "grading_policy_normal": "The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment, one must obtain >= 60% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/progfun-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 308 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/02\/c44a1233fcf277511c7720292324e3\/course_logo.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e1\/644d37da2af639d0c9d1f4fca323c2\/course_logo.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f2\/e2d37549671b4a0c04b4f40669e1c9\/course_logo.jpg", + "video": "", + "university-ids": [ + "uw" + ], + "id": 117, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "UW", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", + "website_facebook": "UofWA", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", + "background_color": "", + "id": 15, + "location_city": "Seattle", + "location_country": "US", + "location_lat": 47.6062095, + "location": "Seattle, WA", + "primary_color": "#38255a", + "abbr_name": "Washington", + "website": "https:\/\/www.washington.edu\/", + "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", + "short_name": "uw", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", + "mailing_list_id": null, + "website_youtube": "user\/uwhuskies", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", + "location_state": "WA", + "name": "University of Washington", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", + "square_logo_svg": "", + "location_lng": -122.3320708, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Investigate the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming. Use the programming languages ML, Racket, and Ruby in ways that will teach you how the pieces of a language fit together to create more than the sum of the parts. Gain new software skills and the concepts needed to learn new languages on your own.", + "short_name": "proglang", + "category-ids": [ + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e1\/644d37da2af639d0c9d1f4fca323c2\/course_logo.jpg", + "instructor": "Dan Grossman", + "categories": [ + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Programming Languages", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 14, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 352, + "start_month": 1, + "certificate_description": "This course investigates the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming along with many other topics.", + "start_date_string": "January 2013", + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-04-02", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 73, + "signature_track_registration_open": false, + "topic_id": 117, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 100, + "share_for_work": false, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 1, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 83.248707692308, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 0, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 873260 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "12-001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 7 assignments each worth 10% of the final grade, with 90% of the 10% produced from auto-grading and the remaining 10% coming from peer assessment. The course had two exams each worth 15% of the course grade.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/proglang-2012-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": "", + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 352 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/0b\/c3f029f340132247bf0e29fa00b61e\/Talk_Bubble_FIN2.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/a5\/4249170f680bed10896e026c8c904c\/Talk_Bubble_FIN2.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/3b\/cccc8e7188d7f351b5354e0d82684e\/Talk_Bubble_FIN2.jpg", + "video": "WsW9IT1Q6OA", + "university-ids": [ + "pitt" + ], + "id": 161, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "PittTweet", + "china_mirror": 2, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/00\/ee7a228aa46a231152d55b9bb9d0ae\/logo_16x16.png", + "website_facebook": "UPitt", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/79\/17cec4653cf480709f1e1387174c10\/course_logo_160x60.png", + "background_color": "", + "id": 36, + "location_city": "Pittsburgh", + "location_country": "US", + "location_lat": 40.4406248, + "location": "Pittsburgh, PA, USA", + "primary_color": "#211c51", + "abbr_name": "Pittsburgh", + "website": "http:\/\/www.pitt.edu\/", + "description": "Leader in Education | Pioneer in Research | Partner in Regional Development", + "short_name": "pitt", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/9f0fef78e7139d3b7b13241df58529\/banner-edit.jpg", + "mailing_list_id": null, + "website_youtube": "pittweb", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b4\/a20a6bc0497aff000b698a477aebba\/banner_928x220.jpg", + "location_state": "PA", + "name": "University of Pittsburgh", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ec\/05df639c8e1a3ff7617e1997f0feae\/pittseal360x360-edit.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e7\/eaadeaf0338f3f65156f819507e423\/pittseal360x360-edit.png", + "square_logo_svg": "", + "location_lng": -79.9958864, + "home_link": "", + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/7b\/10384469bc3891766ffd0ab7eb40b4\/wide-logo.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Designed for teachers and learners in every setting - in school and out, in formal learning environments or at home - this course is an introduction to the theory and practice of well-structured talk that builds the mind.", + "short_name": "accountabletalk", + "category-ids": [ + "education", + "teacherpd" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/a5\/4249170f680bed10896e026c8c904c\/Talk_Bubble_FIN2.jpg", + "instructor": "Lauren Resnick and Jennifer Zoltners Sherer", + "categories": [ + { + "id": 14, + "name": "Education", + "mailing_list_id": null, + "short_name": "education", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 26, + "name": "Teacher Professional Development", + "mailing_list_id": null, + "short_name": "teacherpd", + "description": "" + } + ], + "name": "Accountable Talk\u00ae: Conversation that Works", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 8, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 970246, + "start_month": 9, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 161, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1251073, + 1280592, + 2606081 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/accountabletalk-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 970246 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/26\/761dfb7b58773c88fe4cb2aed26a3c\/iStock_000020359734_Small.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/7e\/0150790f6c92c48d03bf6178ea9193\/iStock_000020359734_Small.jpg", + "video": "", + "university-ids": [ + "columbia" + ], + "id": 225, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "columbia", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/72\/c9b56e3ff66fa6e1ca52bdea9440ae\/ColumbialittleLOGO4.png", + "website_facebook": "Columbia", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/9b\/42f2eca2f10769400d1f8519892413\/ColumbiaLOGO.png", + "background_color": "", + "id": 40, + "location_city": "New York", + "location_country": "US", + "location_lat": 40.7143528, + "location": "New York City, NY, USA", + "primary_color": "#1f2f60", + "abbr_name": "Columbia", + "website": "http:\/\/www.columbia.edu\/", + "description": "For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.", + "short_name": "columbia", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/3d\/731d687dff430714ea6413c8b9d932\/banner_coursera_columbia.jpg", + "mailing_list_id": null, + "website_youtube": "columbia", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0d\/6b60ecae321cd9d6e02b5a1376e7cb\/columbia-banner.jpg", + "location_state": "NY", + "name": "Columbia University", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d2\/74c67a99b3e2516e7efbb4d9892721\/cu_collegiate_blue.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bb\/d42540e622a1bb89a1b5f2258f3602\/cu_collegiate_blue.png", + "square_logo_svg": "", + "location_lng": -74.0059731, + "home_link": null, + "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/592ba6a9789657a5a0912204491332\/logo_cu_background_trans.png", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.", + "short_name": "nlangp", + "category-ids": [ + "cs-ai" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", + "instructor": "Michael Collins", + "categories": [ + { + "id": 17, + "name": "Computer Science: Artificial Intelligence", + "mailing_list_id": null, + "short_name": "cs-ai", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Natural Language Processing", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 24, + "duration_string": "10 weeks", + "signature_track_last_chance_time": null, + "id": 970276, + "start_month": 2, + "certificate_description": "This introductory graduate\/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": "2013-05-15", + "certificates_ready": true, + "signature_track_price": null, + "statement_design_id": 59, + "signature_track_registration_open": false, + "topic_id": 225, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": 8.9285714285714, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": 0, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": 8.9285714285714, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 1325520 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/nlangp-001\/", + "creator_id": null, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 970276 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/03\/7a8bea5487c0296e61da3b557f41d1\/CourseBannerImageOptionBlackGold.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/5a137687bb0acb8d761296eec32e19\/CourseBannerImageOptionBlackGold.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/5ae3762b23bc94f5300164670c182f\/CourseBannerImageOptionBlackGold.jpg", + "video": "EeeVfRSYkV8", + "university-ids": [ + "uw" + ], + "id": 762, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "UW", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", + "website_facebook": "UofWA", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", + "background_color": "", + "id": 15, + "location_city": "Seattle", + "location_country": "US", + "location_lat": 47.6062095, + "location": "Seattle, WA", + "primary_color": "#38255a", + "abbr_name": "Washington", + "website": "https:\/\/www.washington.edu\/", + "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", + "short_name": "uw", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", + "mailing_list_id": null, + "website_youtube": "user\/uwhuskies", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", + "location_state": "WA", + "name": "University of Washington", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", + "square_logo_svg": "", + "location_lng": -122.3320708, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Mathematical Methods for Quantitative Finance covers topics from calculus and linear algebra that are fundamental for the study of mathematical finance. Students successfully completing this course will be mathematically well prepared to study quantitative finance at the graduate level.", + "short_name": "mathematicalmethods", + "category-ids": [ + "economics", + "math", + "business" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/5a137687bb0acb8d761296eec32e19\/CourseBannerImageOptionBlackGold.jpg", + "instructor": null, + "categories": [ + { + "id": 2, + "name": "Economics & Finance", + "mailing_list_id": null, + "short_name": "economics", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 5, + "name": "Mathematics", + "mailing_list_id": null, + "short_name": "math", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + }, + { + "id": 13, + "name": "Business & Management", + "mailing_list_id": null, + "short_name": "business", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Mathematical Methods for Quantitative Finance", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 25, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 971199, + "start_month": 9, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 762, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 3834103 + ], + "active": false, + "eligible_for_certificates": false, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/mathematicalmethods-001\/", + "creator_id": 1109500, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 971199 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f4\/fc7a006d2bafe837b6de5016d8a423\/Course-Logo.png", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/4e\/1d7362a932b2aa5baaa895d4f8425b\/Course-Logo.png", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/377e1431e27761059cf1d408e67642\/Course-Logo.png", + "video": "Bc1-PZ5NfRs", + "university-ids": [ + "cusystem" + ], + "id": 781, + "universities": [ + { + "rectangular_logo_svg": "", + "wordmark": null, + "website_twitter": "", + "china_mirror": 1, + "favicon": "", + "website_facebook": "", + "logo": "", + "background_color": "", + "id": 126, + "location_city": "", + "location_country": "", + "location_lat": null, + "location": "", + "primary_color": "", + "abbr_name": "CU System", + "website": "", + "description": "The University of Colorado is a recognized leader in higher education on the national and global stage. We collaborate to meet the diverse needs of our students and communities. We promote innovation, encourage discovery and support the extension of knowledge in ways unique to the state of Colorado and beyond.", + "short_name": "cusystem", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/40\/7f8dc97c973fcd38a4d202c143f2a9\/cu-bkg-coursera.jpg", + "mailing_list_id": null, + "website_youtube": "", + "partner_type": 2, + "banner": "", + "location_state": "", + "name": "University of Colorado System", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1b\/fb8b2887a17b007626846d08988b39\/colorado.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0c\/5859039090ad9fd55834fde43636a2\/colorado.jpg", + "square_logo_svg": "", + "location_lng": null, + "home_link": "", + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Start learning how to program video games using the C# programming language. Plenty of practice opportunities are included!", + "short_name": "gameprogramming", + "category-ids": [ + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/4e\/1d7362a932b2aa5baaa895d4f8425b\/Course-Logo.png", + "instructor": null, + "categories": [ + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Beginning Game Programming with C#", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 16, + "duration_string": "8 weeks", + "signature_track_last_chance_time": null, + "id": 971200, + "start_month": 9, + "certificate_description": "This introductory undergraduate course teaches beginning programming concepts in a game development context.", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 781, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": true, + "instructors": [ + 3134388 + ], + "active": true, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "The final grade was based on 6 Programming Assignments (48% of the final grade), a game development project (30% of the final grade), and a final exam (22% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score. ", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/gameprogramming-001\/", + "creator_id": 3134388, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/13\/0e2b677ebb94e8d3fdcd7cfdae92fd\/cu-coursera.png", + "course-ids": [ + 971200 + ], + "display": true + }, + { + "subtitle_languages_csv": "", + "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/48\/87ad9974a90a93b925e6861a8a15a1\/principles-reactive-v1.0.jpg", + "preview_link": null, + "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/9621270b46581ec73e52c6fb16aa02\/principles-reactive-v1.0.jpg", + "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/1c\/52b9de790b83e6c020c5884a689607\/principles-reactive-v1.0.jpg", + "video": "kZpLmcgq82k", + "university-ids": [ + "epfl" + ], + "id": 987, + "universities": [ + { + "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/7f14b8c6f54b56a2446c99b2b8df86\/EPFL_LOG_QUADRI_Red_resized.svg", + "wordmark": null, + "website_twitter": "EPFL", + "china_mirror": 1, + "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ba\/142188830b51c8c51b95cc25e5dbf3\/epflfav.png", + "website_facebook": "EPFL.ch", + "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/0a73c737b332745aac47797f57cda4\/logo-epfl-front.png", + "background_color": "", + "id": 16, + "location_city": "Lausanne", + "location_country": "CH", + "location_lat": 46.5199617, + "location": "Lausanne, Switzerland", + "primary_color": "#7E000C", + "abbr_name": "EPFL", + "website": "http:\/\/www.epfl.ch\/", + "description": "", + "short_name": "epfl", + "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/b50d471bc34471c5a7c696b1d714cc\/rolex_learning_center.jpg", + "mailing_list_id": null, + "website_youtube": "user\/epflnews", + "partner_type": 1, + "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ab\/bb616e071f67f5bcaead9b67dbaa36\/banner-epfl.jpg", + "location_state": "VD", + "name": "\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne", + "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/01\/a5c9c211331132096e7ba9942dbd51\/square_epfl_400.png", + "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/f441e9c1630625018763c3b86cf582\/square_epfl_400.png", + "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a7\/fca9be507583b1f25e0fcd9fca0d59\/square_epfl_400.svg", + "location_lng": 6.6335971, + "home_link": null, + "class_logo": "", + "display": true + } + ], + "self_service_course_id": null, + "short_description": "Learn how to write composable software that is event-driven, scalable under load, resilient and responsive in the presence of failures. Model systems after human organizations or inter-human communication.", + "short_name": "reactive", + "category-ids": [ + "cs-programming" + ], + "visibility": 0, + "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/9621270b46581ec73e52c6fb16aa02\/principles-reactive-v1.0.jpg", + "instructor": null, + "categories": [ + { + "id": 12, + "name": "Computer Science: Software Engineering", + "mailing_list_id": null, + "short_name": "cs-programming", + "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" + } + ], + "name": "Principles of Reactive Programming", + "language": "en", + "courses": [ + { + "grading_policy_distinction": "", + "ace_track_price_display": null, + "signature_track_certificate_design_id": null, + "ace_semester_hours": null, + "start_day": 4, + "duration_string": "7 weeks", + "signature_track_last_chance_time": null, + "id": 971465, + "start_month": 11, + "certificate_description": "", + "start_date_string": null, + "chegg_session_id": "", + "signature_track_regular_price": null, + "grades_release_date": null, + "certificates_ready": false, + "signature_track_price": null, + "statement_design_id": null, + "signature_track_registration_open": false, + "topic_id": 987, + "eligible_for_signature_track": false, + "start_date": null, + "record": { + "grade_distinction": null, + "share_for_work": null, + "is_enrolled_for_proctored_exam": false, + "achievement_level": null, + "signature_track": false, + "passed_ace": false, + "ace_grade": 0, + "grade_normal": null, + "verify_cert_id": "", + "authenticated_overall": false, + "with_grade_cert_id": "" + }, + "status": 1, + "start_year": 2013, + "signature_track_certificate_combined_signature": "", + "end_date": null, + "notified_subscribers": false, + "instructors": [ + 13089, + 672627, + 1337605 + ], + "active": false, + "eligible_for_certificates": true, + "signature_track_certificate_signature_blurb": "", + "deployed": true, + "ace_close_date": null, + "name": "001", + "textbooks": [ + + ], + "signature_track_open_time": null, + "eligible_for_ACE": false, + "grading_policy_normal": "", + "ace_open_date": null, + "home_link": "https:\/\/class.coursera.org\/reactive-001\/", + "creator_id": 628123, + "proctored_exam_completion_date": null, + "university_logo": null, + "signature_track_close_time": null, + "auth_review_completion_date": null + } + ], + "university_logo": "", + "course-ids": [ + 971465 + ], + "display": true + } +] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html new file mode 100644 index 000000000..387dcea67 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html @@ -0,0 +1,7196 @@ + + + + + + List of Presidents of the United States - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + + + +
      +

      List of Presidents of the United States

      +
      From Wikipedia, the free encyclopedia
      Jump to: navigation, search
      +
      The White House, the president's official residence and center of the administration

      Under the United States Constitution, the President of the United States is the head of state and head of government of the United States. As chief of the executive branch and head of the federal government as a whole, the presidency is the highest political office in the United States by influence and recognition. The president is also the commander-in-chief of the United States Armed Forces. The president is indirectly elected to a four-year term by an Electoral College (or by the House of Representatives should the Electoral College fail to award an absolute majority of votes to any person). Since the ratification of the Twenty-second Amendment to the United States Constitution in 1951, no person may be elected President more than twice, and no one who has served more than two years of a term to which someone else was elected may be elected more than once.[1] Upon the death, resignation, or removal from office of an incumbent President, the Vice President assumes the office. The President must be at least 35 years of age, has to live in the United States for 14 years, and has to be a "natural born" citizen of the United States.

      This list includes only those persons who were sworn into office as president following the ratification of the United States Constitution, which took effect on March 4, 1789. For American leaders before this ratification, see President of the Continental Congress.[2] The list does not include any Acting Presidents under the Twenty-fifth Amendment to the United States Constitution.

      There have been 43 people sworn into office, and 44 presidencies, as Grover Cleveland served two non-consecutive terms and is counted chronologically as both the 22nd and 24th president. Of the individuals elected as president, four died in office of natural causes (William Henry Harrison,[3] Zachary Taylor,[4] Warren G. Harding,[5] and Franklin D. Roosevelt), four were assassinated (Abraham Lincoln,[6] James A. Garfield,[6][7] William McKinley,[8] and John F. Kennedy) and one resigned (Richard Nixon).[9]

      George Washington, the first president, was inaugurated in 1789 after a unanimous vote of the Electoral College. William Henry Harrison spent the shortest time in office with 32 days in 1841. Franklin D. Roosevelt spent the longest with over twelve years, but died shortly into his fourth term in 1945; he is the only president to have served more than two terms. A constitutional amendment, affecting presidents after Harry Truman, was passed to limit the number of times an individual can be elected president. Andrew Jackson, the seventh president, was the first to be elected by men of all classes in 1828 after most laws barring non-land-owners from voting were repealed. Warren Harding was the first elected after women gained voting rights in 1920. Four presidents – John Q. Adams, Rutherford B. Hayes, Benjamin Harrison and George W. Bush – lost the popular vote but assumed office. John F. Kennedy has been the only president of Roman Catholic faith, and the current president, Barack Obama, is the first president of recent African descent.[10]

      +

      The listing below is complete for the current government of the USA. For this country, however, there were prior governments (including that under the Articles of Confederation). Prior to George Washington as first president under the current constitution, there were twelve people in leadership over the government of the United States of America who held the title of "President". Also during the Civil War, there was the position of "President of the Confederate States of America" in an entity separate from the USA, and this position was held by one person.

      +

      + +

      +

      List of presidents

      +
      +
      Parties
      +
      +

            No party       Federalist       Democratic-Republican       Democratic       Whig       Republican

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /tr> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      PresidentTook officeLeft officeParty + Term
      + [n 1] +
      Previous officeVice President
      1 +
      +
      +
      +

      George-Washington.jpg

      +
      +
      +
      +
      + George Washington
      + (1732–1799)
      + [11][12][13] +
      + April 30, 1789
      + [n 2] +
      March 4, 1797Independent[14] + 1
      + (1789) +
      + Commander-in-Chief of the Continental Army
      + (1775–1783) +
       John Adams
      + 2
      + (1792) +
      2 +
      +
      +
      +

      US Navy 031029-N-6236G-001 A painting of President John Adams (1735-1826), 2nd president of the United States, by Asher B. Durand (1767-1845)-crop.jpg

      +
      +
      +
      +
      + John Adams
      + (1735–1826)
      + [15][16][17] +
      March 4, 1797 + March 4, 1801
      + [n 3] +
      Federalist + 3
      + (1796) +
      Vice PresidentThomas Jefferson
      3 +
      +
      +
      +

      Thomas Jefferson by Rembrandt Peale, 1800.jpg

      +
      +
      +
      +
      + Thomas Jefferson
      + (1743–1826)
      + [18][19][20] +
      March 4, 1801March 4, 1809 + + Democratic-
      + Republican +
      +
      + 4
      + (1800) +
      Vice President + Aaron Burr
      + March 4, 1801March 4, 1805 +
      + 5
      + (1804) +
      + George Clinton[n 4]
      + March 4, 1805April 20, 1812 +
      4 +
      +
      +
      +

      James Madison.jpg

      +
      +
      +
      +
      + James Madison
      + (1751–1836)
      + [21][22][23] +
      March 4, 1809March 4, 1817 + + Democratic-
      + Republican +
      +
      + 6
      + (1808) +
      + Secretary of State
      + (1801–1809) +
       
      + Vacant[n 5]
      + April 20, 1812March 4, 1813 +
      + 7
      + (1812) +
      + Elbridge Gerry[n 4]
      + March 4, 1813November 23, 1814 +
      + Vacant[n 5]
      + November 23, 1814March 4, 1817 +
      5 +
      +
      +
      +

      James Monroe White House portrait 1819.gif

      +
      +
      +
      +
      + James Monroe
      + (1758–1831)
      + [24][25][26] +
      March 4, 1817March 4, 1825 + + Democratic-
      + Republican +
      +
      + 8
      + (1816) +
      + Secretary of State
      + (1811–1817) +
      Daniel D. Tompkins
      + 9
      + (1820) +
      6 +
      +
      +
      +

      John Quincy Adams.jpg

      +
      +
      +
      +
      + John Quincy Adams
      + (1767–1848)
      + [27][28][29] +
      March 4, 1825 + March 4, 1829
      + [n 3] +
      + + Democratic-
      + Republican +
      +
      + 10
      + (1824) +
      + Secretary of State
      + (1817–1825) +
      + John C. Calhoun[n 6]
      + March 4, 1825December 28, 1832 +
      7 +
      +
      +
      +

      Andrew Jackson.jpg

      +
      +
      +
      +
      + Andrew Jackson
      + (1767–1845)
      + [30][31][32] +
      March 4, 1829March 4, 1837Democratic + 11
      + (1828) +
      + U.S. Senator from Tennessee
      + (1823–1825) +
       
      + Vacant[n 5]
      + December 28, 1832March 4, 1833 +
      + 12
      + (1832) +
      + Martin Van Buren
      + March 4, 1833March 4, 1837 +
      8 +
      +
      +
      +

      MartinVanBuren.png

      +
      +
      +
      +
      + Martin Van Buren
      + (1782–1862)
      + [33][34][35] +
      March 4, 1837 + March 4, 1841
      + [n 3] +
      Democratic + 13
      + (1836) +
      Vice PresidentRichard Mentor Johnson
      9 +
      +
      +
      +

      William Henry Harrison.jpg

      +
      +
      +
      +
      + William Henry Harrison
      + (1773–1841)
      + [36][37][38] +
      March 4, 1841 + April 4, 1841
      + [n 4] +
      Whig + 14
      + (1840) +
      + Minister to Colombia
      + (1828–1829) +
      John Tyler
      10 +
      +
      +
      +

      WHOportTyler.jpg

      +
      +
      +
      +
      + John Tyler
      + (1790–1862)
      + [39][40][41] +
      April 4, 1841March 4, 1845 + Whig
      + April 4, 1841September 13, 1841 +
      + Vice President
      + [n 7] +
      Vacant[n 5]
      + Independent[n 8]
      + September 13, 1841March 4, 1845 +
      11 +
      +
      +
      +

      JamesKPolk.png

      +
      +
      +
      +
      + James K. Polk
      + (1795–1849)
      + [42][43][44] +
      March 4, 1845March 4, 1849Democratic + 15
      + (1844) +
      + Governor of Tennessee
      + (1839–1841) +
      George M. Dallas
      12 +
      +
      +
      +

      Zachary Taylor-circa1850.jpg

      +
      +
      +
      +
      + Zachary Taylor
      + (1784–1850)
      + [45][46][47] +
      March 4, 1849 + July 9, 1850
      + [n 4] +
      Whig + 16
      + (1848) +
      + U.S. Army Major general from the 1st Infantry Regiment
      + (1846–1849) +
      Millard Fillmore
      13 +
      +
      +
      +

      Fillmore.jpg

      +
      +
      +
      +
      + Millard Fillmore
      + (1800–1874)
      + [48][49][50] +
      July 9, 1850 + March 4, 1853
      + [n 9] +
      WhigVice PresidentVacant[n 5]
      14 +
      +
      +
      +

      Franklin Pierce.jpg

      +
      +
      +
      +
      + Franklin Pierce
      + (1804–1869)
      + [51][52][53] +
      March 4, 1853March 4, 1857Democratic + 17
      + (1852) +
      + U.S. Army Brigadier general from the 9th Infantry Regiment
      + (1847-1848) +
      + William R. King[n 4]
      + March 4, 1853April 18, 1853 +
      + Vacant[n 5]
      + April 18, 1853March 4, 1857 +
      15 +
      +
      +
      +

      James Buchanan.jpg

      +
      +
      +
      +
      + James Buchanan
      + (1791–1868)
      + [54][55][56] +
      March 4, 1857March 4, 1861Democratic + 18
      + (1856) +
      + Minister to the United Kingdom
      + (1853–1856) +
      John C. Breckinridge
      16 +
      +
      +
      +

      Abraham Lincoln November 1863.jpg

      +
      +
      +
      +
      + Abraham Lincoln
      + (1809–1865)
      + [57][58][59] +
      March 4, 1861 + April 15, 1865
      + [n 10] +
      Republican + 19
      + (1860) +
      + U.S. Representative from Illinois
      + (1847–1849) +
      + Hannibal Hamlin
      + March 4, 1861March 4, 1865 +
      + Republican
      + National Union[n 11] +
      + 20
      + (1864) +
      + Andrew Johnson
      + March 4, 1865April 15, 1865 +
      17 +
      +
      +
      +

      President Andrew Johnson.jpg

      +
      +
      +
      +
      + Andrew Johnson
      + (1808–1875)
      + [60][61][62] +
      April 15, 1865March 4, 1869 + Democratic
      + National Union[n 11]
      + Independent[n 12] +
      Vice President + Vacant
      + [n 5] +
      18 +
      +
      +
      +

      UlyssesGrant.png

      +
      +
      +
      +
      + Ulysses S. Grant
      + (1822–1885)
      + [63][64][65] +
      March 4, 1869March 4, 1877Republican + 21
      + (1868) +
      + Commanding General of the U.S. Army
      + (1864–1869) +
      + Schuyler Colfax
      + March 4, 1869March 4, 1873 +
      + 22
      + (1872) +
      + Henry Wilson[n 4]
      + March 4, 1873November 22, 1875 +
      + Vacant[n 5]
      + November 22, 1875March 4, 1877 +
      19 +
      +
      +
      +

      President Rutherford Hayes 1870 - 1880.jpg

      +
      +
      +
      +
      + Rutherford B. Hayes
      + (1822–1893)
      + [66][67][68] +
      March 4, 1877March 4, 1881Republican + 23
      + (1876) +
      + Governor of Ohio
      + (1868–1872, 1876–1877) +
      William A. Wheeler
      20 +
      +
      +
      +

      James Abram Garfield, photo portrait seated.jpg

      +
      +
      +
      +
      + James A. Garfield
      + (1831–1881)
      + [69][70][71] +
      March 4, 1881 + September 19, 1881
      + [n 10] +
      Republican + 24
      + (1880) +
      + U.S. Representative from Ohio
      + (1863–1881) +
      Chester A. Arthur
      21 +
      +
      +
      +

      Chester Alan Arthur.jpg

      +
      +
      +
      +
      + Chester A. Arthur
      + (1829–1886)
      + [72][73][74] +
      September 19, 1881March 4, 1885RepublicanVice PresidentVacant[n 5]
      22StephenGroverCleveland.png + Grover Cleveland
      + (1837–1908)
      + [75][76] +
      March 4, 1885 + March 4, 1889
      + [n 3] +
      Democratic + 25
      + (1884) +
      + Governor of New York
      + (1883–1885) +
      + Thomas A. Hendricks[n 4]
      + March 4, 1885November 25, 1885 +
      + Vacant[n 5]
      + November 25, 1885March 4, 1889 +
      23 +
      +
      +
      +

      Pach Brothers - Benjamin Harrison.jpg

      +
      +
      +
      +
      + Benjamin Harrison
      + (1833–1901)
      + [77][78][79] +
      March 4, 1889March 4, 1893Republican + 26
      + (1888) +
      + U.S. Senator from Indiana
      + (1881–1887) +
      Levi P. Morton
      24StephenGroverCleveland.png + Grover Cleveland
      + (1837–1908)
      + [75][76] +
      March 4, 1893March 4, 1897Democratic + 27
      + (1892) +
      + President
      + (1885–1889) +
      Adlai Stevenson I
      25 +
      +
      +
      +

      William McKinley 1.png

      +
      +
      +
      +
      + William McKinley
      + (1843–1901)
      + [80][81][82] +
      March 4, 1897 + September 14, 1901
      + [n 10] +
      Republican + 28
      + (1896) +
      + Governor of Ohio
      + (1892–1896) +
      + Garret Hobart[n 4]
      + March 4, 1897November 21, 1899 +
      + Vacant[n 5]
      + November 21, 1899March 4, 1901 +
      + 29
      + (1900) +
      + Theodore Roosevelt
      + March 4, 1901September 14, 1901 +
      26 +
      +
      +
      +

      President Theodore Roosevelt, 1904.jpg

      +
      +
      +
      +
      + Theodore Roosevelt
      + (1858–1919)
      + [83][84][85] +
      September 14, 1901 + March 4, 1909
      + [n 9] +
      RepublicanVice President + Vacant[n 5]
      + September 14, 1901March 4, 1905 +
      + 30
      + (1904) +
      + Charles W. Fairbanks
      + March 4, 1905March 4, 1909 +
      27 +
      +
      +
      +

      William Howard Taft, Bain bw photo portrait, 1908.jpg

      +
      +
      +
      +
      + William Howard Taft
      + (1857–1930)
      + [86][87][88] +
      March 4, 1909 + March 4, 1913
      + [n 3] +
      Republican + 31
      + (1908) +
      + Secretary of War
      + (1904–1908) +
      + James S. Sherman[n 4]
      + March 4, 1909October 30, 1912 +
      + Vacant[n 5]
      + October 30, 1912March 4, 1913 +
      28 +
      +
      +
      +

      President Woodrow Wilson portrait December 2 1912.jpg

      +
      +
      +
      +
      + Woodrow Wilson
      + (1856–1924)
      + [89][90][91] +
      March 4, 1913March 4, 1921Democratic + 32
      + (1912) +
      + Governor of New Jersey
      + (1911–1913) +
      Thomas R. Marshall
      + 33
      + (1916) +
      29 +
      +
      +
      +

      Warren G Harding-Harris & Ewing.jpg

      +
      +
      +
      +
      + Warren G. Harding
      + (1865–1923)
      + [92][93][94] +
      March 4, 1921 + August 2, 1923
      + [n 4] +
      Republican + 34
      + (1920) +
      + U.S. Senator from Ohio
      + (1915–1921) +
      Calvin Coolidge
      30 +
      +
      +
      +

      John Calvin Coolidge, Bain bw photo portrait.jpg

      +
      +
      +
      +
      + Calvin Coolidge
      + (1872–1933)
      + [95][96][97] +
      August 2, 1923March 4, 1929RepublicanVice President + Vacant[n 5]
      + August 2, 1923March 4, 1925 +
      + 35
      + (1924) +
      + Charles G. Dawes
      + March 4, 1925March 4, 1929 +
      31 +
      +
      +
      +

      HerbertHoover.jpg

      +
      +
      +
      +
      + Herbert Hoover
      + (1874–1964)
      + [98][99][100] +
      March 4, 1929 + March 4, 1933
      + [n 3] +
      Republican + 36
      + (1928) +
      + Secretary of Commerce
      + (1921–1928) +
      Charles Curtis
      32 +
      +
      +
      +

      Franklin D. Roosevelt - NARA - 196715.jpg

      +
      +
      +
      +
      + Franklin D. Roosevelt
      + (1882–1945)
      + [101][102][103] +
      March 4, 1933 (1933-03-04) + April 12, 1945 (1945-04-12)
      + [n 4] +
      Democratic + 37
      + (1932)
      + [n 13] +
      + Governor of New York
      + (1929–1932) +
      + John Nance Garner
      + March 4, 1933January 20, 1941 +
      + 38
      + (1936) +
      + 39
      + (1940) +
      + Henry A. Wallace
      + January 20, 1941January 20, 1945 +
      + 40
      + (1944) +
      + Harry S. Truman
      + January 20, 1945April 12, 1945 +
      33 +
      +
      +
      +

      Harry S. Truman.jpg

      +
      +
      +
      +
      + Harry S. Truman
      + (1884–1972)
      + [104][105][106] +
      April 12, 1945January 20, 1953DemocraticVice President + Vacant[n 5]
      + April 12, 1945January 20, 1949 +
      + 41
      + (1948) +
      + Alben W. Barkley
      + January 20, 1949January 20, 1953 +
      34 +
      +
      +
      +

      Dwight D. Eisenhower, White House photo portrait, February 1959.jpg

      +
      +
      +
      +
      + Dwight D. Eisenhower
      + (1890–1969)
      + [107][108][109] +
      January 20, 1953 + January 20, 1961
      + [n 14] +
      Republican + 42
      + (1952) +
      + Supreme Allied Commander Europe
      + (1949–1952) +
      Richard Nixon
      + 43
      + (1956) +
      35 +
      +
      +
      +

      Jfk2.jpg

      +
      +
      +
      +
      + John F. Kennedy
      + (1917–1963)
      + [110][111][112] +
      January 20, 1961 + November 22, 1963
      + [n 10] +
      Democratic + 44
      + (1960) +
      + U.S. Senator from Massachusetts
      + (1953–1960) +
      Lyndon B. Johnson
      36 +
      +
      +
      +

      Lyndon B. Johnson, photo portrait, leaning on chair, color.jpg

      +
      +
      +
      +
      + Lyndon B. Johnson
      + (1908–1973)
      + [113][114] +
      November 22, 1963January 20, 1969DemocraticVice President + Vacant[n 5]
      + November 22, 1963January 20, 1965 +
      + 45
      + (1964) +
      + Hubert Humphrey
      + January 20, 1965January 20, 1969 +
      37 +
      +
      +
      +

      Richard M. Nixon, ca. 1935 - 1982 - NARA - 530679.jpg

      +
      +
      +
      +
      + Richard Nixon
      + (1913–1994)
      + [115][116][117] +
      January 20, 1969 + August 9, 1974
      + [n 6] +
      Republican + 46
      + (1968) +
      + Vice President
      + (1953–1961) +
      + Spiro Agnew[n 6]
      + January 20, 1969October 10, 1973 +
      + 47
      + (1972) +
       
      + Vacant[n 5]
      + October 10, 1973December 6, 1973 +
      + Gerald Ford
      + December 6, 1973August 9, 1974 +
      38 +
      +
      +
      +

      Gerald Ford.jpg

      +
      +
      +
      +
      + Gerald Ford
      + (1913–2006)
      + [118][119][120] +
      August 9, 1974January 20, 1977RepublicanVice President + Vacant[n 5]
      + August 9, 1974December 19, 1974 +
      + Nelson Rockefeller
      + December 19, 1974January 20, 1977 +
      39 +
      +
      +
      +

      JimmyCarterPortrait.jpg

      +
      +
      +
      +
      + Jimmy Carter
      + (born 1924)
      + [121][122][123] +
      January 20, 1977 + January 20, 1981
      + [n 3] +
      Democratic + 48
      + (1976) +
      + Governor of Georgia
      + (1971–1975) +
      Walter Mondale
      40 +
      +
      +
      +

      Official Portrait of President Reagan 1981.jpg

      +
      +
      +
      +
      + Ronald Reagan
      + (1911–2004)
      + [124][125][126] +
      January 20, 1981January 20, 1989Republican + 49
      + (1980) +
      + Governor of California
      + (1967–1975) +
      George H. W. Bush
      + 50
      + (1984) +
      41 +
      +
      +
      +

      George H. W. Bush, President of the United States, 1989 official portrait.jpg

      +
      +
      +
      +
      + George H. W. Bush
      + (born 1924)
      + [127][128][129] +
      January 20, 1989 + January 20, 1993
      + [n 3] +
      Republican + 51
      + (1988) +
      Vice PresidentDan Quayle
      42Bill Clinton.jpg + Bill Clinton
      + (born 1946)
      + [130][131][132] +
      January 20, 1993January 20, 2001Democratic + 52
      + (1992) +
      + Governor of Arkansas
      + (1979–1981, 1983–1992) +
      Al Gore
      + 53
      + (1996) +
      43George-W-Bush.jpeg + George W. Bush
      + (born 1946)
      + [133][134][135] +
      January 20, 2001January 20, 2009Republican + 54
      + (2000) +
      + Governor of Texas
      + (1995–2000) +
      Dick Cheney
      + 55
      + (2004) +
      44President Barack Obama, 2012 portrait crop.jpg + Barack Obama
      + (born 1961)
      + [136][137][138] +
      January 20, 2009IncumbentDemocratic + 56
      + (2008) +
      + U.S. Senator from Illinois
      + (2005–2008) +
      Joe Biden
      + 57
      + (2012) +
      +

      Living former presidents

      +

      As of April 2014, there are four living former presidents:

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      PresidentTerm of officeDate of birth
      Jimmy Carter1977–1981(1924-10-01) October 1, 1924 (age 89)
      George H. W. Bush1989–1993(1924-06-12) June 12, 1924 (age 89)
      Bill Clinton1993–2001(1946-08-19) August 19, 1946 (age 67)
      George W. Bush2001–2009(1946-07-06) July 6, 1946 (age 67)
      +

      The most recent death of a former president was that of Gerald Ford (1974–77) on December 26, 2006, aged 93.

      +

      See also

      +
      + + + + + +
      Portal iconUnited States portal
      +
      + +

      Notes

      +
      +
        +
      1. ^ For the purposes of numbering, a presidency is defined as an uninterrupted period of time in office served by one person. For example, George Washington served two consecutive terms and is counted as the first president (not the first and second). Upon the resignation of 37th president Richard Nixon, Gerald Ford became the 38th president even though he simply served out the remainder of Nixon's second term and was never elected to the presidency in his own right. Grover Cleveland was both the 22nd president and the 24th president because his two terms were not consecutive. A period during which a vice-president temporarily becomes Acting President under the Twenty-fifth Amendment is not a presidency, because the president remains in office during such a period.
      2. +
      3. ^ Instead of being inaugurated on March 4, 1789, George Washington's first-term inaugural was postponed 57 days (1 month and 27 days) to April 30, 1789, because the U.S. Congress had not yet achieved a quorum.
      4. +
      5. ^ a b c d e f g h Unseated (lost re-election).
      6. +
      7. ^ a b c d e f g h i j k Died in office of natural causes.
      8. +
      9. ^ a b c d e f g h i j k l m n o p q r Prior to ratification of the Twenty-fifth Amendment to the United States Constitution in 1967, there was no mechanism by which a vacancy in the Vice Presidency could be filled. Richard Nixon was the first president to fill such a vacancy under the provisions of the Twenty-fifth Amendment when he appointed Gerald Ford. Ford later became the second president to fill a vice presidential vacancy when he appointed Nelson Rockefeller to succeed him.
      10. +
      11. ^ a b c Resigned.
      12. +
      13. ^ Being the first vice president to assume the presidency, Tyler set a precedent that a vice president who assumes the office of president becomes a fully functioning president who has his own presidency, as opposed to just a caretaker president. His political opponents attempted to refer to him as "Acting President", but he refused to allow that. The Twenty-fifth Amendment to the United States Constitution put Tyler's precedent into the Constitution.
      14. +
      15. ^ Former Democrat who ran for Vice President on Whig ticket. Clashed with Whig congressional leaders and was expelled from the Whig party in 1841.
      16. +
      17. ^ a b Later sought re-election to a non-consecutive term.
      18. +
      19. ^ a b c d Assassinated.
      20. +
      21. ^ a b Abraham Lincoln and Andrew Johnson were, respectively, a Republican and a Democrat who ran on the National Union ticket in 1864.
      22. +
      23. ^ Andrew Johnson did not identify with the two main parties while president and tried and failed to build a party of loyalists under the National Union label. His failure to build a true National Union Party left Johnson without a party.
      24. +
      25. ^ The twentieth Amendment to the United States Constitution went into effect in 1933, moving the 1937 inauguration day from March 4 to January 20, and shortening this term by 43 days.
      26. +
      27. ^ Dwight Eisenhower is the first president to have been legally prohibited by the Twenty-second Amendment to the United States Constitution from seeking a third term.
      28. +
      +
      +

      References

      +
      +
        +
      1. ^ "The Constitution: Amendments 11–27". U.S. National Archives & Records Administration. Retrieved October 1, 2008. 
      2. +
      3. ^ "Excerpts from "Forgotten Presidents" – The Patriots Handbook, by George Grant". Harrold.org. Retrieved August 8, 2011. 
      4. +
      5. ^ Cleaves, Freeman (1939). Old Tippecanoe: William Henry Harrison and His Time. C. Scribner's Sons. p. 152. 
      6. +
      7. ^ Ingersoll, Jared. "Death of the President". University of Virginia's Miller Center of Public Affairs. Retrieved November 2, 2010. 
      8. +
      9. ^ Russell, Francis (1962). The Shadow of Blooming Grove – Warren G. Harding in His Times. Easton Press. p. 591. ISBN 0070543380. 
      10. +
      11. ^ a b Martin, Paul "Lincoln's Missing Bodyguard", Smithsonian Magazine, April 8, 2010, Retrieved November 15, 2010
      12. +
      13. ^ Donald (1996), p. 597.
      14. +
      15. ^ "Big Ben Parker and President McKinley's Assassination". Math.buffalo.edu. Retrieved August 8, 2011. 
      16. +
      17. ^ "Nixon Resigns". The Washington Post. Retrieved December 31, 2008. 
      18. +
      19. ^ "Obama wins historic US election". BBC. November 5, 2008. Retrieved November 5, 2008. 
      20. +
      21. ^ The White House (March 12, 2007). "Biography of George Washington". Whitehouse.gov. Retrieved January 12, 2009. 
      22. +
      23. ^ "George Washington – no Political Party – 1st President – American Presidents". History. Retrieved January 12, 2009. 
      24. +
      25. ^ "George Washington (February 22, 1732 – December 14, 1799)". American Presidents: Life Portraits. C-SPAN. Retrieved January 12, 2009. 
      26. +
      27. ^ "George Washington's views on political parties in America | Washington Times Communities". Communities.washingtontimes.com. 2012-03-09. Retrieved January 2, 2013. 
      28. +
      29. ^ "Biography of John Adams". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      30. +
      31. ^ "John Adams – Federalist Party – 2nd President – American Presidents". History. Retrieved January 12, 2009. 
      32. +
      33. ^ "John Adams (October 30, 1735 – July 4, 1826)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      34. +
      35. ^ "Biography of Thomas Jefferson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      36. +
      37. ^ "Thomas Jefferson – Democratic-Republican Party – 3rd President – American Presidents". History. Retrieved January 12, 2009. 
      38. +
      39. ^ "Thomas Jefferson (April 13, 1743 – July 4, 1826)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      40. +
      41. ^ "Biography of James Madison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      42. +
      43. ^ "James Madison – Democratic-Republican Party – 4th President – American Presidents". History. Retrieved January 12, 2009. 
      44. +
      45. ^ "James Madison (March 16, 1751 – June 28, 1836)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      46. +
      47. ^ "Biography of James Madison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      48. +
      49. ^ "James Monroe – Democratic-Republican Party – 5th President – American Presidents". History. Retrieved January 12, 2009. 
      50. +
      51. ^ "James Monroe (April 28, 1758 – July 4, 1831)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      52. +
      53. ^ "Biography of John Quincy Adams". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      54. +
      55. ^ "John Quincy Adams – Federalist, Democratic-Republican, National Republican, WHIG Party – 6th President – American Presidents". History. Retrieved January 12, 2009. 
      56. +
      57. ^ "John Quincy Adams (July 11, 1767 – February 23, 1848)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      58. +
      59. ^ "Biography of Andrew Jackson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      60. +
      61. ^ "Andrew Jackson – Democratic-Republican Party – 7th President – American Presidents". History. Retrieved January 12, 2009. 
      62. +
      63. ^ "Andrew Jackson (March 15, 1767 – June 8, 1845)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      64. +
      65. ^ "Biography of Martin Van Buren". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      66. +
      67. ^ "Martin Van Buren – Democratic-Republican, Democratic, and Free Soil Party – 8th President – American Presidents". History. Retrieved January 12, 2009. 
      68. +
      69. ^ "Martin Van Buren (December 5, 1782 – July 24, 1862)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      70. +
      71. ^ "Biography of William Henry Harrison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      72. +
      73. ^ "William Henry Harrison – WHIG Party – 9th President – American Presidents". History. Retrieved January 12, 2009. 
      74. +
      75. ^ "William Henry Harrison (February 9, 1773 – April 4, 1841)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      76. +
      77. ^ "Biography of John Tyler". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      78. +
      79. ^ "John Tyler – No Party – 10th President – American Presidents". History. Retrieved January 12, 2009. 
      80. +
      81. ^ "John Tyler (March 29, 1790 – January 18, 1862)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      82. +
      83. ^ "Biography of James Polk". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      84. +
      85. ^ "James Polk – Democratic Party – 11th President – American Presidents". History. Retrieved January 12, 2009. 
      86. +
      87. ^ "James K. Polk (November 2, 1795 – June 15, 1849)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      88. +
      89. ^ "Biography of Zachary Taylor". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      90. +
      91. ^ "Zachary Taylor – WHIG Party – 12th President – American Presidents". History. Retrieved January 12, 2009. 
      92. +
      93. ^ "Zachary Taylor (November 24, 1784 – July 9, 1850)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      94. +
      95. ^ "Biography of Millard Fillmore". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      96. +
      97. ^ "Millard Filmore – WHIG Party – 13th President – American Presidents". History. Retrieved January 12, 2009. 
      98. +
      99. ^ "Millard Fillmore (January 7, 1800 – March 8, 1874)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      100. +
      101. ^ "Biography of Franklin Pierce". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      102. +
      103. ^ "Franklin Pierce – Democratic Party – 14th President – American Presidents". History. Retrieved January 12, 2009. 
      104. +
      105. ^ "Franklin Pierce (November 23, 1804 – October 8, 1869)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      106. +
      107. ^ "Biography of James Buchanan". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      108. +
      109. ^ "James Buchanan – Democratic Party – 15th President – American Presidents". History. Retrieved January 12, 2009. 
      110. +
      111. ^ "James Buchanan (April 23, 1791 – June 1, 1868)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      112. +
      113. ^ "Biography of Abraham Lincoln". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      114. +
      115. ^ "Abraham Lincoln – Republic, National Union Party – 16th President – American Presidents". History. Retrieved January 12, 2009. 
      116. +
      117. ^ "Abraham Lincoln (February 12, 1809 – April 15, 1865)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      118. +
      119. ^ "Biography of Andrew Johnson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      120. +
      121. ^ "Andrew Johnson – National Union Party – 17th President – American Presidents". History. Retrieved January 12, 2009. 
      122. +
      123. ^ "Andrew Johnson (December 29, 1808 – July 31, 1875)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      124. +
      125. ^ "Biography of Ulysses S. Grant". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      126. +
      127. ^ "Ulysses S. Grant – National Union Party – 18th President – American Presidents". History. Retrieved January 12, 2009. 
      128. +
      129. ^ "Ulysses S. Grant (April 27, 1822 – July 23, 1885)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      130. +
      131. ^ "Biography of Rutherford B. Hayes". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      132. +
      133. ^ "Rutherford B. Hayes – Republican Party – 19th President – American Presidents". History. Retrieved January 12, 2009. 
      134. +
      135. ^ "Rutherford B. Hayes (October 4, 1822 – January 17, 1893)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      136. +
      137. ^ "Biography of James Garfield". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      138. +
      139. ^ "James Garfield – Republican Party – 20th President – American Presidents". History. Retrieved January 12, 2009. 
      140. +
      141. ^ "James A. Garfield (November 19, 1831 – September 19, 1881)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      142. +
      143. ^ "Biography of Chester Arthur". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      144. +
      145. ^ "Chester A. Arthur – Republican Party – 21st President – American Presidents". History. Retrieved January 12, 2009. 
      146. +
      147. ^ "Chester A. Arthur (October 5, 1829 – November 18, 1886)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      148. +
      149. ^ a b "Grover Cleveland – Democratic Party – 22nd and 24th President – American Presidents". History. Retrieved January 12, 2009. 
      150. +
      151. ^ a b "Grover Cleveland (March 18, 1837 – June 24, 1908)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      152. +
      153. ^ "Biography of Benjamin Harrison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      154. +
      155. ^ "William Henry Harrison – Whig Party – 23rd President – American Presidents". History. Retrieved January 12, 2009. 
      156. +
      157. ^ "Benjamin Harrison (August 20, 1833 – March 13, 1901)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      158. +
      159. ^ "Biography of William McKinley". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      160. +
      161. ^ "William McKinley – Republican Party – 25th President – American Presidents". History. Retrieved January 12, 2009. 
      162. +
      163. ^ "William McKinley (January 29, 1843 – September 14, 1901)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      164. +
      165. ^ "Biography of Theodore Roosevelt". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      166. +
      167. ^ "Theodore Roosevelt – Republican, Bull Moose Party – 26th President – American Presidents". History. Retrieved January 12, 2009. 
      168. +
      169. ^ "Theodore Roosevelt (October 27, 1858 – January 6, 1919)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      170. +
      171. ^ "Biography of William Howard Taft". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
      172. +
      173. ^ "William Howard Taft – Republican Party – 27th President – American Presidents". History. Retrieved January 12, 2009. 
      174. +
      175. ^ "William Howard Taft (September 15, 1857 – March 8, 1930)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      176. +
      177. ^ "Biography of Woodrow Wilson". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
      178. +
      179. ^ "Woodrow Wilson – Democratic Party – 28th President – American Presidents". History. Retrieved January 12, 2009. 
      180. +
      181. ^ "Woodrow Wilson (December 28, 1856 – February 3, 1924)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      182. +
      183. ^ "Biography of Warren G. Harding". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      184. +
      185. ^ "Warren Harding – Republican Party – 29th President – American Presidents". History. Retrieved January 12, 2009. 
      186. +
      187. ^ "Warren G. Harding (November 2, 1865 – August 2, 1923)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      188. +
      189. ^ "Biography of Calvin Coolidge". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
      190. +
      191. ^ "Calvin Coolidge – Republican Party – 30th President – American Presidents". History. Retrieved January 12, 2009. 
      192. +
      193. ^ "Calvin Coolidge (July 4, 1872 – January 5, 1933)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      194. +
      195. ^ "Biography of Herbert Hoover". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
      196. +
      197. ^ "Herbert Hoover – Republican Party – 31st President – American Presidents". History. Retrieved January 12, 2009. 
      198. +
      199. ^ "Herbert Hoover (August 10, 1874 – October 20, 1964)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      200. +
      201. ^ "Biography of Franklin D. Roosevelt". Whitehouse.gov. March 20, 2007. Retrieved January 12, 2009. 
      202. +
      203. ^ "Franklin D. Roosevelt – Democratic Party – 32nd President – American Presidents". History. Retrieved January 12, 2009. 
      204. +
      205. ^ "Franklin D. Roosevelt (January 30, 1882 – April 12, 1945)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      206. +
      207. ^ "Biography of Harry S Truman". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      208. +
      209. ^ "Harry S Truman – Democratic Party – 33rd President – American Presidents". History. Retrieved January 12, 2009. 
      210. +
      211. ^ "Harry S Truman (May 8, 1884 – December 26, 1972)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      212. +
      213. ^ "Biography of Dwight D. Eisenhower". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      214. +
      215. ^ "Dwight D. Eisenhower – Democratic Party – 34th President – American Presidents". History. Retrieved January 12, 2009. 
      216. +
      217. ^ "Dwight D. Eisenhower (October 14, 1890 – March 28, 1969)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      218. +
      219. ^ "Biography of John F. Kennedy". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      220. +
      221. ^ "John F. Kennedy – Democratic Party – 35th President – American Presidents". History. Retrieved January 12, 2009. 
      222. +
      223. ^ "John F. Kennedy (May 29, 1917 – November 22, 1963)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      224. +
      225. ^ "Lyndon B. Johnson – Democratic Party – 36th President – American Presidents". History. Retrieved January 12, 2009. 
      226. +
      227. ^ "Lyndon B. Johnson (August 27, 1908 – January 22, 1973)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      228. +
      229. ^ "Richard M. Nixon". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      230. +
      231. ^ "Richard Nixon – Republican Party – 37th President – American Presidents". History. Retrieved January 12, 2009. 
      232. +
      233. ^ "Richard M. Nixon (January 9, 1913 – April 22, 1994)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      234. +
      235. ^ "Biography of Gerald R. Ford". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      236. +
      237. ^ "Gerald Ford – Republican Party – 38th President – American Presidents". History. Retrieved January 12, 2009. 
      238. +
      239. ^ "Gerald R. Ford (July 14, 1913 – December 26, 2006)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      240. +
      241. ^ "Biography of Jimmy Carter". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      242. +
      243. ^ "Jimmy Carter – Democratic Party – 39th President – American Presidents". History. Retrieved January 12, 2009. 
      244. +
      245. ^ "Jimmy Carter (October 1, 1924 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      246. +
      247. ^ "Biography of Ronald Reagan". Whitehouse.gov. June 25, 2008. Retrieved January 12, 2009. 
      248. +
      249. ^ "Ronald Reagan – Republican Party – 40th President – American Presidents". History. Retrieved January 12, 2009. 
      250. +
      251. ^ "Ronald Reagan (February 6, 1911 – June 5, 2004)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      252. +
      253. ^ "Biography of George Herbert Walker Bush". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      254. +
      255. ^ "George H. W. Bush – Republican Party – 41st President – American Presidents". History. Retrieved January 12, 2009. 
      256. +
      257. ^ "George Bush (June 12, 1924 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      258. +
      259. ^ "Biography of William J. Clinton". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
      260. +
      261. ^ "Bill Clinton – Democratic Party – 42nd President – American Presidents". History. Retrieved January 12, 2009. 
      262. +
      263. ^ "Bill Clinton (August 19, 1946 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      264. +
      265. ^ "Biography of President George W. Bush". Whitehouse.gov. February 25, 2007. Retrieved January 12, 2009. 
      266. +
      267. ^ "George W. Bush – Republican Party – 43rd President – American Presidents". History. Retrieved January 12, 2009. 
      268. +
      269. ^ "George W. Bush (July 6, 1946 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      270. +
      271. ^ "President Barack Obama". Whitehouse.gov. January 20, 2009. Retrieved January 20, 2009. 
      272. +
      273. ^ "Barack Obama – Democratic Party – 44th President – American Presidents". History. Retrieved January 12, 2009. 
      274. +
      275. ^ "Barack Obama (August 4, 1961 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
      276. +
      +
      +

      External links

      + + + + + + + +

      + + + + + +

      + + + + + +
      +
      +
      +
      +
      +

      Navigation menu

      +
      + +
      + + +
      +
      + + + +
      +
      +
      + + + + + + +
      +
      + + + + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html b/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html new file mode 100644 index 000000000..aa74059a6 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html @@ -0,0 +1,513 @@ + +HTML tables - W3C Wiki + +

      HTML tables

      From W3C Wiki
      Jump to: navigation, search
      + +

      Introduction

      +

      �Ack!� � how do you use web standards to organize reams of data? The very idea of tons of nested elements needed to get all the data into nice little rows and boxes ought to put your brain into �Ack!� mode, but there is a solution � tables to the rescue! +

      In web design tables are a good way to organize data into a tabular form. In other words, think of tables, charts, and other information graphics that help you to see and process a great deal of information in a summary that allows you to compare and contrast different pieces of data. You see them all the time on websites, whether they are giving a summary or comparison of political election results, sports statistics, price comparisons, size charts, or other data. +

      Back in the Jurassic Age of the Internet before CSS was popularised as a method of separating the presentation from structure of the HTML, tables were used as a way to lay out web pages � to create columns, boxes, and generally arrange the content. This is the wrong way to go about it; tables for layout resulted in bloated, messy pages with tons of nested tables � larger file sizes, hard to maintain, hard to modify after the fact. You�ll still see sites like this on the Web, but rest assured that these days you should just use tables for what they are designed for � tabular data � and use CSS to control layout. +

      In this article of the Web Standards Curriculum we will cover how to use HTML tables properly. +

      +

      The most basic table

      +

      Let's start with the semantic HTML code required to render a basic table � this particular example compares recent volcanic eruptions in the Pacific region of North America: +

      +
      <table>
      +    <tr>
      +        <td>Volcano Name</td>
      +        <td>Location</td>
      +        <td>Last Major Eruption</td>
      +        <td>Type of Eruption</td>
      +    </tr>
      +    <tr>
      +        <td>Mt. Lassen</td>
      +        <td>California</td>
      +        <td>1914-17</td>
      +        <td>Explosive Eruption</td>
      +    </tr>
      +    <tr>
      +        <td>Mt. Hood</td>
      +        <td>Oregon</td>
      +        <td>1790s</td>
      +        <td>Pyroclastic flows and Mudflows</td>
      +    </tr>
      +    <tr>
      +        <td>Mt .St. Helens</td>
      +        <td>Washington</td>
      +        <td>1980</td>
      +        <td>Explosive Eruption</td>
      +    </tr>
      +</table>
      +

      This code renders roughly like so: +

      + + + + + + + + + + + + + + + + + + + + + +
      Volcano Name +Location +Last Major Eruption +Type of Eruption +
      Mt. Lassen +California +1914-17 +Explosive Eruption +
      Mt. Hood +Oregon +1790s +Pyroclastic flows and Mudflows +
      Mt .St. Helens +Washington +1980 +Explosive Eruption +
      +

      Let�s start by breaking down the HTML markup used in the above code: +

      +
        +
      • <table></table>: The <table> wrapper element is necessary to indicate to the browser that you wish to arrange the content in a tabular fashion. +
      • +
      • <tr></tr>: The <tr> element establishes a table row. This allows the browser to organize any content between the <tr> and </tr> tags in a horizontal fashion, or all in a row. +
      • +
      • <td></td>: The <td> element defines the table cell or each individual space for content within the row. Only use as many <td> table cells as needed for actual data. Don�t use empty <td> cells for white space or padding � you use CSS to create any white space or padding needed, as this is not only a good way to separate presentation from structure; keeping the HTML clean and simple also makes the table easier to understand for people with visual impairments who are using screenreaders to read the table contents out to them. +
      • +
      +

      Note that the basic elements must be nested as follows: +

      +
      <table>
      +    <tr>
      +        <td>content</td>
      +        <td>content</td>
      +        <td>content</td>
      +    </tr>
      +</table>
      +
      +

      To order them in another fashion will cause the browser to spit up the equivalent of an internet hair ball and render the table in a very odd fashion, if at all. +

      +

      Adding some more features

      +

      Now the basic table is in place, we can add some slightly more complex table features�first, we'll add a caption and Table headers to help improve the data both in terms of semantics and legibility for screen readers. The updated table markup looks like so: +

      +
      <table>
      +    <caption>Recent Major Volcanic Eruptions in the Pacific Northwest</caption>
      +    <tr>
      +        <th>Volcano Name</th>
      +        <th>Location</th>
      +        <th>Last Major Eruption</th>
      +        <th>Type of Eruption</th>
      +    </tr>
      +    <tr>
      +        <td>Mt. Lassen</td>
      +        <td>California</td>
      +        <td>1914-17</td>
      +        <td>Explosive Eruption</td>
      +    </tr>
      +    <tr>
      +        <td>Mt. Hood</td>
      +        <td>Oregon</td>
      +        <td>1790s</td>
      +        <td>Pyroclastic flows and Mudflows</td>
      +    </tr>
      +    <tr>
      +        <td>Mt. St. Helens</td>
      +        <td>Washington</td>
      +        <td>1980</td>
      +        <td>Explosive Eruption</td>
      +    </tr>
      +</table>
      +

      This code is rendered as: +

      + + + + + + + + + + + + + + + + + + + + + +
      Recent Major Volcanic Eruptions in the Pacific Northwest +
      Volcano Name +Location +Last Major Eruption +Type of Eruption +
      Mt. Lassen +California +1914-17 +Explosive Eruption +
      Mt. Hood +Oregon +1790s +Pyroclastic flows and Mudflows +
      Mt. St. Helens +Washington +1980 +Explosive Eruption +
      +

      The new elements used here are: +

      +
        +
      • <caption></caption>: The <caption> element allows you to give the table data a caption. Most browsers will center the caption and render it the same width as the table by default. +
      • +
      • <th></th>: The <th> element delineates the content between the tag as the table head titles for each column. This is useful not just to help semantically describe what the function of this content is, but it also helps render it more accurately in a variety of browsers and devices. +
      • +
      +

      Structuring the table further

      +

      As a final step in structuring our table, we will define header and body table sections, add a footer and define the scope of row and column headings. We will also add a summary attribute to describe the table contents. The final markup looks like so: +

      +
      <table summary="a summary of recent major volcanic eruptions in the Pacific Northwest">
      +    <caption>Recent Major Volcanic Eruptions in the Pacific Northwest</caption>
      +    <thead>
      +        <tr>
      +            <th scope="col">Volcano Name</th>
      +            <th scope="col">Location</th>
      +            <th scope="col">Last Major Eruption</th>
      +            <th scope="col">Type of Eruption</th>
      +        </tr>
      +    </thead>
      +    <tfoot>
      +        <tr>
      +            <td colspan="4">Compiled in 2008 by Ms Jen</td>
      +        </tr>
      +    </tfoot>  
      +    <tbody>
      +        <tr>
      +            <th scope="row">Mt. Lassen</th>
      +            <td>California</td>
      +            <td>1914-17</td>
      +            <td>Explosive Eruption</td>
      +        </tr>
      +        <tr>
      +            <th scope="row">Mt. Hood</th>
      +            <td>Oregon</td>
      +            <td>1790s</td>
      +            <td>Pyroclastic flows and Mudflows</td>
      +        </tr>
      +        <tr>
      +            <th scope="row">Mt. St. Helens</th>
      +            <td>Washington</td>
      +            <td>1980</td>
      +            <td>Explosive Eruption</td>
      +        </tr>
      +    </tbody>
      +</table>
      +

      This table code looks like so in a browser: +

      + + + + + + + + + + + + + + + + + + + + + + + +
      Recent Major Volcanic Eruptions in the Pacific Northwest +
      Volcano Name +Location +Last Major Eruption +Type of Eruption +
      Mt. Lassen +California +1914-17 +Explosive Eruption +
      Mt. Hood +Oregon +1790s +Pyroclastic flows and Mudflows +
      Mt. St. Helens +Washington +1980 +Explosive Eruption +
      Compiled in 2008 by Ms Jen +
      +

      The new elements/attributes are as follows: +

      +
        +
      • The <thead>, <tbody> and <tfoot> elements: These define the table�s header, body and footer respectively. Unless you are coding a really complex table with many columns and rows of data, using these may be overkill. In a complex table however, using them can add useful structure for the developers, and also for browsers and other devices. +
      • +
      • The colspan and rowspan attributes: The colspan attribute creates a table cell that will span more than one column. In the case of the above footer, we wanted the one table cell to span the whole width of the table, thus we told it that it was to span four columns. Alternately, you can add a table cell rowspan attribute that will allow the table cell to span x amount of rows, for example <td rowspan="3">. +
      • +
      • The summary attribute: This attribute is used to define a summary of the table contents, for use by screenreaders (you won't see it on the rendered version of the table above.) Note that in the older W3C recommendations, WCAG 1.0 and HTML 4.0, it says you can use the summary attribute as detailed above. In newer drafts of the specs however, the summary attribute is not mentioned. Whether to still use the summary attribute seems undecided, so for now we at the Web Standards Curriculum have agreed that it is safe to still use it. After all, it doesn�t cause anything to break, and it confers accessibility advantages. +
      • +
      • The scope attribute: You may also have noticed the scope attributes in the th tags, and the fact that we have defined the volcano names as headings too, inside the data rows! The scope attribute can be used in the th element to tell screen readers that the th content is the title for a column or a row. +
      • +
      +

      CSS to the rescue: a better looking table

      +

      The above listed elements and attributes are all that is necessary to code a good data table. Now the HTML structure is in place, let�s look at some simple CSS to make the table look a bit nicer: +

      +
      body {
      +	background: #ffffff;
      +	margin: 0;
      +	padding: 20px;
      +	line-height: 1.4em;
      +	font-family: tahoma, arial, sans-serif;
      +	font-size: 62.5%;
      +}
      +
      +table {
      +	width: 80%;
      +	margin: 0;
      +	background: #FFFFFF;
      +	border: 1px solid #333333;
      +	border-collapse: collapse;
      +}
      +
      +td, th {
      +	border-bottom: 1px solid #333333;
      +	padding: 6px 16px;
      +	text-align: left;
      +}
      +
      +th {
      +	background: #EEEEEE;
      +}
      +
      +caption {
      +	background: #E0E0E0;
      +	margin: 0;
      +	border: 1px solid #333333;
      +	border-bottom: none;
      +	padding: 6px 16px;
      +	font-weight: bold;
      +}
      +

      When applied to our final table markup, the table looks as seen in Figure 1. You can also check out the example live here. +

      the final table example +

      Figure 1: The table now looks a lot more visually appealing. +

      Oooh... Look, much better. You can choose to style the table anyway you want, but the above provides a baseline to work with. You�ll learn a lot more about styling tables with CSS later in the course, but for now I�ll just briefly break down what each section of this CSS is doing: +

      +
        +
      • <body>: In the above CSS, we have added properties to set the margin (to zero in this case), padding to give a little room, background colour (white), font size and family, as well as the line height to also give a little breathing room. You can download the code for this example here � try altering the property values in the CSS file to see how things change. +
      • +
      • <table>: borders have been added using the CSS border property. To make this work correctly, we also had to set the border-collapse property to collapse, to reset the border values in the table and allow the border-bottom to be a straight rule line across the whole row rather than being broken up at the end of each table cell. A width of 80% was chosen for this example (this makes the table extend across 80% of the screen width). +
      • +
      • <th> and <td>: In the above example CSS, we have set text-align to be left, but you could set it to center or other values if you like. we also gave both the <th> and <td> a bit of padding to open up the rows and allow for greater readability. In the case of the <th> selector above, we set another color as to differentiate the headings from the rest of the table. +
      • +
      • <caption>: In the above example we have given the caption a border (with no bottom border, as the border in the table already provided it), a different background colour and bold type to set the caption apart from the table header row. +
      • +
      +

      Summary

      +

      In this article we have gone through all you need to know to create effective HTML data tables. That�s a wrap! Let's leave this with some pertinent thoughts: +

      +
        +
      • It is important that tables are correctly coded to be readable by a variety web browsers, mobile, accessible, and other devices. Table HTML is best kept to a minimum, and you should use CSS to style the tables. You�ll learn a lot more about CSS later on in the course. +
      • +
      • Tables can be accessible to mobile devices and users that use screen reading software by keeping the code clean, using attributes such as scope and summary as well as the <caption> element to help announce clearly and semantically what the respective sections are for. Also important for accessibility is to not use empty table cells for spacing (use CSS for this instead). +
      • +
      +

      Further reading

      + +

      Exercise questions

      +
        +
      • Start by coding a simple table with only the 3 main table elements: table, tr, and td. Save it and view it in a browser. +
      • +
      • Much like the second example above, add a caption, header, and footer to your table. How does that change what you see in the browser? +
      • +
      • What can you do to make your table more accessible to screen readers and mobile devices? +
      • +
      • Now create a CSS file. Try styling the borders, padding, and cell spacing of your table with only CSS and no attributes in your HTML markup. Add background colour and style the fonts. +
      • +
      +

      Have fun. +

      Note: This material was originally published as part of the Opera Web Standards Curriculum, available as 19: HTML tables, written by Jenifer Hanen. Like the original, it is published under the Creative Commons Attribution, Non Commercial - Share Alike 2.5 license. +

      + + + +
      +
      +
      +
      +
      +

      Navigation menu

      +
      + +
      + + +
      +
      + + + +
      +
      + +
      + + + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html new file mode 100644 index 000000000..aa2ead88e --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html @@ -0,0 +1,2515 @@ + + + + + + The Championships, Wimbledon - Wikipedia, the free encyclopedia + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +

      The Championships, Wimbledon

      +
      +
      From Wikipedia, the free encyclopedia
      +
      +
      + Jump to: navigation, search +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      The Championships, Wimbledon
      Wimbledon.svg
      +
      Official website
      +
      Founded1877
      Location + Wimbledon, London
      + United Kingdom +
      VenueThe All England Lawn Tennis and Croquet Club
      SurfaceGrass / Outdoor [a]
      Prize money22,600,000 ($34,500,000) (�26,500,000) (2013)[1]
      +
      Men's
      +
      Draw128S (128Q) / 64D (16Q)[b]
      Current champions + Andy Murray (singles)
      + Bob Bryan / Mike Bryan (doubles) +
      Most singles titles + William Renshaw (7)
      + Pete Sampras (7)
      + Roger Federer (7) +
      Most doubles titlesTodd Woodbridge (9)
      +
      Women's
      +
      Draw128S (96Q) / 64D (16Q)
      Current champions + Marion Bartoli (singles)
      + Hsieh Su-Wei / Peng Shuai (doubles) +
      Most singles titlesMartina Navratilova (9)
      Most doubles titlesElizabeth Ryan (12)
      +
      Mixed Doubles
      +
      Draw48
      Current championsDaniel Nestor / Kristina Mladenovic
      Most titles (male) + Ken Fletcher (4)
      + Vic Seixas (4)
      + Owen Davidson (4) +
      Most titles (female)Elizabeth Ryan (7)
      +
      Grand Slam
      +
      + +
      +
      Last Completed
      +
      2013 Wimbledon
      +

      The Championships, Wimbledon, The Wimbledon Championships or simply Wimbledon is the oldest tennis tournament in the world, and widely considered the most prestigious.[2][3][4][5][6] It has been held at the All England Club in Wimbledon, London, since 1877. It is one of the four Grand Slam tennis tournaments (Majors), the others being the Australian Open, the French Open (Roland Garros) and the US Open. Since the Australian Open shifted to hard court in 1988, Wimbledon is the only Major still played on grass, the game's original surface, which gave the game its original name of "lawn tennis".

      +

      The tournament takes place over two weeks in late June and early July, culminating with the Ladies' and Gentlemen's Singles Final, scheduled for the second Saturday and Sunday respectively. Each year five major, junior, and invitational events are held.

      +

      The hard court (Plexicushion) Australian Open and clay court French Open precede Wimbledon in the year, and the hard court (DecoTurf) US Open follows. For men, the grass court Queen's Club Championships, also in London, and the Gerry Weber Open in Halle, Germany, serve as warm-up events; for women, the Aegon Classic in Birmingham and two joint events, the Topshelf Open in 's-Hertogenbosch, Netherlands and the Eastbourne International.

      +

      Wimbledon traditions include a strict dress code for competitors, the eating of strawberries and cream by the spectators, and Royal patronage. The tournament is also notable for the absence of sponsor advertising around the courts. In 2009, Wimbledon's Centre Court was fitted with a retractable roof to lessen the loss of playing time due to rain.

      +

      + +

      +

      History[edit]

      +
      +
      + +
      +
      + Spencer Gore, the winner of the inaugural Wimbledon Championship. +
      +
      +
      +

      Beginning[edit]

      +

      The All England Lawn Tennis and Croquet Club is a private club founded in 1868, originally as 'The All England Croquet Club'. Its first ground was off Worple Road, Wimbledon.[7]

      +

      In 1876, lawn tennis, a game devised by Major Walter Clopton Wingfield a year or so earlier and originally called 'Sphairistike' was added to the activities of the club. In spring 1877, the club was renamed 'The All England Croquet and Lawn Tennis Club' and signalled its change of name by instituting the first Lawn Tennis Championship. A new code of laws, replacing the code administered by the Marylebone Cricket Club, was drawn up for the event. Today's rules are similar except for details such as the height of the net and posts and the distance of the service line from the net.

      +

      The inaugural 1877 Wimbledon Championship opened on 9 July 1877. The Gentlemen's Singles was the only event held and was won by Spencer Gore, an old Harrovian rackets player, from a field of 22. About 200 spectators paid one shilling each to watch the final.[8]

      +

      The lawns at the ground were arranged so that the principal court was in the middle with the others arranged around it, hence the title 'Centre Court'.[c] The name was retained when the Club moved in 1922 to the present site in Church Road, although no longer a true description of its location. However, in 1980 four new courts were brought into commission on the north side of the ground, which meant the Centre Court was once more correctly defined. The opening of the new No. 1 Court in 1997 emphasised the description.

      +
      +
      + +
      +
      + Ladies Championship, 1884. First prize, awarded to Maud Watson, was a silver flower-basket worth 20 guineas. +
      +
      +
      +

      By 1882, activity at the club was almost exclusively confined to lawn tennis and that year the word 'croquet' was dropped from the title. However, for sentimental reasons, it was restored in 1899.

      +

      In 1884, the club added Ladies' Singles and Gentlemen's Doubles. Ladies' Doubles and Mixed Doubles were added in 1913. Until 1922, the reigning champion had to play only in the final, against whomever had won through to challenge him/her. As with the other three Major Grand Slam events, Wimbledon was contested by top-ranked amateur players until the advent of the open era in tennis in 1968. No British man won the singles event at Wimbledon between Fred Perry in 1936 and Andy Murray in 2013, while no British woman has won since Virginia Wade in 1977, although Annabel Croft and Laura Robson won the Girls' Championship in 1984 and 2008 respectively. The Championship was first televised in 1937.

      +

      21st century[edit]

      +
      +
      + +
      +
      + Centre Court with open roof at the 2010 Championships +
      +
      +
      +

      Wimbledon is considered the world's premier tennis tournament and the priority of the Club is to maintain its leadership. To that end a long-term plan was unveiled in 1993, intended to improve the quality of the event for spectators, players, officials and neighbours.[10]

      +

      Stage one (1994�1997) of the plan was completed for the 1997 championships and involved building the new No. 1 Court in Aorangi Park, a broadcast centre, two extra grass courts and a tunnel under the hill linking Church Road and Somerset Road.

      +

      Stage two (1997�2009) involved the removal of the old No. 1 Court complex to make way for the new Millennium Building, providing extensive facilities for players, press, officials and members, and the extension of the West Stand of the Centre Court with 728 extra seats.

      +

      Stage three (2000�2011) has been completed with the construction of an entrance building, club staff housing, museum, bank and ticket office.[11]

      +

      A new retractable roof was built in time for the 2009 championships, marking the first time that rain did not stop play for a lengthy time on Centre Court. The Club tested the new roof at an event called A Centre Court Celebration on Sunday, 17 May 2009, which featured exhibition matches involving Andre Agassi, Steffi Graf, Kim Clijsters and Tim Henman. The first Championship match to take place under the roof was the completion of the fourth round women's singles match between Dinara Safina and Am�lie Mauresmo. The first match to be played in its entirety under the new roof took place between Andy Murray and Stanislas Wawrinka on 29 June 2009, which Murray won. Murray was also involved in the latest completed match at Wimbledon, which ended at 11:02 pm in a victory over Marcos Baghdatis at Centre Court in the third round of the 2012 Championships. The 2012 Men's Singles Final on 8 July 2012, between Roger Federer and Murray, was the first final to be played under the roof, which was activated during the third set.[12]

      +

      A new 4000-seat No. 2 Court was built on the site of the old No. 13 Court in time for the 2009 Championships.[13] A new 2000-seat No. 3 Court was built on the site of the old No. 2 and No. 3 Courts.[14]

      +

      Events[edit]

      +

      Wimbledon consists of five main events, five junior events and five invitation events.[15]

      +

      Main events[edit]

      +

      The five main events, and the number of players (or teams, in the case of doubles) are:

      +
        +
      • Gentlemen's Singles (128)
      • +
      • Ladies' Singles (128)
      • +
      • Gentlemen's Doubles (64)
      • +
      • Ladies' Doubles (64)
      • +
      • Mixed Doubles (48)
      • +
      +

      Junior events[edit]

      +

      The five junior events and the number of players or teams are:

      +
        +
      • Boys' Singles (64)
      • +
      • Girls' Singles (64)
      • +
      • Boys' Doubles (32)
      • +
      • Girls' Doubles (32)
      • +
      • Disabled Doubles (12)
      • +
      +

      No mixed doubles event is held at this level.

      +

      Invitation events[edit]

      +

      The five invitational events and the number of pairs are:

      +
        +
      • Gentlemen's Invitation Doubles (8 pairs Round Robin)[16]
      • +
      • Senior Gentlemen's Invitation Doubles (8 pairs Round Robin)[17]
      • +
      • Ladies' Invitation Doubles (8 pairs Round Robin)
      • +
      • Gentlemen's Wheelchair Doubles (4 pairs)[18]
      • +
      • Ladies' Wheelchair Doubles (4 pairs)[18]
      • +
      +

      Match formats[edit]

      +

      Matches in the Gentlemen's Singles and Gentlemen's Doubles are best-of-five sets; all other events are best-of-three sets. A tiebreak game is played if the score reaches 6�6 in any set except the fifth (in a five-set match) or the third (in a three-set match), in which case a two-game lead must be reached.

      +

      All events are single-elimination tournaments,[19] except for the Gentlemen's, Senior Gentlemen's and the Ladies' Invitation Doubles, which are round-robin tournaments.

      +

      Until 1922, the winners of the previous year's competition (except in the Ladies' Doubles and Mixed Doubles) were automatically granted byes into the final round (then known as the challenge round). This led to many winners retaining their titles in successive years, as they were able to rest while their opponent competed from the start of the competition. From 1922, the prior year's champions were required to play all the rounds, like other tournament competitors.

      +

      Schedule[edit]

      +

      Each year (currently until 2015), the tournament begins on the Monday falling between 20 and 26 June, two weeks after the Queen's Club Championships, which is one of the men's major warm-up tournaments. Another important men's warm-up tournament is the Gerry Weber Open, which is held in Halle, Germany, during the same week as the Queen's Club Championships. Other important grass-court tournaments before Wimbledon are Eastbourne, England, and 's-Hertogenbosch in the Netherlands, both combining mixed events. The other women's warm-up tournament for Wimbledon is Birmingham, also in England. After the Championships each year there is a tournament at Newport, Rhode Island, USA.

      +

      Wimbledon is scheduled for 14 days, beginning on a Monday and ending on a Sunday. The five main events span both weeks, but the youth and invitational events are held mainly during the second week. Traditionally, there is no play on the "Middle Sunday", which is considered a rest day. However, rain has forced play on the Middle Sunday three times, in 1991, 1997 and 2004. On each of these occasions, Wimbledon staged a "People's Sunday", with unreserved seating and readily available, inexpensive tickets, allowing those with more limited means to sit on the show courts. If the tournament is not completed by the end of the second Sunday, all remaining matches are postponed until "People's Monday".

      +

      From 2015, the championships will begin one week later than in previous years, extending the gap between the tournament and the French Open from two to three weeks.[20]

      +

      Players and seeding[edit]

      +

      Players and doubles pairs are admitted to the main events on the basis of their international rankings, with consideration also given to their previous performances at grass court events. Since the 2001 tournament 32 players have been given seedings in the Gentlemen's and Ladies' singles, 16 teams in the doubles events.

      +

      The Committee of Management and the Referee evaluate all applications for entry, and determine which players may be admitted to the tournament directly. The committee may admit a player without a high enough ranking as a wild card. Usually, wild cards are players who have performed well during previous tournaments, or would stimulate public interest in Wimbledon by participating. The only wild card to win the Gentlemen's Singles Championship was Goran Ivani�evic in 2001. Players and pairs who neither have high enough rankings nor receive wild cards may participate in a qualifying tournament held one week before Wimbledon at the Bank of England Sports Ground in Roehampton. The singles qualifying competitions are three-round events; the same-sex doubles competitions last for only one round. There is no qualifying tournament for Mixed Doubles. The furthest that any qualifier has progressed in a Singles tournament is the semi-final round: John McEnroe in 1977 (Gentlemen's Singles), Vladimir Voltchkov in 2000 (Gentlemen's Singles), and Alexandra Stevenson in 1999 (Ladies' Singles).

      +

      Players are admitted to the junior tournaments upon the recommendations of their national tennis associations, on their International Tennis Federation world rankings and, in the case of the singles events, on the basis of a qualifying competition. The Committee of Management determines which players may enter the four invitational events.

      +

      The Committee seeds the top players and pairs on the basis of their rankings, but it can change the seedings based on a player's previous grass court performance. Since 2002 a seeding committee has not been required for the Gentlemen's Singles following an agreement with the ATP. The seeding order is determined using the formula: ATP Entry System Position points + 100% points earned for all grass court tournaments in the past 12 months + 75% points earned for the best grass court tournament in the 12 months before that. A majority of the entrants are unseeded. Only two unseeded players have won the Gentlemen's Singles: Boris Becker in 1985 and Goran Ivani�evic in 2001. In 1985 there were only 16 seeds and Becker was ranked 20th; Ivani�evic was ranked 125th when he won as a Wild Card entrant, although he had previously been a finalist three times, and been ranked no. 2 in the world; his low ranking was due to having been hampered by a persistent shoulder injury for three years, which had only just cleared up. In 1996, the title was won by Richard Krajicek, who was originally unseeded (ranked 17th, and only 16 players were seeded) but was promoted to a seeded position (still with the number 17) when Thomas Muster withdrew before the tournament. No unseeded player has captured the Ladies' Singles title; the lowest seeded female champion was Venus Williams, who won in 2007 as the 23rd seed; Williams was returning from an injury that had prevented her playing in previous tournaments, giving her a lower ranking than she would normally have had. Unseeded pairs have won the doubles titles on numerous occasions; the 2005 Gentlemen's Doubles champions were not only unseeded, but also (for the first time ever) qualifiers.

      +

      Grounds[edit]

      + +
      +
      + +
      +
      + The order of play for all courts is displayed on boards around the grounds +
      +
      +
      +

      Since 2001 the courts used for Wimbledon have been sown with 100% perennial ryegrass. Prior to 2001 a combination of 70% ryegrass and 30% Creeping Red Fescue was used. The change was made to improve durability and strengthen the sward to better withstand the increasing wear of the modern game.[21]

      +

      The main show courts, Centre Court and No. 1 Court, are normally used for only two weeks a year, during the Championships, but play can extend into a third week in exceptional circumstances. The remaining 17 courts are regularly used for other events hosted by the Club. The show courts were in action for the second time in three months in 2012 as Wimbledon hosted the tennis events of the 2012 Olympic Games. One of the show courts is also used for home ties of the GB teams in the Davis Cup on occasions.

      +
      +
      + +
      +
      + No.1 Court +
      +
      +
      +

      Wimbledon is the only Grand Slam event played on grass courts. At one time, all the Majors, except the French Open, were played on grass. The US Open abandoned grass in 1975 and the Australian Open in 1988.

      +

      The principal court, Centre Court, was opened in 1922 when the Club moved from Worple Road to Church Road. The Church Road venue was larger and was needed to meet the ever-growing public demand.

      +

      Due to the possibility of rain during Wimbledon, a retractable roof was installed prior to the 2009 Championship. It is designed to close/open in about 20 minutes and will be closed primarily to protect play from inclement (and, if necessary, extremely hot) weather during The Championships.[22] When the roof is being opened or closed, play is suspended. The first time the roof was closed during a Wimbledon Championship match was on Monday 29 June 2009, involving Am�lie Mauresmo and Dinara Safina.

      +

      The court has a capacity of 15,000. At its south end is the Royal Box, from which members of the Royal Family and other dignitaries watch matches. Centre Court usually hosts the finals and semifinals of the main events, as well as many matches in the earlier rounds involving top-seeded players or local favourites.

      +

      The second most important court is No. 1 Court. The court was constructed in 1997 to replace the old No.1 Court, which was adjacent to Centre Court. The old No.1 Court was demolished because its capacity for spectators was too low. The court was said to have had a unique, more intimate atmosphere and was a favourite of many players. The new No.1 Court has a capacity of approximately 11,000.

      +

      From 2009, a new No. 2 Court is being used at Wimbledon with a capacity for 4,000 people. To obtain planning permission, the playing surface is around 3.5m below ground level, ensuring that the single-storey structure is only about 3.5m above ground level, and thus not affecting local views.[23] Plans to build on the current site of Court 13 were dismissed due to the high capacity of games played at the 2012 Olympic Games. The old No.2 Court has been renamed as No.3 Court. The old No.2 Court was known as the "Graveyard of Champions" because many highly seeded players were eliminated there during early rounds over the years, including Ilie Nastase, John McEnroe, Boris Becker, Andre Agassi, Pete Sampras, Martina Hingis, Venus Williams,Serena Williams and Maria Sharapova.[24] The court has a capacity of 2,192 + 770 standing. In 2011 a new No.3 Court and a new Court 4 have been unveiled on the sites of the old No.2 and 3 courts.[25]

      +
      +
      + +
      +
      + Terracotta Warriors +
      +
      +
      +

      At the northern end of the grounds is a giant television screen on which important matches are broadcast. Fans watch from an area of grass officially known as the Aorangi Terrace. When British players do well at Wimbledon, the hill attracts fans for them, and is often renamed by the press for them: Greg Rusedski's followers convened at "Rusedski Ridge", and Tim Henman has had the hill nicknamed Henman Hill. As both of them have now retired and Andy Murray is the number 1 British player, the hill is occasionally referred to as "Murray Mound" or "Murrayfield", as a reference to his Scottish heritage and the Scottish ground of the same name, but this has largely failed to catch on � the area is still usually referred to as Henman Hill. None of these nicknames are official.

      +
      +
      Grounds schedule
      +
      +

      The grounds open at 10:30 am on each day. On the Centre Court, play starts at 1 pm, with exception of the final two days of the competition (Ladies' and Gentlemen's Finals), when play begins at 2 pm. On courts 2�19, play begins at noon for at least the first eight days of the competition. It then starts at 11 am for the Junior matches on the middle Saturday and during the second week.

      +

      Traditions[edit]

      +
      +
      + +
      +
      + Wimbledon ball girl at the net, 2007 +
      +
      +
      +
      +
      + +
      +
      + Court 10 � on the outside courts there is no reserved seating +
      +
      +
      +
      +
      + +
      +
      + S�bastien Grosjean takes a shot on Court 18 during the 2004 Championships. +
      +
      +
      +

      Ball boys and ball girls[edit]

      +

      In the championship games, ball boys and girls, known as BBGs, play a crucial role in the smooth running of the tournament, with a brief that a good BBG "should not be seen. They should blend into the background and get on with their jobs quietly."[26]

      +

      From 1947 ball boys were supplied by Goldings,[27] the only Barnardos school to provide them. Prior to this, from the 1920s onwards, the ball boys had been provided by The Shaftsbury Children's Home.

      +

      Since 1969, BBGs have been provided by local schools. As of 2008 they are drawn from schools in the London boroughs of Merton, Sutton, Kingston, and Wandsworth, as well as from Surrey.[28] Traditionally, Wandsworth Boys Grammar School in Sutherland Grove, Southfields and Mayfield Girls School on West Hill in Wandsworth, both now defunct, were the schools of choice for selection of BBGs. This was possibly owing to their proximity to the club. BBGs have an average age of 15, being drawn from the school years nine and ten.[29] BBGs will serve for one, or if re-selected, two tournaments.[30]

      +

      Starting in 2005, BBGs work in teams of six, two at the net, four at the corners, and teams rotate one hour on court, one hour off, (two hours depending on the court) for the day's play.[29] Teams are not told which court they will be working on the day, to ensure the same standards across all courts. With the expansion of the number of courts, and lengthening the tennis day, as of 2008, the number of BBGs required is around 250. BBG service is paid, with a total of �120-�160 being paid to each ball boy or girl after the 13-day period. Along with this it is seen as a privilege, and seen as a valuable addition to a school leaver's curriculum vitae, showing discipline. BBG places are split 50:50 between boys and girls, with girls having been used since 1977, appearing on centre court since 1985.[31]

      +

      Prospective BBGs are first nominated by their school headteacher, to be considered for selection. To be selected, a candidate must pass written tests on the rules of tennis, and pass fitness, mobility and other suitability tests, against initial preliminary instruction material. Successful candidates then commence a training phase, starting in February, in which the final BBGs are chosen through continual assessment. As of 2008, this training intake was 600. The training includes weekly sessions of physical, procedural and theoretical instruction, to ensure that the BBGs are fast, alert, self-confident and adaptable to situations. As of 2011, early training occurs at the Wimbledon All England Lawn Tennis Club Covered Courts, to the side of the Grounds, and then moves to outside courts (8,9,10) the week before the Championships for a feel of the grass court.

      +

      Colours and uniforms[edit]

      +

      Dark green and purple are the traditional Wimbledon colours. However, all tennis players participating in the tournament are required to wear all-white or at least almost all-white clothing, a long-time tradition at Wimbledon. [32] Wearing white clothing with some colour accents is also acceptable, provided the colour scheme is not that of an identifiable commercial brand logo (the outfitter's brand logo being the sole exception). Controversy followed Martina Navratilova's wearing branding for "Kim" cigarettes in 1982. Green clothing was worn by the chair umpire, linesmen, ball boys and ball girls until the 2005 Championships; however, beginning with the 2006 Championships, officials, ball boys and ball girls were dressed in new navy blue- and cream-coloured uniforms from American designer Ralph Lauren. This marked the first time in the history of the Championships that an outside company was used to design Wimbledon clothing; the contract with Polo Ralph Lauren is set to end in 2015.

      +
      +
      Guidelines regarding prominently white clothing rule
      +
      [33]
      +
      +
        +
      1. No solid mass of colouring
      2. +
      3. Little or no dark or bold colours
      4. +
      5. No fluorescent colours
      6. +
      7. Preference towards pastel colours
      8. +
      9. Preference for the back of the shirt to be totally white
      10. +
      11. Preference for shorts and skirts to be totally white
      12. +
      13. All other items of clothing, including hats, socks and shoe uppers to be predominantly white
      14. +
      +

      Referring to players[edit]

      +

      Prior to 2009 female players were referred to by the title "Miss" or "Mrs" on scoreboards. As dictated by strict rule of etiquette, married female players are referred to by their husbands' names: for example, Chris Evert-Lloyd appeared on scoreboards as "Mrs. J. M. Lloyd" during her marriage to John Lloyd, since "Mrs. X" essentially designates the wife of X. This tradition has continued at least to some extent.[34] For the first time during the 2009 tournament, players were referred to on scoreboards by both their first and last names.[35] For example "Andy Murray", not "A. Murray".[36]

      +

      The title "Mr" is not used for male players who are professionals on scoreboards but the prefix is retained for amateurs, although chair umpires refer to players as "Mr" when they use the replay challenge. The chair umpire will say "Mr <surname> is challenging the call..." and "Mr <surname> has X challenges remaining." However, the umpires still say Miss <surname> when announcing the score of the Ladies' matches.

      +

      If a match is being played with two competitors of the same surname (e.g. Venus and Serena Williams, Bob and Mike Bryan), the chair umpire will specify to whom they are referring by stating the player's first name and surname during announcements (e.g. "Game, Miss Serena Williams", "Advantage, Mike Bryan").

      +

      Royal Family[edit]

      +
      +
      + +
      +
      + The Royal Gallery at Centre Court, Wimbledon +
      +
      +
      +

      Previously, players bowed or curtsied to members of the Royal Family seated in the Royal Box upon entering or leaving Centre Court. In 2003, however, the President of the All England Club, His Royal Highness the Duke of Kent, decided to discontinue the tradition. Now, players are required to bow or curtsy only if HRH The Prince of Wales, or Her Majesty The Queen is present,[37] as was in practice during the 2010 Championships when the Queen was in attendance at Wimbledon on 24 June.[38] On 27 June 2012, Roger Federer said in his post-match interview that he and his opponent had been asked to bow towards the Royal Box as Prince Charles and his wife were present, saying that that was no problem for him.[39]

      +

      Radio Wimbledon[edit]

      + +

      Friday before the start of the tournament. Radio Wimbledon can be heard within a five-mile radius on 87.7 FM, and also online. It operates under a Restricted Service Licence and is arguably the most sophisticated RSL annually in the UK. The main presenters are Sam Lloyd and Ali Barton. Typically they work alternate four-hour shifts until the end of the last match of the day. Reporters and commentators include Gigi Salmon, Nick Lestor, Rupert Bell, Nigel Bidmead, Guy Swindells, Lucie Ahl, Nadine Towell and Helen Whitaker. Often they report from the "Crow's Nest", an elevated building housing the Court 3 and 4 scoreboards which affords views of most of the outside courts. Regular guests include Sue Mappin. In recent years Radio Wimbledon acquired a second low-power FM frequency (within the grounds only) of 96.3 FM for uninterrupted Centre Court commentary, and, from 2006, a third for coverage from No. 1 Court on 97.8 FM. Hourly news bulletins and travel (using RDS) are also broadcast.

      +

      Television coverage[edit]

      +

      For over 70 years, the BBC has broadcast the tournament on television in the UK, starting in 1937. The matches covered are split between its two main terrestrial channels, BBC One and BBC Two. The BBC holds the broadcast rights for Wimbledon until 2017[40] and it distributes its commercial-free feed to outlets worldwide. During the days of British Satellite Broadcasting, its sports channel carried extra coverage of Wimbledon for subscribers. One of the most notable British commentators was Dan Maskell, who was known as the BBC's "voice of tennis" until his retirement in 1991. John Barrett succeeded him in that role until he retired in 2006. Current commentators working for the BBC at Wimbledon include British ex-players Andrew Castle, John Lloyd, Tim Henman, Greg Rusedski, Samantha Smith and Mark Petchey; tennis legends such as John McEnroe, Tracy Austin, Boris Becker and Lindsay Davenport; and general sports commentators including David Mercer, Barry Davies, Andrew Cotter and Nick Mullins. The coverage is presented by Sue Barker and highlights with John Inverdale. Previous BBC presenters include Des Lynam, David Vine and Harry Carpenter.

      +

      The Wimbledon Finals are obliged to be shown live and in full on terrestrial television (BBC Television Service, ITV, Channel 4, or Channel 5) by government mandate. Highlights of the rest of the tournament must be provided by terrestrial stations; live coverage (excepting the finals) may be sought by satellite or cable TV.[41]

      +
      +
      + +
      +
      + British strawberries and cream served at Wimbledon +
      +
      +
      +

      For decades, Americans made a tradition of NBC's "Breakfast at Wimbledon" specials at weekends. Live coverage started early in the morning (the US being a minimum of 5 hours behind the UK) and continued well into the afternoon, interspersed with commentary and interviews from Bud Collins, whose tennis acumen and (in)famous patterned trousers are well-known to tennis fans in the USA. Collins was sacked by NBC in 2007, but was promptly hired by ESPN, the cable home for The Championships in the States. For many years NBC's primary Wimbledon host was veteran broadcaster Dick Enberg. From 1975 to 1999, premium channel HBO carried weekday coverage of Wimbledon. Hosts included Jim Lampley, Billie Jean King, Martina Navratilova, John Lloyd and Barry MacKay among others.[42] Previously, weekday coverage in the United States was exclusively handled by ESPN2 during the tournament's first week. During the tournament's second week it was split between ESPN2 and NBC. ESPN's online service ESPN3 provides full coverage of courts not televised using BBC graphics and commentary. Effective the 2012 tournament, all live coverage, including the Finals, will be exclusively on ESPN and ESPN2, marking the second major tennis championship (after the Australian Open) available in the United States exclusively on pay television (although taped highlights from the tournament will be presented at weekend afternoons on sister network ABC).[43] Taped coverage using the BBC world feed is aired in primetime and overnights on Tennis Channel and is branded Wimbledon Primetime.

      +

      Wimbledon was also involved, unintentionally, in a piece of television history, on 1 July 1967. That was when the first official colour television broadcast took place in the UK. Four hours live coverage of Wimbledon was shown on BBC Two (then the only colour channel in the UK), and although footage of that historic match no longer survives, the Gentlemen's Final that year is still held in the BBC archives because it was the first Gentlemen's Final transmitted in colour.

      +

      Since 2007, Wimbledon matches have been transmitted in high-definition, originally on the BBC's free-to-air channel BBC HD, with continual live coverage during the tournament of Centre Court and Court No. 1 as well as an evening highlights show Today at Wimbledon. Since the closure of BBC HD, coverage is now shown on BBC One HD and BBC Two HD.

      +

      In Ireland RT� broadcast the tournament during the 1980s and 1990s on their second channel RT� Two, they also provided highlights of the games in the evening. The commentary provided was given by Matt Doyle a former Irish-American professional tennis player and Jim Sherwin a former RTE newsreader. Caroline Murphy was the presenter of the programme. RT� made the decision in 1998 to discontinue broadcasting the tournament due to falling viewing figures and the large number of viewers watching on the BBC.[44] Since 2005 TG4 Ireland's Irish-language broadcaster has provided coverage of the tournament. Live coverage is provided in the Irish language while they broadcast highlights in English at night.[45]

      +

      The BBC's opening theme music for Wimbledon was composed by Keith Mansfield and is titled "Light and Tuneful". A piece titled "A Sporting Occasion" is the traditional closing theme, though nowadays coverage typically ends either with a montage set to a popular song or with no music at all. Mansfield also composed the piece "World Champion", used by NBC during intervals (change-overs, set breaks, etc.) and at the close of broadcasts throughout the tournament.

      +

      In Australia, the free-to-air Nine Network covered Wimbledon for almost 40 years but decided to drop their broadcast following the 2010 tournament, citing declining ratings and desire to use money saved to bid on other sports coverage. In April 2011, it was announced that the Seven Network, the host broadcaster of the Australian Open, along with its sister channel 7Two would broadcast the event from 2011.

      +

      In Canada, coverage of Wimbledon has in recent years been divided between TSN on weekdays and CBC Sports on weekends. CBC's weekend coverage of the morning matches predates NBC's "Breakfast at Wimbledon" by several years.

      +

      In Mexico, the Televisa family of networks has aired Wimbledon since the early 1960s. Presently, most weekend matches are broadcast through Canal 5 with the weekday matches broadcast on the Televisa Deportes Network. As Mexico is six hours behind the U.K., some Canal 5 affiliates air the weekend matches as the first program of the day after sign-on. Although Mexico had begun broadcasting in colour in 1962, Wimbledon continued to air in black and white in Mexico until colour came to England in 1967.

      +

      Television coverage complaints[edit]

      +

      The BBC was forced to apologise after many viewers complained about "over-talking" by its commentary team during the TV coverage of the event in 2011. It said in a statement that views on commentary were subjective but that they "do appreciate that over-talking can irritate our audience". The BBC added that it hoped it had achieved "the right balance" across its coverage and was "of course sorry if on occasion you have not been satisfied". Praveen Devakota and John McEnroe were among the ex-players commentating.[46]

      + h3>Tickets[edit] +

      The majority of centre and show court tickets sold to the general public have since 1924 been made available by a public ballot that the All England Lawn Tennis and Croquet Club (usually known as the All England Club or the AELTC) holds at the start of the year.[47]

      +

      The ballot has always been substantially oversubscribed. Successful applicants are selected at random by a computer.[48] The most recent figures from 2011 suggested there were 4 applicants to every 1 ballot ticket, so a large number of applications are not successful. Applications must be posted to AELTC by mid December, the year prior to the tournament. Many applicants apply immediately after the end of each year's tournament. Seats and days are allocated randomly so you are unable to choose the specific court or day that you would like. Also Ballot tickets are not transferrable, if you are unable to use your ballot tickets you should return them to Wimbledon where they can be re-allocated or sold to the waiting queue on the day.

      +

      The All England Club, through its subsidiary The All England Lawn Tennis Ground plc, issues Debentures to tennis fans every five years to raise funds for capital expenditure. Fans who invest thus in the club receive a pair of tickets for every day of the Wimbledon Championships for the five years the investment lasts.[49] Only debenture holders are permitted to sell on their tickets to third parties, although for many years ticket touts have made a habit of purchasing tickets allocated to non-debenture holders in the draw and selling them for a profit. Wimbledon is very strict on this practice and has been known to eject customers who have purchased ballot tickets not in their name. Demand for debentures has increased in recent years, to such an extent that they are even traded on the London Stock Exchange. There were 2,500 Centre Court Debenture seats sold for the 5 year period from 2011�2015 at a price of �27,750 per seat, due to the high demand for Wimbledon tickets there is even a waiting list to purchase these rather expensive Centre Court Debentures.

      +

      Wimbledon and the French Open are the only Grand Slam tournaments where fans without tickets for play can queue up and still get seats on the three show courts on the day of the match.[50] Sequentially numbered queue cards were introduced in 2003. From 2008, there is a single queue, allotted about 500 seats for each court. When they join the queue, fans are handed queue cards. Anyone who then wishes to leave the queue temporarily, even if in possession of a queue card, must agree their position with the others nearby in the queue and/or a steward.

      +

      To get into the show courts, fans will normally have to queue overnight at Wimbledon.[51] This is done by fans from all over the world and, although considered vagrancy, is part of the Wimbledon experience in itself. The All-England Club allows overnight queuing and provides toilet and water facilities for campers. Those planning to queue overnight are advised to bring a tent and sleeping bag. Should a camper be successful in obtaining a ticket, the Club also provides unattended baggage storage where items not allowed into the grounds (including camping equipment such as tents) can be left while matches are in progress.

      +

      Times to queue up vary according to the weather, but anyone queuing up before 9 pm on a weekday should be able to get a show court ticket. Early in the morning when the line moves towards the Grounds, stewards walk along the line and hand out wristbands that are colour-coded to the specific court. The wrist band (and payment) is exchanged at the ticket office for the ticket when the grounds open. Queuing for the show courts ends after the quarter finals have been completed.

      +

      At 2.40pm on Day Seven (Monday 28 June) of the 2010 Championships, the one-millionth numbered Wimbledon queue card was handed out to Rose Stanley from South Africa.[52]

      +

      General admission to the grounds gives access to the outer courts and is possible without queuing overnight. Tickets returned by people leaving early go on sale at 2:30 pm. The money goes to charity.

      +

      Trophies and prize money[edit]

      +
      +
      + +
      +
      + The Ladies' (top) and Gentlemen's singles trophies +
      +
      +
      +

      The Gentlemen's Singles champion receives a silver gilt cup 18.5 inches (about 47 cm) in height and 7.5 inches (about 19 cm) in diameter. The trophy has been awarded since 1887 and bears the inscription: "All England Lawn Tennis Club Single Handed Championship of the World." The Ladies' Singles champion receives a sterling silver salver commonly known as the "Venus Rosewater Dish", or simply the "Rosewater Dish". The salver, which is 18.75 inches (about 48 cm) in diameter, is decorated with figures from mythology. The winners of the Gentlemen's Doubles, Ladies' Doubles, and Mixed Doubles events receive silver cups.[53] The runner-up in each event receives an inscribed silver plate. The trophies are usually presented by the President of the All England Club, HRH The Duke of Kent.

      +

      Prize money was first awarded in 1968, the first year that professional players were allowed to compete in the Championships.[54]

      +

      Before 2007, among grand slam tournaments, Wimbledon and the French Open awarded more prize money in men's events than in women's events. In 2007, Wimbledon changed this policy, giving the same money for both events.[55] The decision has been controversial as women spend approximately half as much time on court as men during the tournament because of their playing only three sets, therefore earning considerably more per hour than their male counterparts.[56][57][58]

      +

      In 2009, a total of �12,500,000 in prize money was awarded with the singles champions receiving �850,000 each, an increase of 13.3 percent on 2008.[59]

      +

      For the 2010 Championships, the total prize money increased to �13,725,000, and the singles champions received �1,000,000 each.

      +

      For the 2011 Wimbledon Championships it was announced that the total prize money would be �14,600,000, an increase of 6.4% from 2010. Both male and female singles champions prize money also increased to �1,100,000, a rise of 10% since the previous year.[60]

      +

      On 24 April 2012, it was announced that the total prize money offered at the 2012 Wimbledon Championships would be �16,060,000, an increase of 10.0% from 2011. The bulk of the increases were given to players losing in earlier rounds.[61] This move was in response to the growing angst among lower-ranked players concerning the inadequacy of their pay. Sergiy Stakhovsky, a member of the ATP Player Council and who was at the time ranked 68th, was among the most vocal in the push for higher pay for players who bow out in the earlier rounds. In an interview Stakhovsky intimated that it is not uncommon for lower-ranked players to be in the negative, for certain tour events, if their results weren't stellar.[62] This issue gained the attention of the men's "big four"�Novak Djokovic, Rafael Nadal, Roger Federer, and Andy Murray�as well as the Championships.

      +

      On 23 April 2013, The All England Club announced the largest prize money for a tennis tournament so far. The total prize money has been increased by about 40% from 2012 to �22,560,000. The losers in the earlier singles rounds of the tournament saw a highest 62% increase in their pay while the total prize money of the doubles increased by 22%. The prize money for participants of the qualifying matches saw an increase of 41%. Sergiy Stakhovsky, a member of the ATP Player Council, was the loudest voice for this increase.[63][64]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      2013 Wimbledon Championship prize money (singles)[65]
      ResultPrize moneyIncrease from 2012
      Winner�1,600,00039%
      Finalist�800,00039%
      Semi-finalists�400,00039%
      Quarter-finalists�205,00041%
      Fourth round losers�105,00040%
      Third round losers�63,00062%
      Second round losers�38,00064%
      First round losers�23,50062%
      +

      Ranking points[edit]

      +

      Ranking points for the ATP and WTA have varied at Wimbledon through the years but at present singles players receive the following points:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ATPWTA
      First round105
      Second round45100
      Third round90160
      Fourth round180280
      Quarter-finalist360500
      Semi-finalist720900
      Runner-up12001400
      Champion20002000
      +

      Champions[edit]

      + +

      Current champions[edit]

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      EventChampionRunner-upScore
      2013 Men's SinglesUnited Kingdom Andy MurraySerbia Novak Djokovic6-4, 7�5, 6�4
      2013 Women's SinglesFrance Marion BartoliGermany Sabine Lisicki6�1, 6-4
      2013 Men's Doubles + United States Bob Bryan
      + United States Mike Bryan +
      + Croatia Ivan Dodig
      + Brazil Marcelo Melo +
      3�6, 6�3, 6�4, 6�4
      2013 Women's Doubles + Chinese Taipei Hsieh Su-wei
      + China Peng Shuai +
      + Australia Ashleigh Barty
      + Australia Casey Dellacqua +
      7�6(7�1), 6�1
      2013 Mixed Doubles + Canada Daniel Nestor
      + France Kristina Mladenovic +
      + Brazil Bruno Soares
      + United States Lisa Raymond +
      5�7, 6�2, 8�6
      +

      Records[edit]

      +
      +
      + +
      +
      + Record plaque about the longest match ever played at Wimbledon. +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      RecordEraPlayer(s)CountWinning years
      Gentlemen since 1877
      Winner of most Gentlemen's Singles titlesBefore 1968:United Kingdom William Renshaw71881, 1882, 1883, 1884, 1885, 1886, 1889
      After 1967: + United States Pete Sampras
      + Switzerland Roger Federer +
      7 + 1993, 1994, 1995, 1997, 1998, 1999, 2000
      + 2003, 2004, 2005, 2006, 2007, 2009, 2012 +
      Winner of most consecutive Gentlemen's Singles titlesBefore 1968:United Kingdom William Renshaw[68]61881, 1882, 1883, 1884, 1885, 1886
      After 1967: + Sweden Bj�rn Borg
      + Switzerland Roger Federer +
      5 + 1976, 1977, 1978, 1979, 1980
      + 2003, 2004, 2005, 2006, 2007 +
      Winner of most Gentlemen's Doubles titlesBefore 1968: + United Kingdom Reggie Doherty
      + United Kingdom Laurie Doherty +
      81897, 1898, 1899, 1900, 1901, 1903, 1904, 1905
      After 1967:Australia Todd Woodbridge91993, 1994, 1995, 1996, 1997, 2000 (with Mark Woodforde), 2002, 2003, 2004 (with Jonas Bj�rkman)
      Winner of most consecutive Gentlemen's Doubles titlesBefore 1968: + United Kingdom Reggie Doherty
      + United Kingdom Laurie Doherty +
      51897, 1898, 1899, 1900, 1901
      After 1967: + Australia Todd Woodbridge
      + Australia Mark Woodforde +
      51993, 1994, 1995, 1996, 1997
      Winner of most Mixed Doubles titles � GentlemenBefore 1968: + Australia Ken Fletcher +

      United States Vic Seixas

      +
      4 + 1963, 1965, 1966, 1968 (with Margaret Court) +

      1953, 1954, 1955, 1956 (3 with Doris Hart, 1 with Shirley Fry Irvin)

      +
      After 1967:Australia Owen Davidson41967, 1971, 1973, 1974 (with Billie Jean King)
      Winner of most Championships (total: singles, doubles, mixed) � GentlemenBefore 1968:United Kingdom William Renshaw141880�1889 (7 singles, 7 doubles)
      After 1967:Australia Todd Woodbridge101993�2004 (9 doubles, 1 mixed)
      Ladies since 1884
      Winner of most Ladies' Singles titlesBefore 1968:United States Helen Wills81927, 1928, 1929, 1930, 1932, 1933, 1935, 1938
      After 1967:United States Martina Navratilova91978, 1979, 1982, 1983, 1984, 1985, 1986, 1987, 1990
      Winner of most consecutive Ladies' Singles titlesBefore 1968:France Suzanne Lenglen51919, 1920, 1921, 1922, 1923
      After 1967:United States Martina Navratilova61982, 1983, 1984, 1985, 1986, 1987
      Winner of most Ladies' Doubles titlesBefore 1968:United States Elizabeth Ryan121914 (with Agatha Morton), 1919, 1920, 1921, 1922, 1923, 1925 (with Suzanne Lenglen), 1926 (with Mary Browne), 1927, 1930 (with Helen Wills), 1933, 1934 (with Simone Mathieu)
      United States Billie Jean King101961, 1962 (with Karen Hantze Susman), 1965 (with Maria Bueno), 1967, 1968, 1970, 1971, 1973 (with Rosie Casals), 1972 (with Betty St�ve), 1979 (with Martina Navratilova)
      After 1967:United States Martina Navratilova71976 (with Chris Evert), 1979 (with Billie Jean King), 1981, 1982, 1983, 1984, 1986 (with Pam Shriver)
      Winner of most consecutive Ladies' Doubles titlesBefore 1968: + France Suzanne Lenglen
      + United States Elizabeth Ryan +
      51919, 1920, 1921, 1922, 1923
      After 1967: + United States Martina Navratilova
      + United States Pam Shriver +

      Soviet Union/Belarus Natasha Zvereva

      +
      4 + 1981, 1982, 1983, 1984 +

      1991 (with Larisa Neiland), 1992, 1993, 1994 (Gigi Fern�ndez)

      +
      Winner of most Mixed Doubles titles � ladiesBefore 1968:United States Elizabeth Ryan71919, 1921, 1923 (with Randolph Lycett), 1927 (with Frank Hunter), 1928 (with Patrick Spence), 1930 (with Jack Crawford), 1932 (with Enrique Maier)
      After 1967:United States Martina Navratilova41985 (with Paul McNamee), 1993 (with Mark Woodforde), 1995 (with Jonathan Stark), 2003 (with Leander Paes)
      Winner of most Championships (total: singles, doubles, mixed) � ladiesBefore 1968:United States Billie Jean King201961�79 (6 singles, 10 doubles, 4 mixed)
      United States Elizabeth Ryan191914�34 (12 doubles, 7 mixed)
      After 1967:United States Martina Navratilova201976�2003 (9 singles, 7 doubles, 4 mixed)
      Miscellaneous
      Career match winning performance (men) singlesSweden Bj�rn Borg92.72% (51-4)1973-1981 (open era)
      Career match winning performance (women) singlesWest Germany Steffi Graf90.36% (75-8)1984-1999 (open era)
      Won title without losing a set (men) singlesSweden Bj�rn Borg21-01976 (open era)
      Most games won in a finalUnited States Andy Roddick392009
      Most matches played (men)France Jean Borotra2231922�39, 1948�64
      Most matches played (women)United States Martina Navratilova326
      Loser of most singles finals (men or women) + United Kingdom Blanche Bingley Hillyard
      + United States Chris Evert +
      7 + 1885, 1887, 1888, 1891, 1892, 1893, 1901
      + 1973, 1978, 1979, 1980, 1982, 1984, 1985 +
      Lowest-ranked winner (men or women)Croatia Goran Ivani�evic125th2001
      Wildcard winner (men or women)Croatia Goran Ivani�evic2001
      Lowest-ranked winner (women)United States Venus Williams + 31st
      + (23rd seed) +
      2007
      Youngest winner (men)Germany Boris Becker171985
      Youngest winner (Ladies' Singles)United Kingdom Lottie Dod151887
      Youngest winner (Ladies' Doubles)Switzerland Martina Hingis151996
      Longest men's final by time + Switzerland Roger Federer vs
      + Spain Rafael Nadal +
      4hrs 48mins2008
      Longest men's match by time + United States John Isner vs
      + France Nicolas Mahut +
      11hrs 5mins2010
      Longest men's final by games + Switzerland Roger Federer vs
      + United States Andy Roddick +
      77 games2009
      Longest men's match by games + United States John Isner vs
      + France Nicolas Mahut +
      183 games2010
      Longest women's final by time + United States Lindsay Davenport vs
      + United States Venus Williams +
      2hrs 45mins2005
      Longest women's match by time + United States Chanda Rubin vs
      + Canada Patricia Hy-Boulais +
      3hrs 45mins[69]1995
      Set won without losing a point (golden set) + Kazakhstan Yaroslava Shvedova
      + (3rd round vs Italy S Errani, 1st set) +
      15 mins2012
      +

      Singles champions never World No. 1[edit]

      + +

      See also[edit]

      +
      + + + + + + + + + +
      Portal iconTennis portal
      Portal iconUnited Kingdom portal
      +
      + +

      Notes[edit]

      +
      +
        +
      1. ^ Except Centre Court during rain.
      2. +
      3. ^ This means that, in the men's main draws, there are 128 singles (S) and 64 doubles (D), and there are 128 and 16 entrants in the respective qualifying (Q) draws.
      4. +
      5. ^ A Centre Court did not yet exist during the first four years of the championship.[9]
      6. +
      +
      +

      References[edit]

      +
      +
        +
      1. ^ "Wimbledon prize money up 40% and roof planned for Court One". BBC News. 23 April 2013. Retrieved 22 June 2013. 
      2. +
      3. ^ Clarey, Christopher (7 May 2008). "Traditional Final: It's Nadal and Federer". The New York Times. Retrieved 17 July 2008. "Federer said[:] 'I love playing with him, especially here at Wimbledon, the most prestigious tournament we have.'" 
      4. +
      5. ^ Will Kaufman & Heidi Slettedahl Macpherson, ed. (2005). "Tennis". Britain and the Americas. 1 : Culture, Politics, and History. ABC-CLIO. p. 958. ISBN 1-85109-431-8. "this first tennis championship, which later evolved into the Wimbledon Tournament ... continues as the world's most prestigious event." 
      6. +
      7. ^ "Djokovic describes Wimbledon as "the most prestigious event"". BBC News. 26 June 2009. Retrieved 14 September 2010. 
      8. +
      9. ^ Ryan Rudnansky (24 June 2013). "Wimbledon Tennis 2013: Why Historic Tournament Is Most Prestigious Grand Slam". bleacherreport. Retrieved 25 June 2013. 
      10. +
      11. ^ Monte Burke. "What Is The Most Prestigious Grand Slam Tennis Tournament?". Forbes. Retrieved 25 June 2013. 
      12. +
      13. ^ Prichard, DMC (1981). The History Of Croquet. Cassell. ISBN 0-304-30759-9.[page needed]
      14. +
      15. ^ Atkin, Ron. "1877 Wimbledon Championships". Wimbledon.org. Retrieved 5 October 2010. 
      16. +
      17. ^ Little, Alan (2011). Wimbledon Compendium 2011 (21st ed.). London: All England Lawn Tennis & Croquet Club. pp. 9, 102. ISBN 978-1-899039-36-4. 
      18. +
      19. ^ "Long Term Plan". AELTC. Retrieved 4 April 2012. 
      20. +
      21. ^ [1][dead link]
      22. +
      23. ^ Precedently only three finals were played on a Monday due to raein: 1919, 1922 and 2001 (http://www.all-about-tennis.com/wimbledonmenstrivia.html).
      24. +
      25. ^ New Court No. 2[dead link]
      26. +
      27. ^ "The New Court 3". Blog.wimbledon.org. Retrieved 14 September 2010. [dead link]
      28. +
      29. ^ "Wimbledon Event Guide". wimbledon.org. Retrieved 12 November 2010. [dead link]
      30. +
      31. ^ The men who are eligible for the Gentlemen's Invitation Doubles are 35 years old and older.
      32. +
      33. ^ The men who are eligible for the Senior Gentlemen's Invitation Doubles are 45 years old and older.
      34. +
      35. ^ a b There are no age limits for the Wheelchair Doubles events.
      36. +
      37. ^ In a single-elimination tournament, a losing player or team is eliminated from the tournament.
      38. +
      39. ^ "Wimbledon Championships moved back a week from 2015". BBC. 19 July 2012. Retrieved 1 September 2012. 
      40. +
      41. ^ "Wimbledon � Grass Courts". AELTC. Retrieved 1 May 2012. 
      42. +
      43. ^ "Wimbledon � Centre Court roof". AELTC. Retrieved 1 September 2012. 
      44. +
      45. ^ "Tickets - 2013 Wimbledon Championships Website - Official Site by IBM". Aeltc.com. Retrieved 2013-07-06. 
      46. +
      47. ^ "How the �Graveyard of champions� got its name". Blog.wimbledon.org. Retrieved 14 September 2010. [dead link]
      48. +
      49. ^ "Wimbledon Debentures � About Debentures � The Long Term Plan". Aeltc.com. Retrieved 26 July 2010. 
      50. +
      51. ^ Strawberries, cream and BBGs. The Telegraph, 29 June 2006.
      52. +
      53. ^ "Goldings Ballboys". Goldonian.org. 26 June 2004. Retrieved 14 September 2010. 
      54. +
      55. ^ Official Site Ballboys and Ballgirls Schools Information
      56. +
      57. ^ a b Official Site Ballboys and Ballgirls Background Information
      58. +
      59. ^ Official Site About the Ball Boys and Girls
      60. +
      61. ^ "About Wimbledon � Behind the scenes � Ball boys and ball girls". AELTC. Retrieved 1 September 2012. 
      62. +
      63. ^ "Game and All Set for a Match: Wimbledon and our Inner Tennis Player". The Green Rooms. Retrieved 15 January 2014. 
      64. +
      65. ^ "The Players, Guidelines regarding prominently white clothing rule". Wimbledon. 21 August 2013. 
      66. +
      67. ^ "Mrs. P-Y Hardenne" is used to describe Justine Henin. See [2][dead link]. Retrieved 12 November 2010.
      68. +
      69. ^ [3][dead link]
      70. +
      71. ^ See scoreboard behind Andy Murray during his third round match with Stanilsas Wawrinka [4]. Retrieved 30 June 2009.[dead link]
      72. +
      73. ^ "Wimbledon Website � The Championships and The All England Lawn Tennis Club". Wimbledon.org. 23 September 2007. Retrieved 14 September 2010. [dead link]
      74. +
      75. ^ Eden, Richard (15 May 2010). "Advantage Andy Murray as the Queen visits Wimbledon". London: Telegraph. Retrieved 26 July 2010. 
      76. +
      77. ^ "Roger Federer advances to 3rd round". ESPN. 27 June 2012. 
      78. +
      79. ^ "BBC extends deal to broadcast Wimbledon tennis to 2017". Bbc.co.uk. 2011-10-26. Retrieved 2013-07-06. 
      80. +
      81. ^ "Coverage of Sport on Television" (PDF). DCMS. Retrieved 26 July 2010. 
      82. +
      83. ^ HBO Guides, program schedules, 1975 to 1999
      84. +
      85. ^ Sandomir, Richard (3 July 2011). "ESPN Reaches Deal to Carry Wimbledon". The New York Times. 
      86. +
      87. ^ "Tennis � set for change?". The Irish Times. 8 July 1998. Retrieved 22 June 2010. 
      88. +
      89. ^ "TG4'S SUCCESSFUL TENNIS COVERAGE TO CONTINUE WITH WIMBLEDON 2009". TG4. 20 June 2009. Retrieved 2 June 2010. [dead link]
      90. +
      91. ^ "BBC sorry for 'over-talking' Wimbledon commentators". BBC. 5 July 2011. Retrieved 5 July 2011. 
      92. +
      93. ^ "Ballot". AELTC. Retrieved 25 January 2013. 
      94. +
      95. ^ "Tickets". AELTC. Retrieved 1 September 2012. 
      96. +
      97. ^ "Wimbledon Debentures � About Debentures � About Wimbledon Debentures". Aeltc.com. Retrieved 26 July 2010. 
      98. +
      99. ^ "Evening Visitors | Le site officiel de la billetterie Roland-Garros 2013". Rolandgarros.fft-tickets.com. Retrieved 2013-07-06. 
      100. +
      101. ^ "Natee's Blog". Blog.nationmultimedia.com. Retrieved 2013-07-06. 
      102. +
      103. ^ One-Millionth queue card handed out 29 June 2012. wimbledon.org.
      104. +
      105. ^ "Wimbledon � Behind the Scenes � Trophies". AELTC. Retrieved 1 September 2012. 
      106. +
      107. ^ "The Championships, Wimbledon � Prize Money history". wimbledon.org. Retrieved 2 September 2012. 
      108. +
      109. ^ "The Championships, Wimbledon 2009 � 2009 Prize money". Aeltc2009.wimbledon.org. Retrieved 26 July 2010. 
      110. +
      111. ^ Galway racing tips (23 June 2009). "Some are more equal than others... � Lifestyle, Frontpage". The Irish Independent. Retrieved 26 July 2010. 
      112. +
      113. ^ "Women Don't Deserve Equal Prize Money at Wimbledon". Bleacher Report. 2 July 2009. Retrieved 26 July 2010. 
      114. +
      115. ^ Newman, Paul (23 June 2006). "The Big Question: Should women players get paid as much as men at Wimbledon?". The Independent (London). Retrieved 25 May 2010. 
      116. +
      117. ^ "2009 Championships Prize Money". Aeltc2009.wimbledon.org. Retrieved 14 September 2010. 
      118. +
      119. ^ "Wimbledon Increase Prize Money". ATP Tour. 19 April 2011. Retrieved 20 April 2011. 
      120. +
      121. ^ "Wimbledon announce increase in prize money for losers". http://www.independent.co.uk. 24 April 2012. Retrieved 10 July 2012. 
      122. +
      123. ^ Eugene Shvets (4 April 2012). "?????? ??????????: ??????? ????????? ??????????? � ??? ??????? ????????" [Sergiy Stakhovsky: big earnings tennis players - it is an illusion]. LB.ua (in Russian). Retrieved 3 November 2012. 
      124. +
      125. ^ "The top guns rake it in from sponsors, but �23,500 minimum prize at Wimbledon will help us humans, says world No 117 and Players' Council rep Stakhovsky". The Daily Mail. Retrieved 25 June 2013. 
      126. +
      127. ^ "WIMBLEDON ANNOUNCES 40 PER CENT PRIZE MONEY INCREASE FOR 2013 CHAMPIONSHIPS". ATP World Tour. Retrieved 25 June 2013. 
      128. +
      129. ^ "The Championships, Wimbledon � Prize Money". AELTC. Retrieved 25 June 2013. 
      130. +
      131. ^ Last British Gentlemen's Singles champion: Fred Perry (1936)
      132. +
      133. ^ Last British Ladies' Singles champion: Virginia Wade (1977)
      134. +
      135. ^ In Renshaw's era, the defending champion was exempt from playing in the main draw, playing only in the final. This policy was abolished in 1922.
      136. +
      137. ^ "Schiavone-Kuznetsova Epic is Second-Longest Ever Women's Match". World Tennis Magazine. 23 January 2011. Retrieved 8 June 2012. 
      138. +
      139. ^ Collins, Bud (2008). The Bud Collins History of Tennis: An Authoritative Encyclopedia and Record Book. New York, N.Y: New Chapter Press. pp. 695, 701�4. ISBN 0-942257-41-3. 
      140. +
      +
      +

      Further reading[edit]

      +
      + +
      +

      External links[edit]

      + + + + + + + + + + + + + +
      + Preceded by
      + French Open +
      + Grand Slam Tournament
      + June�July +
      + Succeeded by
      + US Open +
      +

      Coordinates: 51�26'1.48?N 0�12'50.63?W? / ?51.4337444�N 0.2140639�W? / 51.4337444; -0.2140639

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      + + + + + +
      +
      +
      +
      +
      +

      Navigation menu

      +
      + +
      + + +
      +
      + + + +
      +
      + +
      + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/zoopla.html b/tests/FSharp.Data.Core.Tests/Data/zoopla.html new file mode 100644 index 000000000..2f2e594c1 --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/zoopla.html @@ -0,0 +1,27849 @@ + + + + + + + + + 1 bedroom property to rent in London - 1 bed flats & houses to rent in London - Zoopla + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + +
      + +
      + +
      + + + + + + + + + + + +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + +
      + + + + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/zoopla2.html b/tests/FSharp.Data.Core.Tests/Data/zoopla2.html new file mode 100644 index 000000000..6c681d24f --- /dev/null +++ b/tests/FSharp.Data.Core.Tests/Data/zoopla2.html @@ -0,0 +1,8285 @@ + + + + + + + + + 1 bedroom property to rent in London - 1 bed flats & houses to rent in London - Zoopla + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + +
      + + + + + + + + + + + + + + +
      + +
      + + +
      + +
      + + +
      + +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + +
      + + + + + + + + + + +
      + + + + + + +
      + + +
      + + + + + + + +
      + + +

      + + + + + + 1 bedroom property to rent + + + + in London + + + + + + +

      + +
      + + +
      + +
      + + + + + + + + + + + + + + + + + + +
      + +
      + + + 1 - 10 of 278 + + + + + + + +
      + +
      + + + + Keywords and filters like garden and parking live here + + +
      + +
      + + + + + + + + +
      + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + +
      + +Pages: + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + ... + + 28 + + + + Next + + +
      + + + + + + + + + +
      + +
      + + + + Contact relevant estate agents & new homes developers + Send a message to agents and developers matching your search for 1 bedroom property to rent in London + + + + +
      + +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + +
      + +
      + +
      + + Enter details + +
        + + + +
      1. + + + + + + + + + + + +
      2. + + + + + +
      3. + + + + + + + +Characters remaining: 500 + + + +
      4. + + + + +
      5. + + + + + + + + + + + + + + + +
      6. + + + + +
      7. + + + + + + + + + + + + + + + + +
      8. + + + + + +
      9. + + + +
      10. + + +
      11. + + + +
      12. + +
      + + + + + + + + + + +
      + +
      + +
      + +
      + +
      + + Select agents (37 matching your search) + +
      + +
      + + Select: + + All | + + + Featured | + + + None + +
      + +
      + + 0 out of 37 selected + +
      + +
      + +
      + + + +
        + + +
      1. + + + +
      2. + + +
      3. + + + +
      4. + + +
      5. + + + +
      6. + + +
      7. + + + +
      8. + + +
      9. + + + +
      10. + + +
      11. + + + +
      12. + + +
      13. + + + +
      14. + + +
      15. + + + +
      16. + + +
      17. + + + +
      18. + + +
      19. + + + +
      20. + + +
      21. + + + +
      22. + + +
      23. + + + +
      24. + + +
      25. + + + +
      26. + + +
      27. + + + +
      28. + + +
      29. + + + +
      30. + + +
      31. + + + +
      32. + + +
      33. + + + +
      34. + + +
      35. + + + +
      36. + + +
      37. + + + +
      38. + + +
      39. + + + +
      40. + + +
      41. + + + +
      42. + + +
      43. + + + +
      44. + + +
      45. + + + +
      46. + + +
      47. + + + +
      48. + + +
      49. + + + +
      50. + + +
      51. + + + +
      52. + + +
      53. + + + +
      54. + + +
      55. + + + +
      56. + + +
      57. + + + +
      58. + + +
      59. + + + +
      60. + + +
      61. + + + +
      62. + + +
      63. + + + +
      64. + + +
      65. + + + +
      66. + + +
      67. + + + +
      68. + + +
      69. + + + +
      70. + + +
      71. + + + +
      72. + + +
      73. + + + +
      74. + + +
      + + + + + + + +
      + +
      + +
      + +
      + +
      + +
      + +

      + + By submitting this form, you accept our Terms of Use. + +

      + + + +
      + +
      + +
      + + + +
      + +
      + +
      + +
      + +
      + + + + + + + + + + + + + +

      + + + Latest London 1 bedroom property to rent
      + + + + Zoopla is one of the UK's leading property portals, helping you to find property for sale and to rent and make smarter decisions when buying and renting homes in the UK. Discover information on homes in London by researching London property values, London house prices paid, our London property market overview and find London agents. + + +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + + + +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + +
      + + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj index 787a4eb55..4c32a7133 100644 --- a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj +++ b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj @@ -14,6 +14,9 @@ + + PreserveNewest + diff --git a/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs b/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs index 9347bd109..3bf7a1543 100644 --- a/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs +++ b/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs @@ -27,16 +27,14 @@ let testCases = let expectedDirectory = sourceDirectory ++ "expected" let resolutionFolder = sourceDirectory ++ ".." ++ "FSharp.Data.Tests" ++ "Data" -let assemblyName = "FSharp.Data.dll" -let netstandard2RuntimeAssembly = sourceDirectory ++ ".." ++ ".." ++ "src" ++ "FSharp.Data" ++ "bin" ++ - #if DEBUG - "Debug" - #else - "Release" - #endif - ++ "netstandard2.0" ++ assemblyName -let getRuntimeRefs platform = TypeProviderInstantiation.GetRuntimeAssemblyRefs platform +#if DEBUG +let build = "Debug" +#else +let build = "Release" +#endif + +let netstandard2RuntimeAssembly = sourceDirectory ++ ".." ++ ".." ++ "src" ++ "FSharp.Data" ++ "bin" ++ build ++ "netstandard2.0" ++ "FSharp.Data.dll" let normalize (str:string) = str.Replace("\r\n", "\n").Replace("\r", "\n").Replace("@\"\"", "\"\"") @@ -46,8 +44,7 @@ let normalize (str:string) = let ``Validate signature didn't change `` (testCase:TypeProviderInstantiation) = let path = testCase.ExpectedPath expectedDirectory let expected = path |> File.ReadAllText |> normalize - let assemblyRefs = getRuntimeRefs NetStandard20 - printfn "assemblyRefs = %A" assemblyRefs + let assemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() let outputRaw = testCase.Dump (resolutionFolder, "", netstandard2RuntimeAssembly, assemblyRefs, signatureOnly=false, ignoreOutput=false) let output = outputRaw |> normalize if output <> expected then @@ -58,4 +55,5 @@ let ``Validate signature didn't change `` (testCase:TypeProviderInstantiation) = [] [] let ``Generating expressions works in netstandard2.0 `` (testCase:TypeProviderInstantiation) = - testCase.Dump(resolutionFolder, "", netstandard2RuntimeAssembly, (getRuntimeRefs NetStandard20), signatureOnly=false, ignoreOutput=true) |> ignore + let assemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() + testCase.Dump(resolutionFolder, "", netstandard2RuntimeAssembly, assemblyRefs, signatureOnly=false, ignoreOutput=true) |> ignore diff --git a/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs b/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs index 422e0fdde..14e416fa6 100644 --- a/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs +++ b/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs @@ -252,6 +252,13 @@ type TypeProviderInstantiation = | _ -> failwithf "Unknown: %s" args.[0] static member GetRuntimeAssemblyRefs platform = - match platform with - | NetStandard20 -> Targets.DotNetStandard20FSharpRefs() + let (++) a b = Path.Combine(a, b) + #if DEBUG + let build = "Debug" + #else + let build = "Release" + #endif + + let extraRef2 = __SOURCE_DIRECTORY__ ++ ".." ++ ".." ++ "src" ++ "FSharp.Data" ++ "bin" ++ build ++ "netstandard2.0" ++ "FSharp.Data.Core.dll" + [extraRef2] @ Targets.DotNetStandard20FSharpRefs() From 0706aacd6771ee0961a22d6f9098e01132e0ece5 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 15 Aug 2022 21:55:13 +0100 Subject: [PATCH 03/11] don't duplicate data files --- nuget/FSharp.Data.Core.nuspec | 32 + tests/FSharp.Data.Core.Tests/Data/Adwords.csv | 6 - .../Data/AirQuality.csv | 154 - tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml | 44 - tests/FSharp.Data.Core.Tests/Data/Cars.xml | 7 - tests/FSharp.Data.Core.Tests/Data/Dates.json | 6 - .../Data/DictionaryInference.json | 10 - .../Data/DnbHistoriskeKurser.csv | 533 - .../Data/DoubleNested.json | 6 - tests/FSharp.Data.Core.Tests/Data/Empty.json | 1 - .../Data/EmptyDefinitionLists.html | 8 - tests/FSharp.Data.Core.Tests/Data/GDP.csv | 327 - tests/FSharp.Data.Core.Tests/Data/GitHub.json | 1507 - .../FSharp.Data.Core.Tests/Data/HtmlBody.xml | 10 - .../Data/IncludeFromWeb.xsd | 7 - .../Data/IrelandStations.xml | 1275 - .../FSharp.Data.Core.Tests/Data/JsonInXml.xml | 86 - tests/FSharp.Data.Core.Tests/Data/LastFM.tsv | 5 - tests/FSharp.Data.Core.Tests/Data/MSFT.csv | 6528 ---- .../Data/MarketDepth.htm | 1377 - tests/FSharp.Data.Core.Tests/Data/Nested.json | 8 - tests/FSharp.Data.Core.Tests/Data/NuGet.html | 725 - .../Data/OptionValues.json | 1 - .../Data/Philosophy.xml | 12 - .../Data/SampleAzureServiceManagement.xml | 45 - tests/FSharp.Data.Core.Tests/Data/Simple.json | 6 - .../Data/SimpleArray.json | 1 - .../Data/SimpleHtmlLists.html | 28 - .../Data/SimpleHtmlTablesWithThead.html | 49 - .../Data/SimpleHtmlTablesWithTr.html | 43 - .../FSharp.Data.Core.Tests/Data/SmallTest.csv | 4 - .../Data/TabSeparated.csv | 5 - .../FSharp.Data.Core.Tests/Data/TimeSpans.csv | 2 - .../Data/TimeSpans.json | 7 - .../FSharp.Data.Core.Tests/Data/TimeSpans.xml | 7 - tests/FSharp.Data.Core.Tests/Data/Titanic.csv | 892 - .../Data/TwitterSample.json | 32 - .../Data/TwitterStream.json | 96 - .../Data/TypeInference.json | 12 - .../Data/TypeInference.xml | 4 - .../Data/UKDepartures.html | 1396 - .../Data/UKLiveProgress.html | 89 - .../Data/Vindinium.json | 107 - .../FSharp.Data.Core.Tests/Data/WikiData.json | 12 - .../Data/WorldBank.json | 699 - tests/FSharp.Data.Core.Tests/Data/Writers.xml | 4 - .../FSharp.Data.Core.Tests/Data/banklist.csv | 498 - .../Data/charrefs-full.json | 2234 -- .../FSharp.Data.Core.Tests/Data/charrefs.json | 2245 -- .../FSharp.Data.Core.Tests/Data/contacts.json | 58 - tests/FSharp.Data.Core.Tests/Data/cp932.csv | 4 - .../Data/doctor_who.html | 5742 ---- .../Data/doctor_who2.html | 2425 -- .../Data/doctor_who3.html | 7031 ---- .../FSharp.Data.Core.Tests/Data/ebay_cars.htm | 6078 ---- .../Data/emptyMissingValue.csv | 3 - .../Data/emptyValue.xml | 1 - .../Data/file with spaces.csv | 4 - .../Data/heterogeneous.xml | 6 - tests/FSharp.Data.Core.Tests/Data/homonim.xsd | 16 - .../Data/imdb_chart.htm | 13481 -------- .../Data/list_of_counties_wikipedia.html | 1306 - .../Data/missingInnerValue.xml | 6 - .../Data/optionals.json | 23 - .../Data/optionals1.xml | 13 - .../Data/optionals2.xml | 17 - .../Data/optionals3.xml | 20 - tests/FSharp.Data.Core.Tests/Data/po.xsd | 76 - .../FSharp.Data.Core.Tests/Data/projects.json | 8 - .../FSharp.Data.Core.Tests/Data/projects.xml | 11 - tests/FSharp.Data.Core.Tests/Data/reddit.json | 1 - .../Data/rottentomatoes.html | 20023 ----------- .../Data/search.atom.xml | 297 - .../Data/tendulkarHistoryWithGameNumber.csv | 201 - tests/FSharp.Data.Core.Tests/Data/topics.json | 5619 ---- .../Data/us_presidents_wikipedia.html | 7196 ---- .../Data/w3c_html_tables.html | 513 - .../Data/wimbledon_wikipedia.html | 2515 -- tests/FSharp.Data.Core.Tests/Data/zoopla.html | 27849 ---------------- .../FSharp.Data.Core.Tests/Data/zoopla2.html | 8285 ----- .../FSharp.Data.Core.Tests.fsproj | 2 +- tests/FSharp.Data.Core.Tests/HtmlParser.fs | 20 +- 82 files changed, 43 insertions(+), 129999 deletions(-) create mode 100644 nuget/FSharp.Data.Core.nuspec delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Adwords.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/AirQuality.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Cars.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Dates.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/DoubleNested.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Empty.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/GDP.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/GitHub.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd delete mode 100644 tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/LastFM.tsv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/MSFT.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Nested.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/NuGet.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/OptionValues.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Philosophy.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Simple.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleArray.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/SmallTest.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Titanic.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TwitterSample.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TwitterStream.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TypeInference.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/TypeInference.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/UKDepartures.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Vindinium.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/WikiData.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/WorldBank.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/Writers.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/banklist.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/charrefs-full.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/charrefs.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/contacts.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/cp932.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who2.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/doctor_who3.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm delete mode 100644 tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/emptyValue.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/file with spaces.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/homonim.xsd delete mode 100644 tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm delete mode 100644 tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals1.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals2.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/optionals3.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/po.xsd delete mode 100644 tests/FSharp.Data.Core.Tests/Data/projects.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/projects.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/reddit.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/search.atom.xml delete mode 100644 tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv delete mode 100644 tests/FSharp.Data.Core.Tests/Data/topics.json delete mode 100644 tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/zoopla.html delete mode 100644 tests/FSharp.Data.Core.Tests/Data/zoopla2.html diff --git a/nuget/FSharp.Data.Core.nuspec b/nuget/FSharp.Data.Core.nuspec new file mode 100644 index 000000000..99ddd79ce --- /dev/null +++ b/nuget/FSharp.Data.Core.nuspec @@ -0,0 +1,32 @@ + + + + @project@ + FSharp.Data + @build.number@ + @authors@ + @authors@ + Apache-2.0 + https://fsprojects.github.io/FSharp.Data + https://raw.github.com/fsharp/FSharp.Data/master/misc/logo.png + false + @summary@ + @description@ + @releaseNotes@ + Copyright 2021 + @tags@ + + + + + + + + + + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/Data/Adwords.csv b/tests/FSharp.Data.Core.Tests/Data/Adwords.csv deleted file mode 100644 index a85e0a41d..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Adwords.csv +++ /dev/null @@ -1,6 +0,0 @@ -Criteria ID,Name,Canonical Name,Parent ID,Country Code,Target Type,Status -1000010,Abu Dhabi,"Abu Dhabi,Abu Dhabi,United Arab Emirates",9041082,AE,City,Active -1000011,Ajman,"Ajman,Ajman,United Arab Emirates",9047096,AE,City,Active -1000012,Al Ain,"Al Ain,Abu Dhabi,United Arab Emirates",9041082,AE,City,Active -1000013,Dubai,"Dubai,Dubai,United Arab Emirates",9041083,AE,City,Active -2004,Afghanistan,Afghanistan,,AF,Country,Active diff --git a/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv b/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv deleted file mode 100644 index a18a7cc82..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/AirQuality.csv +++ /dev/null @@ -1,154 +0,0 @@ -Ozone;Solar.R;Wind;Temp;Month;Day -41;190;7.4;67;5;1 -36;118;8;72;5;2 -12;149;12.6;74;5;3 -18;313;11.5;62;5;4 -#N/A;#N/A;14.3;56;5;5 -28;#N/A;14.9;66;5;6 -23;299;8.6;65;5;7 -19;99;13.8;59;5;8 -8;19;20.1;61;5;9 -#N/A;194;8.6;69;5;10 -7;#N/A;6.9;74;5;11 -16;256;9.7;69;5;12 -11;290;9.2;66;5;13 -14;274;10.9;68;5;14 -18;65;13.2;58;5;15 -14;334;11.5;64;5;16 -34;307;12;66;5;17 -6;78;18.4;57;5;18 -30;322;11.5;68;5;19 -11;44;9.7;62;5;20 -1;8;9.7;59;5;21 -11;320;16.6;73;5;22 -4;25;9.7;61;5;23 -32;92;12;61;5;24 -#N/A;66;16.6;57;5;25 -#N/A;266;14.9;58;5;26 -#N/A;#N/A;8;57;5;27 -23;13;12;67;5;28 -45;252;14.9;81;5;29 -115;223;5.7;79;5;30 -37;279;7.4;76;5;31 -#N/A;286;8.6;78;6;1 -#N/A;287;9.7;74;6;2 -#N/A;242;16.1;67;6;3 -#N/A;186;9.2;84;6;4 -#N/A;220;8.6;85;6;5 -#N/A;264;14.3;79;6;6 -29;127;9.7;82;6;7 -#N/A;273;6.9;87;6;8 -71;291;13.8;90;6;9 -39;323;11.5;87;6;10 -#N/A;259;10.9;93;6;11 -#N/A;250;9.2;92;6;12 -23;148;8;82;6;13 -#N/A;332;13.8;80;6;14 -#N/A;322;11.5;79;6;15 -21;191;14.9;77;6;16 -37;284;20.7;72;6;17 -20;37;9.2;65;6;18 -12;120;11.5;73;6;19 -13;137;10.3;76;6;20 -#N/A;150;6.3;77;6;21 -#N/A;59;1.7;76;6;22 -#N/A;91;4.6;76;6;23 -#N/A;250;6.3;76;6;24 -#N/A;135;8;75;6;25 -#N/A;127;8;78;6;26 -#N/A;47;10.3;73;6;27 -#N/A;98;11.5;80;6;28 -#N/A;31;14.9;77;6;29 -#N/A;138;8;83;6;30 -135;269;4.1;84;7;1 -49;248;9.2;85;7;2 -32;236;9.2;81;7;3 -#N/A;101;10.9;84;7;4 -64;175;4.6;83;7;5 -40;314;10.9;83;7;6 -77;276;5.1;88;7;7 -97;267;6.3;92;7;8 -97;272;5.7;92;7;9 -85;175;7.4;89;7;10 -#N/A;139;8.6;82;7;11 -10;264;14.3;73;7;12 -27;175;14.9;81;7;13 -#N/A;291;14.9;91;7;14 -7;48;14.3;80;7;15 -48;260;6.9;81;7;16 -35;274;10.3;82;7;17 -61;285;6.3;84;7;18 -79;187;5.1;87;7;19 -63;220;11.5;85;7;20 -16;7;6.9;74;7;21 -#N/A;258;9.7;81;7;22 -#N/A;295;11.5;82;7;23 -80;294;8.6;86;7;24 -108;223;8;85;7;25 -20;81;8.6;82;7;26 -52;82;12;86;7;27 -82;213;7.4;88;7;28 -50;275;7.4;86;7;29 -64;253;7.4;83;7;30 -59;254;9.2;81;7;31 -39;83;6.9;81;8;1 -9;24;13.8;81;8;2 -16;77;7.4;82;8;3 -78;#N/A;6.9;86;8;4 -35;#N/A;7.4;85;8;5 -66;#N/A;4.6;87;8;6 -122;255;4;89;8;7 -89;229;10.3;90;8;8 -110;207;8;90;8;9 -#N/A;222;8.6;92;8;10 -#N/A;137;11.5;86;8;11 -44;192;11.5;86;8;12 -28;273;11.5;82;8;13 -65;157;9.7;80;8;14 -#N/A;64;11.5;79;8;15 -22;71;10.3;77;8;16 -59;51;6.3;79;8;17 -23;115;7.4;76;8;18 -31;244;10.9;78;8;19 -44;190;10.3;78;8;20 -21;259;15.5;77;8;21 -9;36;14.3;72;8;22 -#N/A;255;12.6;75;8;23 -45;212;9.7;79;8;24 -168;238;3.4;81;8;25 -73;215;8;86;8;26 -#N/A;153;5.7;88;8;27 -76;203;9.7;97;8;28 -118;225;2.3;94;8;29 -84;237;6.3;96;8;30 -85;188;6.3;94;8;31 -96;167;6.9;91;9;1 -78;197;5.1;92;9;2 -73;183;2.8;93;9;3 -91;189;4.6;93;9;4 -47;95;7.4;87;9;5 -32;92;15.5;84;9;6 -20;252;10.9;80;9;7 -23;220;10.3;78;9;8 -21;230;10.9;75;9;9 -24;259;9.7;73;9;10 -44;236;14.9;81;9;11 -21;259;15.5;76;9;12 -28;238;6.3;77;9;13 -9;24;10.9;71;9;14 -13;112;11.5;71;9;15 -46;237;6.9;78;9;16 -18;224;13.8;67;9;17 -13;27;10.3;76;9;18 -24;238;10.3;68;9;19 -16;201;8;82;9;20 -13;238;12.6;64;9;21 -23;14;9.2;71;9;22 -36;139;10.3;81;9;23 -7;49;10.3;69;9;24 -14;20;16.6;63;9;25 -30;193;6.9;70;9;26 -#N/A;145;13.2;77;9;27 -14;191;14.3;75;9;28 -18;131;8;76;9;29 -20;223;11.5;68;9;30 diff --git a/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml b/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml deleted file mode 100644 index 5f823969c..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/AnyFeed.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - Example Feed - A subtitle. - - - urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6 - 2003-12-13T18:30:02Z - - - - Atom-Powered Robots Run Amok - - - - urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a - 2003-12-13T18:30:02Z - Some text. - - John Doe - johndoe@example.com - - - - - - - - W3Schools Home Page - http://www.w3schools.com - Free web building tutorials - - RSS Tutorial - http://www.w3schools.com/rss - New RSS tutorial on W3Schools - - - XML Tutorial - http://www.w3schools.com/xml - New XML tutorial on W3Schools - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/Cars.xml b/tests/FSharp.Data.Core.Tests/Data/Cars.xml deleted file mode 100644 index 82cf578d6..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Cars.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Audi - BMW - - Trabant - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Dates.json b/tests/FSharp.Data.Core.Tests/Data/Dates.json deleted file mode 100644 index 6d700db8c..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Dates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "birthdate": "\/Date(869080830450)\/", - "anniversary": "1997-07-16T19:20:30.45+01:00", - "NoTimeZone": "1997-07-16T19:20:30", - "UtcTime": "1997-07-16T19:50:30Z" -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json b/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json deleted file mode 100644 index 7419b320c..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/DictionaryInference.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "rec": { "0": "111", "1": "222" }, - "rec2": { "0": { "a": "10" }, "1": { "a": "20" } } - }, - { - "rec": { "0": "333" }, - "rec2": { "1": { "a": "30" }, "1": { "a": "40" } } - } -] diff --git a/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv b/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv deleted file mode 100644 index 203dafad1..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/DnbHistoriskeKurser.csv +++ /dev/null @@ -1,533 +0,0 @@ -Dato,USD,EUR,SEK,DKK,GBP,CHF,JPY,CAD,ISK,AUD -07.02.2013,5.4970,7.4366,86.52,99.70,8.6100,603.77,5.8779,5.5188,4.3260,5.6776 -06.02.2013,5.4912,7.4376,86.56,99.70,8.5910,601.61,5.8529,5.5102,4.3275,5.6694 -05.02.2013,5.4962,7.4037,86.71,99.25,8.6458,603.68,5.9612,5.5031,4.3238,5.7251 -04.02.2013,5.4639,7.4459,86.65,99.80,8.5838,601.25,5.8916,5.4812,4.3444,5.6953 -01.02.2013,5.4573,7.4369,86.34,99.68,8.6623,600.32,5.9266,5.4690,4.3162,5.6796 -31.01.2013,5.4833,7.4312,86.20,99.61,8.6784,601.40,6.0309,5.4688,4.2524,5.7013 -30.01.2013,5.4897,7.4180,86.34,99.44,8.6540,595.64,6.0293,5.4828,4.2642,5.7458 -29.01.2013,5.5316,7.4336,86.06,99.64,8.6924,597.72,6.1015,5.5022,4.2981,5.7847 -28.01.2013,5.5368,7.4379,85.53,99.67,8.7033,596.35,6.1038,5.4904,4.3028,5.7613 -25.01.2013,5.5226,7.4055,85.17,99.25,8.7199,595.01,6.0996,5.5064,4.2979,5.7764 -24.01.2013,5.5684,7.4090,85.26,99.29,8.8156,598.01,6.2377,5.5676,4.3071,5.8566 -23.01.2013,5.5770,7.4171,85.51,99.38,8.8228,600.10,6.3167,5.6240,4.3305,5.8862 -22.01.2013,5.5801,7.4553,85.91,99.89,8.8450,599.27,6.2627,5.6271,4.3574,5.8962 -21.01.2013,5.5965,7.4559,85.94,99.90,8.8872,599.74,6.2461,5.6476,4.3586,5.8856 -18.01.2013,5.5683,7.4585,85.74,99.94,8.9020,594.74,6.1856,5.6402,4.3375,5.8581 -17.01.2013,5.5642,7.3962,85.57,99.11,8.8972,594.94,6.2801,5.6406,4.3110,5.8483 -16.01.2013,5.5850,7.4172,85.66,99.40,8.9525,599.92,6.3387,5.6657,4.3243,5.8958 -15.01.2013,5.5240,7.3700,85.56,98.76,8.8711,598.03,6.2136,5.6089,4.2964,5.8260 -14.01.2013,5.5157,7.3792,85.37,98.88,8.9004,604.03,6.1711,5.6071,4.3140,5.8254 -11.01.2013,5.5240,7.3317,85.12,98.26,8.9229,603.22,6.2040,5.6158,4.3049,5.8408 -10.01.2013,5.5934,7.3092,85.21,97.97,8.9631,604.59,6.3360,5.6748,4.3184,5.9103 -09.01.2013,5.5996,7.3223,85.35,98.15,8.9854,605.72,6.4010,5.6748,4.3344,5.8883 -08.01.2013,5.5822,7.3213,85.78,98.14,8.9823,605.54,6.3884,5.6595,4.3397,5.8527 -07.01.2013,5.6145,7.3182,85.63,98.12,9.0062,605.30,6.3968,5.6876,4.3354,5.8832 -04.01.2013,5.6026,7.2881,85.58,97.71,8.9955,602.92,6.3608,5.6566,4.3147,5.8466 -03.01.2013,5.5665,7.3119,85.47,98.01,9.0305,604.10,6.3880,5.6539,4.3237,5.8451 -02.01.2013,5.5228,7.3312,85.60,98.27,9.0088,606.53,6.3320,5.5958,4.3331,5.7860 -31.12.2012,5.5912,7.3756,85.70,98.86,9.0399,610.89,6.4946,5.6258,4.3322,5.8073 -28.12.2012,5.5752,7.3880,85.68,99.04,8.9892,611.01,6.4595,5.6072,4.3636,5.7929 -27.12.2012,5.5797,7.3934,85.69,99.12,9.0068,611.31,6.5153,5.6227,4.3992,5.7898 -21.12.2012,5.5788,7.3637,85.30,98.69,9.0650,610.07,6.6430,5.6332,4.4199,5.8251 -20.12.2012,5.5772,7.3694,85.07,98.78,9.0624,610.23,6.6459,5.6441,4.4332,5.8513 -19.12.2012,5.5906,7.4022,84.66,99.23,9.0981,612.97,6.6263,5.6726,4.4481,5.8861 -18.12.2012,5.6096,7.3859,84.31,98.99,9.0898,611.10,6.6821,5.7028,4.4431,5.9100 -17.12.2012,5.6225,7.3972,84.28,99.14,9.1034,612.24,6.6927,5.7003,4.4604,5.9236 -14.12.2012,5.6088,7.3540,84.23,98.57,9.0498,608.36,6.7043,5.7055,4.4330,5.9204 -13.12.2012,5.6166,7.3507,84.40,98.53,9.0646,606.51,6.7249,5.7123,4.4346,5.9308 -12.12.2012,5.6484,7.3449,85.08,98.47,9.0939,605.95,6.8234,5.7295,4.4484,5.9514 -11.12.2012,5.6733,7.3427,84.79,98.44,9.1204,606.74,6.8859,5.7521,4.4797,5.9465 -10.12.2012,5.6876,7.3344,84.95,98.33,9.1132,607.49,6.9049,5.7599,4.4835,5.9637 -07.12.2012,5.6690,7.3310,85.19,98.30,9.0930,606.50,6.8783,5.7150,4.4878,5.9380 -06.12.2012,5.6347,7.3530,85.28,98.58,9.0629,607.68,6.8357,5.6804,4.4973,5.8942 -05.12.2012,5.6120,7.3615,85.05,98.68,9.0398,606.21,6.8239,5.6633,4.5024,5.8805 -04.12.2012,5.6288,7.3577,85.07,98.63,9.0635,608.29,6.8694,5.6631,4.5016,5.8874 -03.12.2012,5.6676,7.3863,85.14,99.01,9.0897,612.61,6.8857,5.7084,4.5178,5.9014 -30.11.2012,5.6663,7.3772,85.24,98.89,9.0995,612.34,6.8583,5.7100,4.5189,5.9131 -29.11.2012,5.6624,7.3416,85.24,98.42,9.0706,609.81,6.8894,5.7095,4.5036,5.9237 -28.11.2012,5.6982,7.3635,85.06,98.73,9.1217,611.69,6.9601,5.7346,4.5134,5.9606 -27.11.2012,5.6427,7.3313,85.53,98.29,9.0537,608.48,6.8588,5.6868,4.4933,5.9104 -26.11.2012,5.6626,7.3458,85.46,98.49,9.0760,609.96,6.8905,5.7086,4.5117,5.9234 -23.11.2012,5.6732,7.3221,85.23,98.18,9.0561,607.77,6.8908,5.6911,4.5016,5.9078 -22.11.2012,5.7100,7.3359,84.97,98.37,9.1143,608.90,6.9179,5.7326,4.5112,5.9278 -21.11.2012,5.7504,7.3395,84.65,98.42,9.1426,609.25,7.0076,5.7616,4.5167,5.9600 -20.11.2012,5.7505,7.3540,85.25,98.60,9.1507,610.55,7.0845,5.7683,4.5322,5.9836 -19.11.2012,5.7773,7.3739,85.27,98.86,9.1876,611.71,7.1070,5.7779,4.5419,5.9908 -16.11.2012,5.7652,7.3550,85.14,98.61,9.1569,610.69,7.1070,5.7649,4.4825,5.9598 -15.11.2012,5.7720,7.3525,84.93,98.54,9.1451,610.19,7.1325,5.7586,4.4695,5.9786 -14.11.2012,5.7568,7.3293,84.96,98.28,9.1481,608.64,7.2050,5.7571,4.4666,6.0173 -13.11.2012,5.7550,7.3022,84.94,97.92,9.1349,606.01,7.2582,5.7504,4.4554,5.9924 -12.11.2012,5.7458,7.3021,85.11,97.91,9.1341,605.49,7.2320,5.7518,4.4598,5.9857 -09.11.2012,5.7266,7.3040,85.65,97.92,9.1537,605.77,7.2060,5.7326,4.4702,5.9703 -08.11.2012,5.7365,7.3241,85.79,98.19,9.1695,607.26,7.1814,5.7587,4.4825,5.9760 -07.11.2012,5.6915,7.3240,85.37,98.17,9.1223,606.02,7.0904,5.7585,4.4690,5.9587 -06.11.2012,5.7292,7.3245,85.73,98.19,9.1587,606.68,7.1552,5.7560,4.5020,5.9747 -05.11.2012,5.7457,7.3502,85.68,98.54,9.2017,609.07,7.1517,5.7708,4.5183,5.9517 -02.11.2012,5.6980,7.3530,85.30,98.57,9.1715,609.31,7.0924,5.7183,4.5051,5.9188 -01.11.2012,5.7162,7.3970,85.73,99.16,9.2208,612.44,7.1470,5.7153,4.4873,5.9246 -31.10.2012,5.7321,7.4377,86.43,99.71,9.2235,615.33,7.1903,5.7419,4.5042,5.9508 -30.10.2012,5.7577,7.4467,86.27,99.83,9.2402,616.03,7.2451,5.7557,4.5197,5.9693 -29.10.2012,5.7842,7.4642,85.97,100.07,9.2929,617.41,7.2620,5.7891,4.5361,5.9852 -26.10.2012,5.7792,7.4716,85.95,100.17,9.3138,617.60,7.2367,5.8056,4.5393,5.9673 -25.10.2012,5.7338,7.4531,86.03,99.92,9.2136,615.84,7.1529,5.7745,4.5375,5.9480 -24.10.2012,5.7218,7.4340,86.14,99.67,9.1463,614.09,7.1711,5.7746,4.5480,5.9018 -23.10.2012,5.6805,7.4054,86.07,99.29,9.0962,611.96,7.1122,5.7185,4.5562,5.8586 -22.10.2012,5.6541,7.3828,86.02,98.99,9.0669,610.50,7.0987,5.6957,4.5504,5.8336 -19.10.2012,5.6452,7.3695,85.90,98.80,9.0552,609.67,7.1179,5.7262,4.5644,5.8481 -18.10.2012,5.6326,7.3824,85.87,98.97,9.0916,610.02,7.1173,5.7614,4.5982,5.8497 -17.10.2012,5.6470,7.4024,85.67,99.24,9.1126,611.58,7.1726,5.7278,4.6260,5.8263 -16.10.2012,5.7005,7.4015,85.78,99.24,9.1660,612.00,7.2276,5.8093,4.6363,5.8585 -15.10.2012,5.7214,7.3923,85.17,99.11,9.1714,611.42,7.2828,5.8385,4.6406,5.8516 -12.10.2012,5.7031,7.3812,85.17,98.96,9.1449,610.32,7.2707,5.8305,4.6421,5.8631 -11.10.2012,5.7377,7.3744,85.63,98.87,9.1849,610.30,7.3541,5.8503,4.6587,5.8918 -10.10.2012,5.7397,7.3850,85.56,99.02,9.1801,610.05,7.3351,5.8655,4.6651,5.8663 -09.10.2012,5.7109,7.4102,86.15,99.36,9.1603,611.09,7.2890,5.8534,4.6834,5.8374 -08.10.2012,5.6955,7.3976,85.98,99.22,9.1658,610.22,7.2517,5.8281,4.6740,5.7932 -05.10.2012,5.7055,7.4186,86.18,99.50,9.2324,612.21,7.2793,5.8210,4.6686,5.8496 -04.10.2012,5.7362,7.4269,86.20,99.61,9.2476,612.22,7.2998,5.8200,4.6756,5.8719 -03.10.2012,5.7296,7.3875,86.17,99.09,9.2281,610.41,7.3222,5.8065,4.6505,5.8485 -02.10.2012,5.7263,7.3803,86.84,98.99,9.2457,610.19,7.3395,5.8286,4.6238,5.9007 -01.10.2012,5.7368,7.3686,87.28,98.85,9.2552,609.42,7.3709,5.8316,4.6132,5.9407 -28.09.2012,5.7083,7.3783,87.43,98.96,9.2771,609.63,7.3646,5.8319,4.6055,5.9712 -27.09.2012,5.7520,7.4140,87.34,99.44,9.3148,613.12,7.4028,5.8559,4.6281,5.9870 -26.09.2012,5.7420,7.3897,87.15,99.10,9.2825,611.27,7.3843,5.8526,4.6174,5.9467 -25.09.2012,5.7522,7.4224,87.30,99.54,9.3373,613.60,7.3955,5.8747,4.6335,5.9987 -24.09.2012,5.7568,7.4525,87.54,99.96,9.3398,615.27,7.3739,5.8824,4.6529,5.9954 -21.09.2012,5.7237,7.4319,87.64,99.69,9.2993,614.03,7.3231,5.8714,4.6419,5.9907 -20.09.2012,5.7393,7.4419,87.54,99.83,9.2839,615.90,7.3468,5.8549,4.6498,5.9583 -19.09.2012,5.7117,7.4632,87.19,100.12,9.2861,615.52,7.2199,5.8693,4.6731,5.9759 -18.09.2012,5.7109,7.4821,86.65,100.36,9.2808,616.36,7.2593,5.8624,4.6980,5.9727 -17.09.2012,5.6995,7.4755,86.73,100.28,9.2451,614.79,7.2734,5.8704,4.6982,5.9998 -14.09.2012,5.6855,7.4182,86.92,99.51,9.2102,610.06,7.3257,5.8887,4.6897,6.0172 -13.09.2012,5.7420,7.4161,87.38,99.49,9.2509,613.10,7.3862,5.8802,4.7232,6.0035 -12.09.2012,5.7592,7.4135,87.29,99.48,9.2666,613.17,7.3940,5.9218,4.7300,6.0325 -11.09.2012,5.7816,7.4031,87.25,99.35,9.2639,612.75,7.3952,5.9323,4.7316,5.9837 -10.09.2012,5.7409,7.3400,86.65,98.50,9.1843,607.02,7.3366,5.8691,4.6960,5.9444 -07.09.2012,5.8420,7.3840,86.66,99.10,9.3101,611.25,7.4006,5.9561,4.7448,6.0316 -06.09.2012,5.8217,7.3484,86.59,98.62,9.2600,609.51,7.4256,5.8799,4.7348,5.9553 -05.09.2012,5.8253,7.2971,86.53,97.94,9.2360,607.47,7.4312,5.8975,4.7287,5.9363 -04.09.2012,5.7925,7.3093,86.83,98.09,9.2069,608.55,7.3903,5.8816,4.7402,5.9561 -03.09.2012,5.8105,7.3029,87.08,98.01,9.2146,608.08,7.4199,5.8933,4.7637,5.9619 -31.08.2012,5.8175,7.2768,87.09,97.68,9.1838,605.89,7.4184,5.8677,4.7488,5.9976 -30.08.2012,5.8182,7.3021,87.45,98.00,9.2125,607.93,7.3985,5.8755,4.7639,6.0140 -29.08.2012,5.8432,7.3358,88.12,98.47,9.2413,610.73,7.4379,5.9139,4.8063,6.0632 -28.08.2012,5.8189,7.2640,88.39,97.53,9.1822,604.72,7.4088,5.8756,4.7863,6.0368 -27.08.2012,5.8421,7.3000,88.30,98.01,9.2358,607.76,7.4223,5.8949,4.8264,6.0679 -24.08.2012,5.8407,7.3292,88.43,98.41,9.2660,610.22,7.4309,5.8810,4.8744,6.0869 -23.08.2012,5.8457,7.3442,88.18,98.61,9.2982,611.44,7.4486,5.9146,4.9171,6.1488 -22.08.2012,5.8882,7.3393,88.34,98.56,9.2954,610.97,7.4233,5.9468,4.9506,6.1523 -21.08.2012,5.9195,7.3204,88.80,98.32,9.3111,609.47,7.4656,5.9947,4.9463,6.2116 -20.08.2012,5.9153,7.3098,88.67,98.17,9.2914,608.53,7.4406,5.9826,4.9444,6.1800 -17.08.2012,5.9478,7.3571,88.75,98.81,9.3508,612.51,7.4909,6.0234,4.9795,6.2187 -16.08.2012,5.9604,7.3101,88.94,98.21,9.3268,608.61,7.5220,6.0240,4.9598,6.2486 -15.08.2012,5.9425,7.3266,88.69,98.45,9.3101,609.73,7.5274,5.9863,4.9585,6.2230 -14.08.2012,5.9174,7.3154,88.59,98.28,9.2850,608.94,7.5362,5.9654,4.9528,6.2278 -13.08.2012,5.9233,7.2753,88.74,97.75,9.2797,605.75,7.5658,5.9771,4.9449,6.2494 -10.08.2012,5.9418,7.2998,88.47,98.08,9.2787,607.76,7.5759,5.9801,4.9608,6.2511 -09.08.2012,5.8780,7.2749,87.98,97.74,9.2114,605.51,7.4879,5.9174,4.9318,6.2304 -08.08.2012,5.9441,7.3514,88.23,98.75,9.2603,611.88,7.5837,5.9563,4.9739,6.2654 -07.08.2012,5.9560,7.3792,88.60,99.15,9.2780,614.18,7.6105,5.9539,4.9793,6.2994 -06.08.2012,5.9867,7.4082,88.71,99.55,9.3455,616.45,7.6400,5.9822,5.0004,6.3246 -03.08.2012,6.0422,7.3694,89.03,99.03,9.3817,613.39,7.7236,6.0121,4.9874,6.3398 -02.08.2012,6.0242,7.3781,89.11,99.14,9.3694,613.87,7.6781,5.9939,4.9838,6.3143 -01.08.2012,6.0271,7.4191,88.90,99.70,9.4457,617.56,7.7172,6.0175,5.0015,6.3306 -31.07.2012,6.0441,7.4176,88.96,99.72,9.4971,617.47,7.7251,6.0378,4.9929,6.3587 -30.07.2012,6.0674,7.4493,88.10,100.14,9.5264,620.17,7.7400,6.0369,4.9923,6.3456 -27.07.2012,6.0095,7.3896,87.81,99.34,9.4289,615.25,7.6710,5.9624,4.9111,6.2694 -26.07.2012,6.0751,7.3846,87.18,99.27,9.4091,614.80,7.7707,5.9909,4.8853,6.2838 -25.07.2012,6.1094,7.3682,87.50,99.04,9.4671,613.49,7.8185,5.9837,4.8924,6.2441 -24.07.2012,6.0881,7.3736,87.68,99.12,9.4460,613.87,7.7813,5.9772,4.8867,6.2656 -23.07.2012,6.0937,7.3725,87.36,99.09,9.4848,613.88,7.8114,5.9980,4.8865,6.2829 -20.07.2012,6.0608,7.4296,87.33,99.88,9.5139,618.54,7.7129,6.0121,4.8621,6.3084 -19.07.2012,6.0972,7.4925,87.89,100.72,9.5467,623.72,7.7573,6.0371,4.8550,6.3377 -18.07.2012,6.0772,7.4661,87.28,100.33,9.5108,621.61,7.6956,6.0037,4.8066,6.2653 -17.07.2012,6.0870,7.4781,86.60,100.50,9.5250,622.18,7.7071,6.0056,4.8032,6.2704 -16.07.2012,6.1120,7.4734,86.73,100.46,9.5066,622.18,7.7338,6.0223,4.7496,6.2498 -13.07.2012,6.1029,7.4416,86.92,100.05,9.4156,619.62,7.6998,5.9935,4.7282,6.2015 -12.07.2012,6.1172,7.4798,87.18,100.58,9.4670,622.77,7.7101,5.9928,4.7570,6.2209 -11.07.2012,6.1008,7.4823,87.44,100.60,9.4726,622.94,7.6903,5.9770,4.7527,6.2377 -10.07.2012,6.0862,7.4869,86.82,100.65,9.4427,623.30,7.6633,5.9689,4.7454,6.1997 -09.07.2012,6.1185,7.5236,87.01,101.14,9.4818,626.29,7.6808,6.0068,4.7643,6.2357 -06.07.2012,6.0565,7.4940,86.79,100.72,9.4006,623.83,7.5848,5.9673,4.7292,6.2143 -05.07.2012,5.9927,7.5092,86.73,100.97,9.3519,624.99,7.5247,5.9184,4.7259,6.1524 -04.07.2012,5.9678,7.5173,85.90,101.11,9.3551,625.72,7.4822,5.8933,4.7478,6.1418 -03.07.2012,5.9629,7.5171,86.19,101.11,9.3594,625.66,7.4751,5.8736,4.7583,6.1212 -02.07.2012,5.9765,7.5528,86.25,101.58,9.3628,628.81,7.5072,5.8720,4.7787,6.1208 -29.06.2012,5.9932,7.5457,85.99,101.52,9.3737,627.92,7.5310,5.8507,4.7796,6.0996 -28.06.2012,6.0279,7.5364,85.61,101.38,9.4062,627.42,7.5880,5.8904,4.7736,6.0975 -27.06.2012,6.0242,7.5269,85.14,101.25,9.4167,626.64,7.5709,5.8764,4.7662,6.0582 -26.06.2012,6.0090,7.5128,85.00,101.07,9.3644,625.51,7.5490,5.8448,4.7558,6.0243 -25.06.2012,5.9839,7.4838,84.97,100.68,9.3199,623.10,7.4724,5.8297,4.7358,5.9962 -22.06.2012,5.9721,7.4863,85.00,100.71,9.3164,623.29,7.4261,5.8052,4.7337,5.9897 -21.06.2012,5.9168,7.5027,84.89,100.93,9.2798,624.49,7.4350,5.7942,4.7370,6.0129 -20.06.2012,5.9377,7.5358,85.21,101.38,9.3421,627.43,7.5237,5.8301,4.7587,6.0544 -19.06.2012,5.9753,7.5256,85.17,101.26,9.3705,626.57,7.5656,5.8412,4.7656,6.0509 -18.06.2012,5.9430,7.5408,85.30,101.48,9.3192,627.79,7.4972,5.8262,4.7569,6.0134 -15.06.2012,5.9551,7.5161,84.89,101.15,9.2265,624.53,7.5063,5.8176,4.6784,5.9528 -14.06.2012,5.9845,7.5180,85.07,101.17,9.2645,625.69,7.5361,5.8223,4.6701,5.9512 -13.06.2012,6.0165,7.5233,85.15,101.24,9.3548,626.36,7.5622,5.8558,4.6443,5.9867 -12.06.2012,6.0314,7.5402,85.15,101.45,9.3384,627.78,7.5771,5.8572,4.6562,5.9738 -11.06.2012,6.0064,7.5864,85.21,102.07,9.3388,631.36,7.5505,5.8823,4.6708,5.9953 -08.06.2012,6.0834,7.5973,84.66,102.20,9.3964,632.47,7.6704,5.8951,4.7051,5.9931 -07.06.2012,6.0737,7.6240,84.61,102.57,9.3814,634.69,7.6562,5.9042,4.7204,6.0363 -06.06.2012,6.0794,7.5983,84.58,102.24,9.3902,632.58,7.7042,5.8872,4.7049,5.9879 -05.06.2012,6.0774,7.5910,84.66,102.15,9.3452,631.91,7.7538,5.8586,4.6986,5.9440 -04.06.2012,6.1261,7.6065,84.48,102.37,9.4164,633.22,7.8359,5.8783,4.7118,5.9236 -01.06.2012,6.1177,7.5618,84.08,101.75,9.4096,629.49,7.7962,5.9137,4.6788,5.9351 -31.05.2012,6.0759,7.5314,83.93,101.34,9.4025,626.93,7.7135,5.9118,4.6457,5.9103 -30.05.2012,6.0360,7.5260,83.51,101.28,9.4210,626.50,7.6001,5.8879,4.6340,5.9108 -29.05.2012,5.9970,7.5301,83.87,101.34,9.4182,626.54,7.5433,5.8710,4.6296,5.9271 -25.05.2012,6.0311,7.5699,84.03,101.86,9.4465,629.91,7.5730,5.8751,N/A,5.8897 -24.05.2012,5.9937,7.5416,83.72,101.48,9.4020,627.84,7.5430,5.8509,N/A,5.8591 -23.05.2012,5.9830,7.5838,83.48,102.04,9.4244,631.42,7.5211,5.8519,N/A,5.8469 -22.05.2012,5.9406,7.5959,83.48,102.21,9.4031,632.35,7.4743,5.8485,N/A,5.8957 -21.05.2012,5.9620,7.6179,83.59,102.49,9.4262,634.09,7.5202,5.8514,N/A,5.8657 -18.05.2012,6.0116,7.6104,83.19,102.39,9.4782,633.63,7.5847,5.8900,N/A,5.9061 -16.05.2012,6.0320,7.6555,83.62,102.99,9.6271,637.33,7.5034,5.9637,N/A,5.9672 -15.05.2012,5.9223,7.6140,84.26,102.43,9.5379,633.84,7.4084,5.9220,N/A,5.9261 -14.05.2012,5.8848,7.5808,84.26,101.99,9.4598,630.98,7.3532,5.8739,N/A,5.8851 -11.05.2012,5.8856,7.6024,84.43,102.28,9.4829,632.89,7.3773,5.8607,N/A,5.9012 -10.05.2012,5.8260,7.5480,84.72,101.55,9.4012,628.26,7.3070,5.8273,N/A,5.8971 -09.05.2012,5.8413,7.5791,85.11,101.94,9.4276,630.98,7.3208,5.8375,N/A,5.8877 -08.05.2012,5.8116,7.5626,84.89,101.70,9.3869,629.54,7.2800,5.8417,N/A,5.9113 -07.05.2012,5.8253,7.5746,84.94,101.86,9.4035,630.61,7.2953,5.8437,N/A,5.9170 -04.05.2012,5.7434,7.5531,84.95,101.55,9.2980,628.62,7.1631,5.8140,N/A,5.8953 -03.05.2012,5.7461,7.5544,85.11,101.56,9.2960,628.71,7.1594,5.8303,N/A,5.9182 -02.05.2012,5.7300,7.5751,85.18,101.84,9.2964,630.33,7.1145,5.8117,N/A,5.9217 -30.04.2012,5.7177,7.5822,85.18,101.93,9.3118,631.06,7.1355,5.8317,N/A,5.9799 -27.04.2012,5.7646,7.5856,85.33,101.98,9.3139,631.22,7.1362,5.8426,N/A,5.9701 -26.04.2012,5.7125,7.5588,85.07,101.61,9.2477,629.03,7.0342,5.8178,N/A,5.9299 -25.04.2012,5.7189,7.5547,85.01,101.54,9.2320,628.55,7.0257,5.7969,N/A,5.9028 -24.04.2012,5.7246,7.5445,84.98,101.41,9.2398,627.66,7.0692,5.7818,N/A,5.8892 -23.04.2012,5.7385,7.5536,85.44,101.54,9.2393,628.50,7.0697,5.7734,N/A,5.9264 -20.04.2012,5.7416,7.5468,84.90,101.45,9.2213,628.01,7.0389,5.7425,N/A,5.9342 -19.04.2012,5.7539,7.5445,85.41,101.42,9.2367,627.64,7.0626,5.8100,N/A,5.9625 -18.04.2012,5.7392,7.5247,84.81,101.15,9.1319,626.17,7.0628,5.8013,N/A,5.9599 -17.04.2012,5.7745,7.5620,85.08,101.66,9.1685,628.59,7.1742,5.7713,N/A,5.9573 -16.04.2012,5.8288,7.5833,85.29,101.94,9.2255,630.86,7.2354,5.8262,N/A,6.0214 -13.04.2012,5.7815,7.6102,85.46,102.31,9.2134,633.21,7.1429,5.8062,N/A,6.0050 -12.04.2012,5.7922,7.6075,85.43,102.28,9.2249,632.72,7.1465,5.7893,N/A,6.0201 -11.04.2012,5.7819,7.5899,85.29,102.04,9.2054,631.66,7.1576,5.7735,N/A,5.9562 -10.04.2012,5.7948,7.5883,85.69,101.99,9.2036,631.62,7.1268,5.8154,N/A,5.9713 -04.04.2012,5.7325,7.5686,86.01,101.72,9.1092,628.46,6.9325,5.7819,N/A,5.8939 -03.04.2012,5.6691,7.5609,85.97,101.62,9.0881,627.91,6.9085,5.7313,N/A,5.8950 -02.04.2012,5.6847,7.5868,86.01,101.97,9.1086,629.92,6.8499,5.7055,N/A,5.9192 -30.03.2012,5.7063,7.6259,86.23,102.52,9.1398,632.73,6.9445,5.7269,N/A,5.9394 -29.03.2012,5.7251,7.6367,86.11,102.69,9.1161,633.55,6.9564,5.7403,N/A,5.9510 -28.03.2012,5.6953,7.5901,85.34,102.08,9.0772,629.28,6.8842,5.7173,N/A,5.9348 -27.03.2012,5.6901,7.5912,85.26,102.09,9.0780,629.26,6.8630,5.7426,N/A,5.9834 -26.03.2012,5.7549,7.6281,85.44,102.59,9.1293,632.93,6.9630,5.7661,N/A,6.0130 -23.03.2012,5.7696,7.6390,85.45,102.74,9.1535,633.71,6.9715,5.7722,N/A,6.0047 -22.03.2012,5.7637,7.6225,85.68,102.51,9.1553,632.23,6.9234,5.8055,N/A,5.9911 -21.03.2012,5.7483,7.6182,85.45,102.46,9.1306,631.58,6.8718,5.8166,N/A,6.0389 -20.03.2012,5.7344,7.5843,85.15,102.00,9.0936,628.53,6.8692,5.7996,N/A,6.0421 -19.03.2012,5.7428,7.5564,85.02,101.62,9.0995,626.43,6.9066,5.7923,N/A,6.0894 -16.03.2012,5.7713,7.5471,84.99,101.51,9.0736,625.11,6.9084,5.8111,N/A,6.0757 -15.03.2012,5.8100,7.5790,84.82,101.94,9.0976,625.17,6.9359,5.8538,N/A,6.0934 -14.03.2012,5.7258,7.4693,84.24,100.46,8.9769,617.70,6.8803,5.7793,N/A,6.0215 -13.03.2012,5.6657,7.4566,83.55,100.29,8.8629,618.36,6.8784,5.7200,N/A,5.9714 -12.03.2012,5.7064,7.4805,83.85,100.61,8.9479,620.43,6.9412,5.7614,N/A,6.0120 -09.03.2012,5.6146,7.4214,83.43,99.82,8.8688,615.80,6.8781,5.6705,N/A,5.9675 -08.03.2012,5.6374,7.4295,83.28,99.93,8.8902,616.08,6.9332,5.6635,N/A,5.9861 -07.03.2012,5.6919,7.4769,83.87,100.57,8.9522,620.20,7.0462,5.6962,N/A,6.0143 -06.03.2012,5.6313,7.4271,83.84,99.91,8.9160,615.88,6.9249,5.6531,N/A,5.9807 -05.03.2012,5.6226,7.4128,84.07,99.71,8.8826,614.79,6.9252,5.6705,N/A,6.0204 -02.03.2012,5.5999,7.4305,84.19,99.95,8.9156,616.08,6.8559,5.6705,N/A,6.0286 -01.03.2012,5.5817,7.4320,84.34,99.96,8.8836,616.52,6.8842,5.6441,N/A,5.9950 -29.02.2012,5.5561,7.4785,84.76,100.57,8.8495,620.48,6.9028,5.5944,N/A,6.0086 -28.02.2012,5.5766,7.4972,84.78,100.82,8.8459,621.94,6.9146,5.6029,N/A,6.0107 -27.02.2012,5.5818,7.5120,85.14,101.02,8.8544,623.35,6.8826,5.5754,N/A,5.9572 -24.02.2012,5.6111,7.5037,84.78,100.91,8.8257,622.04,6.9643,5.6221,N/A,6.0103 -23.02.2012,5.6473,7.4962,84.82,100.81,8.8586,621.92,7.0477,5.6549,N/A,6.0220 -22.02.2012,5.6638,7.5102,85.44,101.00,8.9525,621.95,7.0771,5.6897,N/A,6.0509 -21.02.2012,5.6640,7.5059,85.16,100.96,8.9831,621.70,7.0969,5.6996,N/A,6.0738 -20.02.2012,5.6851,7.5004,84.86,100.90,9.0171,620.68,7.1574,5.7226,N/A,6.1169 -17.02.2012,5.7223,7.5185,85.23,101.15,9.0438,622.63,7.2361,5.7473,N/A,6.1598 -16.02.2012,5.7979,7.5489,85.99,101.57,9.0940,625.48,7.3690,5.7898,N/A,6.1959 -15.02.2012,5.7250,7.5350,85.89,101.38,8.9971,623.79,7.2923,5.7538,N/A,6.1528 -14.02.2012,5.7310,7.5386,85.81,101.42,9.0111,623.92,7.3493,5.7258,N/A,6.1244 -13.02.2012,5.7236,7.5861,86.09,102.06,9.0367,627.35,7.3653,5.7296,N/A,6.1526 -10.02.2012,5.7648,7.6389,86.50,102.79,9.1020,631.38,7.4222,5.7778,N/A,6.1617 -09.02.2012,5.7464,7.6341,86.43,102.72,9.0983,630.61,7.4406,5.7730,N/A,6.2121 -08.02.2012,5.7630,7.6469,86.50,102.87,9.1689,631.11,7.4776,5.7969,N/A,6.2433 -07.02.2012,5.8040,7.6294,86.48,102.63,9.1805,632.42,7.5731,5.8282,N/A,6.2715 -06.02.2012,5.8065,7.6048,86.55,102.30,9.1615,629.94,7.5783,5.8330,N/A,6.2330 -03.02.2012,5.8255,7.6588,86.52,103.04,9.2206,635.38,7.6470,5.8313,N/A,6.2318 -02.02.2012,5.7964,7.6420,86.38,102.80,9.1792,633.45,7.6128,5.8147,N/A,6.2221 -01.02.2012,5.8648,7.6547,86.08,102.97,9.2253,635.51,7.6966,5.8446,N/A,6.2176 -31.01.2012,5.8143,7.6574,86.24,103.01,9.1485,635.20,7.6213,5.8134,N/A,6.1815 -30.01.2012,5.8283,7.6689,86.00,103.16,9.1364,635.90,7.5998,5.7979,N/A,6.1573 -27.01.2012,5.8505,7.6594,86.11,103.04,9.1773,634.78,7.5940,5.8303,N/A,6.2117 -26.01.2012,5.8457,7.6643,86.73,103.09,9.1590,634.75,7.5380,5.8402,N/A,6.2230 -25.01.2012,5.8883,7.6725,87.19,103.19,9.1884,634.00,7.5569,5.8268,N/A,6.1977 -24.01.2012,5.8567,7.6325,86.90,102.64,9.1154,632.23,7.6031,5.8099,N/A,6.1510 -23.01.2012,5.9475,7.6687,87.43,103.14,9.2394,634.64,7.7190,5.8720,N/A,6.2398 -20.01.2012,5.9152,7.6679,87.46,103.12,9.1626,634.58,7.6632,5.8402,N/A,6.1645 -19.01.2012,5.9749,7.6825,87.30,103.31,9.2178,635.53,7.7849,5.9128,N/A,6.2076 -18.01.2012,6.0036,7.6834,87.16,103.34,9.2257,634.93,7.8253,5.9201,N/A,6.2446 -17.01.2012,6.0075,7.6650,86.85,103.10,9.2326,633.09,7.8382,5.9357,N/A,6.2682 -16.01.2012,6.0635,7.6782,86.58,103.26,9.2875,635.75,7.8931,5.9397,N/A,6.2445 -13.01.2012,5.9975,7.7110,86.73,103.69,9.2299,636.58,7.8194,5.8964,N/A,6.2089 -12.01.2012,6.0431,7.6759,86.98,103.22,9.2369,633.22,7.8512,5.9313,N/A,6.2205 -11.01.2012,6.0041,7.6558,86.89,102.95,9.2841,631.31,7.8036,5.9122,N/A,6.1857 -10.01.2012,6.0025,7.6646,87.01,103.08,9.2802,632.07,7.8117,5.8845,N/A,6.1805 -09.01.2012,6.0095,7.6579,86.81,103.01,9.2739,630.03,7.8147,5.8421,N/A,6.1324 -06.01.2012,6.0124,7.6832,86.78,103.32,9.3243,630.13,7.7891,5.9017,N/A,6.1564 -05.01.2012,5.9389,7.6837,86.85,103.32,9.2736,630.29,7.7360,5.8688,N/A,6.1364 -04.01.2012,5.9133,7.7127,86.65,103.72,9.2525,633.08,7.7127,5.8342,N/A,6.1247 -03.01.2012,5.9552,7.7340,86.69,104.04,9.2764,634.85,7.7532,5.8776,N/A,6.1353 -02.01.2012,5.9863,7.7457,86.88,104.20,9.2761,638.30,7.7754,5.8744,N/A,6.1165 -30.12.2011,6.0065,7.7718,86.83,104.55,9.2695,638.55,7.7433,5.8870,N/A,6.0969 -29.12.2011,6.0246,7.7916,87.12,104.80,9.3216,638.64,7.7527,5.8883,N/A,6.0821 -28.12.2011,5.9626,7.7883,86.98,104.77,9.3383,637.68,7.6640,5.8506,N/A,6.0547 -27.12.2011,5.9572,7.7878,87.06,104.77,9.3358,636.90,7.6463,5.8372,N/A,6.0486 -23.12.2011,5.9311,7.7608,86.60,104.40,9.3130,634.92,7.6001,5.8205,N/A,6.0340 -22.12.2011,5.9211,7.7377,86.13,104.09,9.2852,634.05,7.5814,5.7708,N/A,5.9765 -21.12.2011,5.8730,7.7066,86.00,103.67,9.2271,632.56,7.5556,5.7384,N/A,5.9878 -20.12.2011,5.9404,7.7296,85.88,103.99,9.2344,633.47,7.6198,5.7315,N/A,5.9062 -19.12.2011,5.9731,7.7698,86.09,104.54,9.2517,637.23,7.6647,5.7481,N/A,5.9304 -16.12.2011,5.9846,7.7854,85.95,104.75,9.2779,635.81,7.6795,5.7976,N/A,5.9735 -15.12.2011,5.9772,7.7781,85.58,104.66,9.2479,630.14,7.6680,5.7628,N/A,5.9249 -14.12.2011,5.9403,7.7343,85.00,104.02,9.1989,627.51,7.6177,5.7403,N/A,5.9442 -13.12.2011,5.8378,7.7012,84.94,103.57,9.1090,623.20,7.5026,5.6915,N/A,5.8988 -12.12.2011,5.7818,7.6956,85.16,103.51,9.0005,622.74,7.4489,5.6485,N/A,5.8688 -09.12.2011,5.8004,7.7192,85.21,103.83,9.0489,626.43,7.4661,5.6595,N/A,5.8442 -08.12.2011,5.7378,7.7001,85.35,103.57,9.0101,621.95,7.3941,5.6852,N/A,5.9033 -07.12.2011,5.7299,7.6987,85.39,103.56,8.9504,619.95,7.3763,5.6847,N/A,5.8952 -06.12.2011,5.7990,7.7361,85.43,104.05,9.0425,625.36,7.4493,5.6916,N/A,5.9075 -05.12.2011,5.7665,7.7536,85.71,104.28,9.0283,627.03,7.3958,5.6762,N/A,5.9075 -02.12.2011,5.7873,7.8013,85.69,104.93,9.0852,632.32,7.4416,5.7122,N/A,5.9317 -01.12.2011,5.7775,7.7678,85.24,104.48,9.0418,632.84,7.4433,5.6626,N/A,5.8864 -30.11.2011,5.8757,7.7988,84.74,104.87,9.1323,636.14,7.5320,5.6773,N/A,5.8543 -29.11.2011,5.8808,7.8420,84.64,105.43,9.1170,638.07,7.5453,5.6863,N/A,5.8482 -28.11.2011,5.8853,7.8280,84.57,105.25,9.0987,633.41,7.5744,5.6598,N/A,5.7955 -25.11.2011,5.8962,7.8425,84.58,105.46,9.1188,638.91,7.6228,5.6243,N/A,5.7202 -24.11.2011,5.8472,7.8177,84.69,105.12,9.0848,636.71,7.5790,5.5882,N/A,5.6931 -23.11.2011,5.8130,7.8156,84.66,105.03,9.0561,635.54,7.5494,5.5779,N/A,5.6720 -22.11.2011,5.7879,7.8281,84.96,105.18,9.0694,632.38,7.5168,5.5838,N/A,5.7141 -21.11.2011,5.8041,7.8222,85.47,105.10,9.1342,631.46,7.5564,5.6386,N/A,5.7765 -18.11.2011,5.7941,7.8330,85.54,105.25,9.1587,632.10,7.5493,5.6355,N/A,5.7979 -17.11.2011,5.7896,7.8026,85.26,104.83,9.1123,629.34,7.5219,5.6641,N/A,5.8437 -16.11.2011,5.7812,7.7786,85.22,104.51,9.1141,628.08,7.5110,5.6295,N/A,5.8370 -15.11.2011,5.7300,7.7935,85.40,104.72,9.1251,627.32,7.4397,5.6248,N/A,5.8343 -14.11.2011,5.6324,7.7372,85.11,103.96,9.0327,624.95,7.3063,5.5473,N/A,5.7870 -11.11.2011,5.6876,7.7470,85.18,104.10,9.0478,627.52,7.3426,5.5708,N/A,5.7561 -10.11.2011,5.7579,7.7737,85.58,104.44,9.1568,631.38,7.4152,5.6123,N/A,5.7945 -09.11.2011,5.6126,7.7409,85.59,103.98,9.0245,626.44,7.2327,5.5491,N/A,5.8009 -08.11.2011,5.6316,7.7328,85.45,103.88,9.0339,621.21,7.2163,5.5326,N/A,5.7958 -07.11.2011,5.6443,7.7479,85.25,104.10,9.0300,629.14,7.2205,5.5410,N/A,5.8224 -04.11.2011,5.5978,7.7255,85.10,103.81,8.9604,634.13,7.1721,5.5303,N/A,5.8186 -03.11.2011,5.6974,7.7901,85.51,104.69,9.0603,642.07,7.2997,5.5876,N/A,5.8236 -02.11.2011,5.6361,7.7541,85.50,104.21,9.0133,637.17,7.2128,5.5509,N/A,5.8624 -01.11.2011,5.6122,7.7291,85.47,103.86,8.9972,636.05,7.1859,5.5907,N/A,5.8415 -31.10.2011,5.4653,7.6749,84.98,103.12,8.7680,628.74,7.0113,5.4771,N/A,5.7744 -28.10.2011,5.4129,7.6750,85.20,103.10,8.7048,628.64,7.1344,5.4579,N/A,5.7769 -27.10.2011,5.4680,7.6618,84.69,102.93,8.7537,625.16,7.2080,5.4792,N/A,5.7641 -26.10.2011,5.5247,7.6943,84.38,103.35,8.8561,629.70,7.2741,5.4533,N/A,5.7377 -25.10.2011,5.5435,7.6988,84.50,103.40,8.8552,627.70,7.2826,5.5288,N/A,5.7943 -24.10.2011,5.5418,7.7131,84.72,103.60,8.8594,628.14,7.2641,5.5090,N/A,5.7732 -21.10.2011,5.6165,7.7188,84.71,103.68,8.8583,631.53,7.3208,5.5215,N/A,5.7392 -20.10.2011,5.6312,7.7198,84.65,103.69,8.8522,621.44,7.3419,5.5162,N/A,5.7368 -19.10.2011,5.6061,7.7308,84.63,103.84,8.8240,623.28,7.3034,5.5404,N/A,5.7690 -18.10.2011,5.6380,7.7534,84.46,104.13,8.9024,628.08,7.3402,5.5201,N/A,5.7364 -17.10.2011,5.5730,7.7260,84.70,103.78,8.8011,623.25,7.2088,5.5338,N/A,5.7553 -14.10.2011,5.6242,7.7501,84.76,104.10,8.8705,626.48,7.3080,5.5185,N/A,5.7409 -13.10.2011,5.6327,7.7658,85.24,104.30,8.8681,627.91,7.3076,5.5242,N/A,5.7445 -12.10.2011,5.6976,7.7784,85.32,104.48,8.8851,627.32,7.4284,5.5497,N/A,5.6825 -11.10.2011,5.7130,7.7874,85.67,104.63,8.9266,631.31,7.4495,5.5361,N/A,5.6773 -10.10.2011,5.8073,7.8166,85.82,104.99,9.0568,629.28,7.5705,5.6221,N/A,5.7060 -07.10.2011,5.8193,7.8194,85.53,105.04,9.0089,633.12,7.5950,5.6084,N/A,5.7061 -06.10.2011,5.8686,7.8293,85.53,105.19,9.0620,632.15,7.6474,5.6372,N/A,5.6799 -05.10.2011,5.8653,7.8202,85.59,105.08,9.0634,636.94,7.6411,5.5719,N/A,5.6116 -04.10.2011,5.8883,7.7843,85.52,104.60,9.1015,640.90,7.6851,5.6010,N/A,5.6083 -03.10.2011,5.8959,7.8622,85.38,105.66,9.1540,647.37,7.6590,5.6176,N/A,5.6775 -30.09.2011,5.8453,7.8899,85.18,106.03,9.0914,647.14,7.6259,5.6115,N/A,5.6836 -29.09.2011,5.7663,7.8491,85.02,105.47,9.0110,642.88,7.5337,5.5861,N/A,5.6495 -28.09.2011,5.7645,7.8224,85.13,105.11,9.0154,640.68,7.5353,5.6291,N/A,5.6945 -27.09.2011,5.7584,7.7871,84.62,104.65,8.9615,638.16,7.5411,5.6106,N/A,5.6804 -26.09.2011,5.8831,7.8898,84.59,106.01,9.0991,645.89,7.7135,5.6811,N/A,5.6863 -23.09.2011,5.7973,7.8414,84.86,105.33,8.9403,641.47,7.6000,5.6576,N/A,5.6979 -22.09.2011,5.7681,7.8164,84.74,104.97,8.9403,639.66,7.5331,5.6989,N/A,5.7782 -21.09.2011,5.6543,7.7385,85.25,103.90,8.8741,632.44,7.4096,5.6927,N/A,5.8123 -20.09.2011,5.7094,7.7842,85.09,104.52,8.9563,645.75,7.4642,5.7583,N/A,5.8324 -19.09.2011,5.6300,7.7108,84.03,103.53,8.8591,639.01,7.3317,5.7300,N/A,5.7716 -16.09.2011,5.5850,7.7280,84.56,103.74,8.8159,640.59,7.2702,5.6738,N/A,5.7718 -15.09.2011,5.6850,7.7961,84.53,104.67,8.9541,647.11,7.4014,5.7240,N/A,5.8084 -14.09.2011,5.6788,7.7425,84.22,103.96,8.9359,643.09,7.3866,5.7220,N/A,5.8035 -13.09.2011,5.6464,7.7056,84.41,103.47,8.9374,639.85,7.3292,5.6862,N/A,5.8415 -12.09.2011,5.5799,7.5636,84.60,101.57,8.8201,627.48,7.2438,5.5779,N/A,5.7520 -09.09.2011,5.4048,7.5181,84.10,100.95,8.6250,620.49,6.9793,5.4680,N/A,5.7456 -08.09.2011,5.3732,7.5671,84.35,101.60,8.5684,624.68,6.9448,5.4586,N/A,5.6953 -07.09.2011,5.3617,7.5498,83.43,101.36,8.5768,626.11,6.9380,5.4265,N/A,5.6858 -06.09.2011,5.4457,7.6703,84.17,102.97,8.7659,687.54,7.0972,5.5024,N/A,5.7411 -05.09.2011,5.4251,7.6689,84.30,102.95,8.7691,689.91,7.0667,5.4963,N/A,5.7368 -02.09.2011,5.4214,7.7141,84.44,103.54,8.7743,687.86,7.0600,5.5465,N/A,5.7985 -01.09.2011,5.3582,7.6896,84.46,103.21,8.7031,664.25,6.9678,5.4891,N/A,5.7427 -31.08.2011,5.3587,7.7358,84.35,103.82,8.7449,656.42,6.9920,5.4834,N/A,5.7266 -30.08.2011,5.3585,7.7698,84.92,104.28,8.7820,655.92,6.9872,5.4799,N/A,5.7098 -29.08.2011,5.3391,7.7620,85.30,104.18,8.7532,656.27,6.9628,5.4578,N/A,5.6645 -26.08.2011,5.3911,7.7891,85.56,104.54,8.7996,682.81,7.0060,5.4652,N/A,5.6631 -25.08.2011,5.4186,7.8239,85.76,105.02,8.8835,681.11,7.0216,5.4958,N/A,5.6708 -24.08.2011,5.4269,7.8332,85.74,105.14,8.9601,685.95,7.0857,5.4903,N/A,5.6915 -23.08.2011,5.4406,7.8307,85.79,105.12,8.9808,690.91,7.0887,5.5086,N/A,5.6977 -22.08.2011,5.4826,7.8697,85.45,105.66,9.0403,695.98,7.1453,5.5394,N/A,5.6945 -19.08.2011,5.4670,7.8320,84.90,105.13,9.0312,691.76,7.1455,5.5286,N/A,5.6712 -18.08.2011,5.4129,7.7908,85.15,104.57,8.9348,680.61,7.0618,5.5037,N/A,5.6719 -17.08.2011,5.4513,7.8313,85.06,105.12,8.9546,689.95,7.1166,5.5476,N/A,5.7056 -16.08.2011,5.4770,7.8680,84.95,105.62,8.9266,698.96,7.1056,5.5595,N/A,5.7062 -15.08.2011,5.4843,7.8464,84.90,105.33,8.9249,690.59,7.1354,5.5506,N/A,5.7171 -12.08.2011,5.5477,7.8804,84.93,105.79,8.9969,731.83,7.2320,5.6108,N/A,5.7010 -11.08.2011,5.4962,7.8403,84.48,105.23,8.9049,753.16,7.1865,5.5644,N/A,5.6548 -10.08.2011,5.4502,7.8249,84.50,105.05,8.8694,748.29,7.0948,5.5515,N/A,5.6472 -09.08.2011,5.4572,7.7842,84.71,104.50,8.9261,721.90,7.0525,5.4971,N/A,5.5786 -08.08.2011,5.4665,7.8559,84.85,105.46,8.9888,724.38,7.0282,5.5766,N/A,5.6625 -05.08.2011,5.5205,7.7800,84.44,104.45,8.9841,720.46,7.0397,5.6208,N/A,5.7681 -04.08.2011,5.3587,7.6742,84.63,103.03,8.7759,689.98,6.7439,5.5528,N/A,5.7260 -03.08.2011,5.4207,7.7023,84.61,103.41,8.8241,704.95,7.0216,5.6375,N/A,5.8243 -02.08.2011,5.3836,7.6404,85.16,102.55,8.7623,690.43,6.9709,5.6343,N/A,5.8635 -01.08.2011,5.3602,7.7214,85.57,103.64,8.8036,675.56,6.9057,5.6337,N/A,5.9233 -29.07.2011,5.4181,7.7365,85.06,103.86,8.8432,676.21,6.9848,5.6991,N/A,5.9336 -28.07.2011,5.4054,7.7595,85.23,104.13,8.8270,673.70,6.9478,5.7004,N/A,5.9689 -27.07.2011,5.3419,7.7484,85.49,103.96,8.7717,667.53,6.8741,5.6651,N/A,5.9057 -26.07.2011,5.3516,7.7662,85.45,104.19,8.7499,667.99,6.8601,5.6742,N/A,5.8496 -25.07.2011,5.4190,7.7795,85.39,104.37,8.8349,669.38,6.9155,5.6967,N/A,5.8604 -22.07.2011,5.3955,7.7711,85.73,104.26,8.7963,656.51,6.8628,5.7135,N/A,5.8485 -21.07.2011,5.4560,7.7879,85.35,104.47,8.8324,665.33,6.9195,5.7735,N/A,5.8622 -20.07.2011,5.5112,7.8171,84.99,104.85,8.8819,669.28,6.9806,5.8071,N/A,5.9199 -19.07.2011,5.5804,7.8751,85.37,105.61,8.9674,679.00,7.0602,5.8296,N/A,5.9373 -18.07.2011,5.6106,7.8790,85.23,105.66,9.0378,689.56,7.1038,5.8514,N/A,5.9503 -15.07.2011,5.5620,7.8660,85.36,105.45,8.9816,680.80,7.0154,5.7883,N/A,5.9341 -14.07.2011,5.5197,7.8358,85.13,105.08,8.9019,676.39,6.9852,5.7494,N/A,5.9218 -13.07.2011,5.5717,7.8037,84.92,104.64,8.8807,670.20,7.0208,5.7885,N/A,5.9280 -12.07.2011,5.5727,7.7667,84.17,104.13,8.8389,664.80,6.9702,5.7288,N/A,5.8973 -11.07.2011,5.4536,7.7283,84.76,103.61,8.7154,650.90,6.7487,5.6546,N/A,5.8394 -08.07.2011,5.3816,7.7188,85.07,103.49,8.5890,635.56,6.6154,5.6149,N/A,5.8011 -07.07.2011,5.3948,7.7334,85.25,103.68,8.6214,643.20,6.6644,5.5890,N/A,5.7997 -06.07.2011,5.3699,7.7412,85.49,103.78,8.5967,638.55,6.6426,5.5771,N/A,5.7530 -05.07.2011,5.3552,7.7549,85.40,103.96,8.5769,630.73,6.5983,5.5676,N/A,5.7244 -04.07.2011,5.3549,7.7855,85.71,104.37,8.6401,631.73,6.6405,5.5780,N/A,5.7520 -01.07.2011,5.3686,7.8054,85.31,104.65,8.6362,636.81,6.6558,5.5850,N/A,5.7629 -30.06.2011,5.3677,7.7816,84.98,104.33,8.6334,644.58,6.6771,5.5472,N/A,5.7641 -29.06.2011,5.4166,7.7950,84.27,104.51,8.6714,652.25,6.6847,5.5370,N/A,5.7343 -28.06.2011,5.4755,7.8092,84.65,104.71,8.7301,656.10,6.7749,5.5479,N/A,5.7200 -27.06.2011,5.5267,7.8153,84.64,104.78,8.8145,660.02,6.8357,5.5851,N/A,5.7624 -24.06.2011,5.4676,7.7870,84.83,104.40,8.7416,653.20,6.7921,5.5817,N/A,5.7549 -23.06.2011,5.4627,7.8100,85.38,104.72,8.7756,649.51,6.7919,5.6180,N/A,5.7672 -22.06.2011,5.4803,7.8971,86.29,105.87,8.9027,650.83,6.8290,5.6422,N/A,5.8154 -21.06.2011,5.5188,7.9239,86.43,106.23,8.9589,654.24,6.8839,5.6516,N/A,5.8386 -20.06.2011,5.5782,7.9205,86.15,106.18,8.9890,656.76,6.9623,5.6689,N/A,5.8663 -17.06.2011,5.5494,7.8624,85.57,105.41,8.9490,652.60,6.8851,5.6457,N/A,5.8532 -16.06.2011,5.5709,7.8761,85.53,105.59,9.0054,654.51,6.8998,5.6860,N/A,5.8742 -15.06.2011,5.4330,7.8045,85.41,104.60,8.8758,640.04,6.7371,5.6115,N/A,5.8107 -14.06.2011,5.4134,7.8126,85.87,104.74,8.8872,645.80,6.7364,5.5565,N/A,5.7580 -10.06.2011,5.4392,7.8841,86.86,105.71,8.8686,645.87,6.7922,5.5790,N/A,5.7696 -09.06.2011,5.3832,7.8719,87.20,105.56,8.8478,643.42,6.7206,5.4945,N/A,5.6995 -08.06.2011,5.3545,7.8551,87.17,105.34,8.7937,640.15,6.6973,5.4811,N/A,5.7135 -07.06.2011,5.3504,7.8341,87.03,105.07,8.7578,641.65,6.6663,5.4738,N/A,5.7204 -06.06.2011,5.3327,7.8124,86.87,104.79,8.7656,639.22,6.6426,5.4424,N/A,5.7351 -03.06.2011,5.3705,7.7743,86.50,104.28,8.7848,637.33,6.6565,5.4913,N/A,5.7327 -01.06.2011,5.3609,7.7336,87.09,103.73,8.8286,627.85,6.5818,5.5390,N/A,5.7589 -31.05.2011,5.3885,7.7476,87.22,103.90,8.9137,631.45,6.6060,5.5483,N/A,5.7692 -30.05.2011,5.4454,7.7733,87.19,104.26,8.9705,638.34,6.7360,5.5822,N/A,5.8192 -27.05.2011,5.4599,7.7793,87.51,104.33,8.9761,636.31,6.7473,5.5944,N/A,5.8364 -26.05.2011,5.5120,7.8061,87.73,104.69,8.9790,632.87,6.7269,5.6386,N/A,5.8369 -25.05.2011,5.5991,7.8483,87.76,105.25,9.0369,635.36,6.8348,5.7107,N/A,5.8609 -24.05.2011,5.5821,7.8540,87.95,105.33,8.9950,633.00,6.8366,5.7202,N/A,5.8933 -23.05.2011,5.5986,7.8537,87.91,105.31,9.0535,635.01,6.8551,5.7272,N/A,5.9051 -20.05.2011,5.4940,7.8652,88.03,105.46,8.9080,623.79,6.7180,5.6830,N/A,5.8569 -19.05.2011,5.5243,7.8843,87.74,105.72,8.9325,627.80,6.7617,5.7043,N/A,5.8848 -18.05.2011,5.5559,7.9224,88.09,106.24,9.0306,630.31,6.8456,5.7198,N/A,5.9045 -16.05.2011,5.5591,7.8483,87.16,105.28,8.9979,622.41,6.8613,5.7407,N/A,5.8829 -13.05.2011,5.5057,7.8489,87.37,105.26,8.9564,622.29,6.8360,5.7235,N/A,5.8793 -12.05.2011,5.5082,7.8178,87.08,104.86,8.9850,620.12,6.7919,5.7148,N/A,5.8379 -11.05.2011,5.4229,7.8019,87.11,104.64,8.8751,616.06,6.7157,5.6719,N/A,5.8863 -10.05.2011,5.5020,7.8720,87.76,105.58,9.0071,628.76,6.8258,5.7138,N/A,5.9269 -09.05.2011,5.4908,7.9089,87.81,106.06,8.9970,628.13,6.8099,5.6973,N/A,5.9122 -06.05.2011,5.4490,7.9397,88.00,106.47,8.9404,627.87,6.7689,5.6507,N/A,5.8367 -05.05.2011,5.3027,7.8899,87.29,105.81,8.7717,618.43,6.6028,5.5332,N/A,5.6890 -04.05.2011,5.2769,7.8272,87.23,104.97,8.7000,611.50,6.5163,5.5363,N/A,5.7305 -03.05.2011,5.2484,7.7745,87.27,104.26,8.7118,606.72,6.4747,5.5413,N/A,5.7152 -02.05.2011,5.2587,7.7845,87.23,104.39,8.7718,605.81,6.4548,5.5498,N/A,5.7533 -29.04.2011,5.2473,7.7854,87.38,104.40,8.7368,600.96,6.4321,5.5139,N/A,5.7266 -28.04.2011,5.2690,7.8181,87.17,104.86,8.8032,604.76,6.4563,5.5560,N/A,5.7503 -27.04.2011,5.3047,7.7772,87.19,104.31,8.7299,605.80,6.4818,5.5760,N/A,5.7405 -26.04.2011,5.3605,7.8054,87.75,104.67,8.8271,607.18,6.5540,5.6234,N/A,5.7381 -20.04.2011,5.3826,7.7612,87.14,104.06,8.8049,600.50,6.4945,5.6478,N/A,5.7037 -19.04.2011,5.4746,7.7964,87.08,104.52,8.8916,610.15,6.6343,5.6770,N/A,5.7305 -18.04.2011,5.3977,7.7560,86.94,103.99,8.7837,602.66,6.5135,5.6092,N/A,5.6965 -15.04.2011,5.4110,7.8303,87.24,104.98,8.8416,605.43,6.5036,5.6262,N/A,5.6948 -14.04.2011,5.4275,7.8666,87.08,105.47,8.8634,607.88,6.5000,5.6478,N/A,5.7154 -13.04.2011,5.4404,7.8924,86.87,105.83,8.8483,606.21,6.4697,5.6650,N/A,5.7089 -12.04.2011,5.4870,7.8921,87.10,105.84,8.9341,605.45,6.5355,5.7277,N/A,5.7340 -11.04.2011,5.3922,7.7950,86.97,104.53,8.8033,594.48,6.3662,5.6454,N/A,5.6944 -08.04.2011,5.4274,7.8138,86.55,104.78,8.8844,595.08,6.3799,5.6822,N/A,5.7142 -07.04.2011,5.4817,7.8361,86.41,105.08,8.9343,598.21,6.4317,5.7003,N/A,5.7347 -06.04.2011,5.4528,7.7888,86.49,104.45,8.9151,588.89,6.3888,5.6756,N/A,5.6603 -05.04.2011,5.4904,7.7892,86.53,104.45,8.8481,595.58,6.5152,5.6713,N/A,5.6768 -04.04.2011,5.4915,7.8084,87.09,104.72,8.8729,594.99,6.5297,5.7105,N/A,5.7048 -01.04.2011,5.5313,7.8334,87.51,105.06,8.8799,601.52,6.6179,5.7109,N/A,5.7174 -31.03.2011,5.5631,7.8818,88.09,105.69,8.9683,606.56,6.7244,5.7319,N/A,5.7486 -30.03.2011,5.6121,7.8917,88.22,105.82,8.9883,606.94,6.7591,5.7696,N/A,5.7813 -29.03.2011,5.5966,7.9013,87.82,105.96,8.9680,611.22,6.8586,5.7428,N/A,5.7407 -28.03.2011,5.6297,7.9131,87.84,106.11,9.0089,610.70,6.8890,5.7390,N/A,5.7876 -25.03.2011,5.5528,7.8761,87.90,105.62,8.9578,609.49,6.8562,5.6949,N/A,5.6891 -24.03.2011,5.6014,7.8829,88.39,105.71,9.0835,614.22,6.9264,5.7131,N/A,5.6745 -23.03.2011,5.5918,7.9197,88.41,106.20,9.1468,620.93,6.9257,5.6957,N/A,5.6413 -22.03.2011,5.5469,7.8955,88.68,105.88,9.0506,612.88,6.8463,5.6801,N/A,5.5960 -21.03.2011,5.5633,7.8832,88.79,105.71,9.0337,614.15,6.8590,5.6719,N/A,5.5853 -18.03.2011,5.6169,7.8990,87.99,105.82,9.0494,620.48,6.8750,5.7193,N/A,5.5739 -17.03.2011,5.6424,7.8757,87.53,105.58,9.0623,624.06,7.1215,5.7020,N/A,5.5456 -16.03.2011,5.6520,7.8913,88.23,105.80,9.0907,614.85,6.9830,5.7544,N/A,5.6195 -15.03.2011,5.6610,7.8800,88.28,105.65,9.0986,613.84,6.9400,5.7789,N/A,5.6362 -14.03.2011,5.6071,7.8141,88.40,104.77,8.9988,603.08,6.8288,5.7695,N/A,5.6567 -11.03.2011,5.6701,7.8310,88.65,105.00,9.0875,607.30,6.8479,5.8194,N/A,5.6675 -10.03.2011,5.5950,7.7373,87.93,103.74,9.0376,600.29,6.7597,5.7731,N/A,5.6188 -09.03.2011,5.5766,7.7531,87.75,103.95,9.0029,596.40,6.7334,5.7452,N/A,5.6209 -08.03.2011,5.5722,7.7738,87.66,104.24,9.0180,596.88,6.7583,5.7307,N/A,5.6382 -07.03.2011,5.5523,7.7582,87.23,104.05,9.0269,600.15,6.7513,5.7143,N/A,5.6231 -04.03.2011,5.5629,7.7658,88.16,104.15,9.0581,596.97,6.7519,5.7193,N/A,5.6344 -03.03.2011,5.5473,7.6930,87.98,103.18,9.0521,599.74,6.7741,5.6986,N/A,5.6402 -02.03.2011,5.5936,7.7057,88.32,103.34,9.0829,602.66,6.8181,5.7356,N/A,5.6543 -01.03.2011,5.5958,7.7272,88.68,103.64,9.1122,600.83,6.8084,5.7629,N/A,5.6884 -28.02.2011,5.6323,7.7523,87.99,103.98,9.0686,607.16,6.8956,5.7711,N/A,5.7261 -25.02.2011,5.6014,7.7406,87.81,103.84,9.0376,605.46,6.8452,5.7090,N/A,5.6745 -24.02.2011,5.6543,7.7498,87.79,103.95,9.1283,609.79,6.9081,5.7192,N/A,5.6585 -23.02.2011,5.6445,7.7448,88.14,103.88,9.1421,602.24,6.8253,5.7180,N/A,5.6696 -22.02.2011,5.7342,7.7687,88.15,104.21,9.2613,606.06,6.8888,5.8159,N/A,5.7437 -21.02.2011,5.6833,7.7753,88.69,104.29,9.2263,601.50,6.8366,5.7666,N/A,5.7529 -18.02.2011,5.7073,7.7585,89.01,104.06,9.2470,600.67,6.8523,5.8063,N/A,5.7806 -17.02.2011,5.7412,7.7879,89.38,104.45,9.2471,599.57,6.8724,5.8348,N/A,5.7667 -16.02.2011,5.7895,7.8425,89.67,105.17,9.3663,601.23,6.9153,5.8643,N/A,5.7799 -15.02.2011,5.8535,7.8841,90.04,105.63,9.3690,601.84,6.9958,5.9305,N/A,5.8644 -14.02.2011,5.8661,7.9415,90.46,106.50,9.4215,602.73,7.0514,5.9527,N/A,5.9010 -11.02.2011,5.8645,7.9575,90.13,106.72,9.4172,604.37,7.0292,5.8851,N/A,5.8566 -10.02.2011,5.7753,7.9000,89.62,105.96,9.2896,601.37,6.9902,5.7994,N/A,5.8149 -09.02.2011,5.7788,7.8800,89.69,105.70,9.2865,599.55,7.0114,5.8122,N/A,5.8507 -08.02.2011,5.7497,7.8357,89.25,105.12,9.2866,602.54,7.0007,5.8160,N/A,5.8500 -07.02.2011,5.7715,7.8412,89.08,105.18,9.3210,602.67,7.0000,5.8428,N/A,5.8445 -04.02.2011,5.7461,7.8273,88.74,105.00,9.2797,606.86,7.0418,5.8033,N/A,5.8533 -03.02.2011,5.7117,7.8890,88.91,105.83,9.2681,605.86,7.0031,5.7884,N/A,5.7902 -02.02.2011,5.6934,7.8768,89.36,105.66,9.2071,608.56,6.9875,5.7605,N/A,5.7609 -01.02.2011,5.7441,7.8930,89.74,105.88,9.2233,611.37,7.0230,5.7611,N/A,5.7691 -31.01.2011,5.8092,7.9139,89.19,106.17,9.2215,617.11,7.0809,5.8133,N/A,5.7839 -28.01.2011,5.8020,7.9493,89.85,106.65,9.2057,613.22,7.0200,5.8227,N/A,5.7466 -27.01.2011,5.7724,7.8914,89.32,105.88,9.1874,610.55,6.9673,5.8034,N/A,5.7282 -26.01.2011,5.7670,7.8841,88.47,105.79,9.0992,611.20,7.0201,5.7823,N/A,5.7517 -25.01.2011,5.7650,7.8790,88.12,105.71,9.1981,607.39,6.9972,5.8112,N/A,5.7515 -24.01.2011,5.8200,7.9071,88.23,106.09,9.2858,606.16,7.0264,5.8498,N/A,5.7627 -21.01.2011,5.8728,7.9435,88.28,106.59,9.3557,609.31,7.0953,5.8937,N/A,5.8032 -20.01.2011,5.8455,7.8505,87.98,105.36,9.3177,611.68,7.1130,5.8563,N/A,5.8096 -19.01.2011,5.8097,7.8262,87.73,105.04,9.3115,605.84,7.0781,5.8716,N/A,5.8466 -18.01.2011,5.8360,7.7928,87.40,104.60,9.3166,608.96,7.0739,5.9288,N/A,5.8217 -17.01.2011,5.8655,7.7940,87.69,104.64,9.2997,607.04,7.0682,5.9326,N/A,5.8021 -14.01.2011,5.8505,7.8367,87.46,105.19,9.2689,606.68,7.0907,5.9004,N/A,5.8368 -13.01.2011,5.9050,7.7533,87.52,104.08,9.2951,606.29,7.1145,5.9867,N/A,5.8770 -12.01.2011,5.9467,7.7337,87.10,103.81,9.3024,609.95,7.1638,6.0223,N/A,5.8911 -11.01.2011,5.9711,7.7165,86.72,103.59,9.2827,614.66,7.1846,6.0150,N/A,5.8723 -10.01.2011,5.9890,7.7234,86.54,103.68,9.3057,620.65,7.2026,6.0182,N/A,5.9426 -07.01.2011,5.9659,7.7491,86.84,104.01,9.2170,618.64,7.1439,5.9725,N/A,5.9232 -06.01.2011,5.9247,7.7732,87.28,104.31,9.1969,612.15,7.1287,5.9611,N/A,5.9120 -05.01.2011,5.8862,7.8039,87.43,104.71,9.1875,618.40,7.1783,5.8880,N/A,5.9012 -04.01.2011,5.8321,7.7864,86.98,104.47,9.0304,620.60,7.0898,5.8655,N/A,5.8691 -03.01.2011,5.8642,7.7830,87.02,104.43,9.1051,626.02,7.2104,5.9097,N/A,5.9800 diff --git a/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json b/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json deleted file mode 100644 index 373a3a8eb..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/DoubleNested.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": { - "title": "example", - "nested": { "nestedTitle": "sub" } - } -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Empty.json b/tests/FSharp.Data.Core.Tests/Data/Empty.json deleted file mode 100644 index 22fdca1b2..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Empty.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html b/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html deleted file mode 100644 index 2f4628c3b..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/EmptyDefinitionLists.html +++ /dev/null @@ -1,8 +0,0 @@ - - -
      -
      Foo
      -
      Foo2
      -
      - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/GDP.csv b/tests/FSharp.Data.Core.Tests/Data/GDP.csv deleted file mode 100644 index 49f2b91bf..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/GDP.csv +++ /dev/null @@ -1,327 +0,0 @@ -,Gross domestic product 2013,,,,,,,, -,,,,,,,,, -,,,,(millions of,,,,, -,Ranking,,Economy,US dollars),,,,, -,,,,,,,,, -USA,1,,United States," 16,800,000 ",,,,, -CHN,2,,China," 9,240,270 ",,,,, -JPN,3,,Japan," 4,901,530 ",,,,, -DEU,4,,Germany," 3,634,823 ",,,,, -FRA,5,,France," 2,734,949 ",,,,, -GBR,6,,United Kingdom," 2,521,381 ",,,,, -BRA,7,,Brazil," 2,245,673 ",,,,, -RUS,8,,Russian Federation," 2,096,777 ",,,,, -ITA,9,,Italy," 2,071,307 ",,,,, -IND,10,,India," 1,876,797 ",,,,, -CAN,11,,Canada," 1,826,769 ",,,,, -AUS,12,,Australia," 1,560,597 ",,,,, -ESP,13,,Spain," 1,358,263 ",,,,, -KOR,14,,"Korea, Rep."," 1,304,554 ",,,,, -MEX,15,,Mexico," 1,260,915 ",,,,, -IDN,16,,Indonesia," 868,346 ",,,,, -TUR,17,,Turkey," 820,207 ",,,,, -NLD,18,,Netherlands," 800,173 ",,,,, -SAU,19,,Saudi Arabia," 745,273 ",,,,, -CHE,20,,Switzerland," 650,377 ",,,,, -ARG,21,,Argentina," 611,755 ",,,,, -SWE,22,,Sweden," 558,949 ",,,,, -NGA,23,,Nigeria," 521,803 ",,,,, -POL,24,,Poland," 517,543 ",,,,, -NOR,25,,Norway," 512,580 ",,,,, -BEL,26,,Belgium," 508,116 ",,,,, -VEN,27,,"Venezuela, RB"," 438,284 ",,,,, -AUT,28,,Austria," 415,672 ",,,,, -THA,29,,Thailand," 387,252 ",,,,, -ARE,30,,United Arab Emirates," 383,799 ",,,,, -COL,31,,Colombia," 378,148 ",,,,, -IRN,32,,"Iran, Islamic Rep."," 368,904 ",,,,, -ZAF,33,,South Africa," 350,630 ",,,,, -DNK,34,,Denmark," 330,614 ",,,,, -MYS,35,,Malaysia," 312,435 ",,,,, -SGP,36,,Singapore," 297,941 ",,,,, -ISR,37,,Israel," 291,357 ",,,,, -CHL,38,,Chile," 277,199 ",,,,, -HKG,39,,"Hong Kong SAR, China"," 274,013 ",,,,, -PHL,40,,Philippines," 272,017 ",,,,, -EGY,41,,"Egypt, Arab Rep."," 271,973 ",,,,, -FIN,42,,Finland," 256,842 ",,,,, -GRC,43,,Greece," 241,721 ",,,,, -PAK,44,,Pakistan," 236,625 ",,,,, -KAZ,45,,Kazakhstan," 224,415 ",,,,, -IRQ,46,,Iraq," 222,879 ",,,,, -PRT,47,,Portugal," 220,022 ",,,,, -IRL,48,,Ireland," 217,816 ",,,,, -DZA,49,,Algeria," 210,183 ",,,,, -QAT,50,,Qatar," 202,450 ",,,,, -PER,51,,Peru," 202,296 ",,,,, -CZE,52,,Czech Republic," 198,450 ",,,,, -ROM,53,,Romania," 189,638 ",,,,, -NZL,54,,New Zealand," 185,787 ",,,,, -KWT,55,,Kuwait," 183,219 ",,,,, -UKR,56,,Ukraine," 177,431 ",,,,, -VNM,57,,Vietnam," 171,392 ",,,,, -HUN,58,,Hungary," 129,989 ",,,,, -BGD,59,,Bangladesh," 129,857 ",,,,, -AGO,60,,Angola," 121,704 ",,,,, -MAR,61,,Morocco," 104,374 ",a,,,, -PRI,62,,Puerto Rico," 103,135 ",,,,, -SVK,63,,Slovak Republic," 95,770 ",,,,, -ECU,64,,Ecuador," 90,023 ",,,,, -OMN,65,,Oman," 80,570 ",,,,, -LBY,66,,Libya," 75,456 ",,,,, -AZE,67,,Azerbaijan," 73,560 ",,,,, -BLR,68,,Belarus," 71,710 ",,,,, -CUB,69,,Cuba," 68,234 ",,,,, -LKA,70,,Sri Lanka," 67,182 ",,,,, -SDN,71,,Sudan," 66,548 ",b,,,, -DOM,72,,Dominican Republic," 60,614 ",,,,, -LUX,73,,Luxembourg," 60,383 ",,,,, -HRV,74,,Croatia," 57,539 ",,,,, -UZB,75,,Uzbekistan," 56,796 ",,,,, -URY,76,,Uruguay," 55,708 ",,,,, -GTM,77,,Guatemala," 53,797 ",,,,, -BGR,78,,Bulgaria," 53,010 ",,,,, -MAC,79,,"Macao SAR, China"," 51,753 ",,,,, -CRI,80,,Costa Rica," 49,621 ",,,,, -GHA,81,,Ghana," 47,929 ",,,,, -TUN,82,,Tunisia," 47,129 ",,,,, -ETH,83,,Ethiopia," 46,869 ",,,,, -SVN,84,,Slovenia," 46,833 ",,,,, -LTU,85,,Lithuania," 45,932 ",,,,, -LBN,86,,Lebanon," 44,352 ",,,,, -KEN,87,,Kenya," 44,101 ",,,,, -PAN,88,,Panama," 42,648 ",,,,, -SRB,89,,Serbia," 42,521 ",,,,, -TKM,90,,Turkmenistan," 41,851 ",,,,, -YEM,91,,"Yemen, Rep."," 35,955 ",,,,, -JOR,92,,Jordan," 33,678 ",,,,, -TZA,93,,Tanzania," 33,225 ",c,,,, -BHR,94,,Bahrain," 32,788 ",,,,, -LVA,95,,Latvia," 30,957 ",,,,, -CIV,96,,Cte d'Ivoire," 30,905 ",,,,, -ZAR,97,,"Congo, Dem. Rep."," 30,629 ",,,,, -BOL,98,,Bolivia," 30,601 ",,,,, -PRY,99,,Paraguay," 29,949 ",,,,, -CMR,100,,Cameroon," 29,275 ",,,,, -TTO,101,,Trinidad and Tobago," 24,641 ",,,,, -EST,102,,Estonia," 24,477 ",,,,, -SLV,103,,El Salvador," 24,259 ",,,,, -ZMB,104,,Zambia," 22,384 ",,,,, -CYP,105,,Cyprus," 21,911 ",d,,,, -UGA,106,,Uganda," 21,483 ",,,,, -AFG,107,,Afghanistan," 20,725 ",,,,, -GAB,108,,Gabon," 19,344 ",,,,, -NPL,109,,Nepal," 19,294 ",,,,, -HND,110,,Honduras," 18,550 ",,,,, -BIH,111,,Bosnia and Herzegovina," 17,828 ",,,,, -GEO,112,,Georgia," 16,127 ",e,,,, -BRN,113,,Brunei Darussalam," 16,111 ",,,,, -GNQ,114,,Equatorial Guinea," 15,574 ",,,,, -MOZ,115,,Mozambique," 15,319 ",,,,, -PNG,116,,Papua New Guinea," 15,289 ",,,,, -KHM,117,,Cambodia," 15,250 ",,,,, -SEN,118,,Senegal," 15,150 ",,,,, -BWA,119,,Botswana," 14,788 ",,,,, -ISL,120,,Iceland," 14,620 ",,,,, -JAM,121,,Jamaica," 14,362 ",,,,, -COG,122,,"Congo, Rep."," 14,108 ",,,,, -SSD,123,,South Sudan," 13,797 ",,,,, -TCD,124,,Chad," 13,414 ",,,,, -ALB,125,,Albania," 12,904 ",,,,, -ZWE,126,,Zimbabwe," 12,802 ",,,,, -NAM,127,,Namibia," 12,580 ",,,,, -MUS,128,,Mauritius," 11,938 ",,,,, -BFA,129,,Burkina Faso," 11,583 ",,,,, -MNG,130,,Mongolia," 11,516 ",,,,, -NIC,131,,Nicaragua," 11,256 ",,,,, -LAO,132,,Lao PDR," 11,141 ",,,,, -MLI,133,,Mali," 10,943 ",,,,, -MDG,134,,Madagascar," 10,797 ",,,,, -ARM,135,,Armenia," 10,432 ",,,,, -WBG,136,,West Bank and Gaza," 10,239 ",,,,, -MKD,137,,"Macedonia, FYR"," 10,221 ",,,,, -MLT,138,,Malta," 9,642 ",,,,, -TJK,139,,Tajikistan," 8,508 ",,,,, -HTI,140,,Haiti," 8,459 ",,,,, -BEN,141,,Benin," 8,307 ",,,,, -BHS,142,,"Bahamas, The"," 8,149 ",,,,, -MDA,143,,Moldova," 7,935 ",f,,,, -RWA,144,,Rwanda," 7,452 ",,,,, -NER,145,,Niger," 7,356 ",,,,, -KGZ,146,,Kyrgyz Republic," 7,226 ",,,,, -KSV,147,,Kosovo," 6,960 ",,,,, -GIN,148,,Guinea," 6,193 ",,,,, -MCO,149,,Monaco," 6,075 ",,,,, -BMU,150,,Bermuda," 5,474 ",,,,, -SUR,151,,Suriname," 5,231 ",,,,, -SLE,152,,Sierra Leone," 4,929 ",,,,, -MNE,153,,Montenegro," 4,428 ",,,,, -TGO,154,,Togo," 4,339 ",,,,, -BRB,155,,Barbados," 4,225 ",,,,, -MRT,156,,Mauritania," 4,163 ",,,,, -FJI,157,,Fiji," 4,028 ",,,,, -SWZ,158,,Swaziland," 3,791 ",,,,, -MWI,159,,Malawi," 3,705 ",,,,, -ERI,160,,Eritrea," 3,444 ",,,,, -GUY,161,,Guyana," 3,076 ",,,,, -BDI,162,,Burundi," 2,718 ",,,,, -ABW,163,,Aruba," 2,584 ",,,,, -MDV,164,,Maldives," 2,300 ",,,,, -LSO,165,,Lesotho," 2,230 ",,,,, -LBR,166,,Liberia," 1,951 ",,,,, -CPV,167,,Cape Verde," 1,888 ",,,,, -BTN,168,,Bhutan," 1,884 ",,,,, -TMP,169,,Timor-Leste," 1,615 ",,,,, -BLZ,170,,Belize," 1,605 ",,,,, -CAF,171,,Central African Republic," 1,538 ",,,,, -DJI,172,,Djibouti," 1,456 ",,,,, -LCA,173,,St. Lucia," 1,332 ",,,,, -SYC,174,,Seychelles," 1,268 ",,,,, -ATG,175,,Antigua and Barbuda," 1,230 ",,,,, -SLB,176,,Solomon Islands," 1,096 ",,,,, -GMB,177,,"Gambia, The", 914 ,,,,, -GNB,178,,Guinea-Bissau, 859 ,,,,, -VUT,179,,Vanuatu, 835 ,,,,, -GRD,180,,Grenada, 834 ,,,,, -KNA,181,,St. Kitts and Nevis, 743 ,,,,, -VCT,182,,St. Vincent and the Grenadines, 726 ,,,,, -WSM,183,,Samoa, 694 ,,,,, -COM,184,,Comoros, 657 ,,,,, -DMA,185,,Dominica, 505 ,,,,, -TON,186,,Tonga, 466 ,,,,, -FSM,187,,"Micronesia, Fed. Sts.", 335 ,,,,, -STP,188,,So Tom and Principe, 311 ,,,,, -PLW,189,,Palau, 247 ,,,,, -MHL,190,,Marshall Islands, 175 ,,,,, -KIR,191,,Kiribati, 169 ,,,,, -TUV,192,,Tuvalu, 38 ,,,,, -,,,,,,,,, -ASM,,,American Samoa,..,,,,, -ADO,,,Andorra,..,,,,, -CYM,,,Cayman Islands,..,,,,, -CHI,,,Channel Islands,..,,,,, -CUW,,,Curaao,..,,,,, -FRO,,,Faeroe Islands,..,,,,, -PYF,,,French Polynesia,..,,,,, -GRL,,,Greenland,..,,,,, -GUM,,,Guam,..,,,,, -IMY,,,Isle of Man,..,,,,, -PRK,,,"Korea, Dem. Rep.",..,,,,, -LIE,,,Liechtenstein,..,,,,, -MMR,,,Myanmar,..,,,,, -NCL,,,New Caledonia,..,,,,, -MNP,,,Northern Mariana Islands,..,,,,, -SMR,,,San Marino,..,,,,, -SXM,,,Sint Maarten (Dutch part),..,,,,, -SOM,,,Somalia,..,,,,, -MAF,,,St. Martin (French part),..,,,,, -SYR,,,Syrian Arab Republic,..,,,,, -TCA,,,Turks and Caicos Islands,..,,,,, -VIR,,,Virgin Islands (U.S.),..,,,,, -,,,,,,,,, -WLD,,,World,"74,909,811",,,,, -,,,,,,,,, -LIC,,,Low income,"574,456",,,,, -MIC,,,Middle income,"23,896,945",,,,, -LMC,,, Lower middle income,"5,234,869",,,,, -UMC,,, Upper middle income,"18,657,637",,,,, -LMY,,,Low & middle income,"24,484,655",,,,, -EAP,,, East Asia & Pacific,"11,413,001",,,,, -ECA,,, Europe & Central Asia,"1,983,694",,,,, -LAC,,, Latin America & Caribbean,"5,654,890",,,,, -MNA,,, Middle East & North Africa,"1,489,944",,,,, -SAS,,, South Asia,"2,354,663",,,,, -SSA,,, Sub-Saharan Africa,"1,591,417",,,,, -HIC,,,High income,"50,461,403",,,,, -EMU,,, Euro area,"12,749,677",,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, -,,,,,,,,, diff --git a/tests/FSharp.Data.Core.Tests/Data/GitHub.json b/tests/FSharp.Data.Core.Tests/Data/GitHub.json deleted file mode 100644 index 8f7c7885e..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/GitHub.json +++ /dev/null @@ -1,1507 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/89/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/89", - "id": 11091705, - "number": 89, - "title": "Experimental package", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-17T18:45:56Z", - "updated_at": "2013-02-17T18:45:56Z", - "closed_at": null, - "pull_request": { - "html_url": "https://github.com/tpetricek/FSharp.Data/pull/89", - "diff_url": "https://github.com/tpetricek/FSharp.Data/pull/89.diff", - "patch_url": "https://github.com/tpetricek/FSharp.Data/pull/89.patch" - }, - "body": "List of changes:\r\n* Fixed a couple of bugs in AssemblyReplacer that only applied to Apiary\r\n* The api has changed and the json now has `request` and `responses` instead of `incoming` and `outgoing`\r\n* The json generator had JsonDcument hardcoded on some places, adapted it so it works with apiary\r\n* Added the replace.ToRuntime and replace.ToDesigntime where needed\r\n* Instead of referencing the non experimental dll, the minimum needed files are reincluded in the experimental .fsproj. This was needed otherwise AssemblyReplacer wouldn't work. It still only has the Apiary provider, the extra stuff is internal\r\n* Changed the sample to cope with the new signatures generated by json provider\r\n* Added the new type of signature tests for Apiary also" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/85/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/85", - "id": 11067374, - "number": 85, - "title": "Added ability to override or add headers to CSV provider", - "user": { - "login": "colinbull", - "id": 585546, - "avatar_url": "https://secure.gravatar.com/avatar/d9dd4f2053c161a94581a0d0d366d03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "d9dd4f2053c161a94581a0d0d366d03d", - "url": "https://api.github.com/users/colinbull", - "html_url": "https://github.com/colinbull", - "followers_url": "https://api.github.com/users/colinbull/followers", - "following_url": "https://api.github.com/users/colinbull/following", - "gists_url": "https://api.github.com/users/colinbull/gists{/gist_id}", - "starred_url": "https://api.github.com/users/colinbull/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/colinbull/subscriptions", - "organizations_url": "https://api.github.com/users/colinbull/orgs", - "repos_url": "https://api.github.com/users/colinbull/repos", - "events_url": "https://api.github.com/users/colinbull/events{/privacy}", - "received_events_url": "https://api.github.com/users/colinbull/received_events", - "type": "User" - }, - "labels": [ - - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 5, - "created_at": "2013-02-16T13:46:43Z", - "updated_at": "2013-02-17T14:12:12Z", - "closed_at": null, - "pull_request": { - "html_url": "https://github.com/tpetricek/FSharp.Data/pull/85", - "diff_url": "https://github.com/tpetricek/FSharp.Data/pull/85.diff", - "patch_url": "https://github.com/tpetricek/FSharp.Data/pull/85.patch" - }, - "body": "Can now override the headers provided in a CSV file or add them if they don't exist. Also added the ability to change the amount of rows are skipped. This is required because 1 row was always skipped which caused some problems for header less CSV's. " - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/80/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/80", - "id": 11036707, - "number": 80, - "title": "Freebase provider fetching too much data - AllowLocalQueryEvaluation=false not working?", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-15T14:09:54Z", - "updated_at": "2013-02-15T14:09:54Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "In this query\r\n\r\n let people = \r\n query {\r\n for p in data2.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender <> null)\r\n groupBy p.Gender.Name into g\r\n select (g.Key, g.Count())\r\n } |> Seq.toList\r\n\r\nI was expecting to get only a single MQL query, something like this (from http://infotrope.net/2009/09/10/gendered-names-in-freebase/)\r\n
      \r\n[{\r\n    \"id\":   null,\r\n    \"type\": \"/people/gender\",\r\n    \"!/people/person/gender\": [{\r\n    \"type\":   \"/people/person\",\r\n    \"name~=\": \"^Evelyn \",\r\n    \"return\": \"count\"\r\n    }]\r\n}]\r\n
      \r\n\r\nBut there are 465 mql queries being made, 1 for the query itself and 464 for each person that matches the where clauses, even though I'm not including any person data in the select, just a string. It seems the group by is being done locally, but I have AllowLocalQueryEvaluation=false, and didn't get any error" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/79/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/79", - "id": 11036400, - "number": 79, - "title": "Freebase query error when comparing to null", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-15T14:00:09Z", - "updated_at": "2013-02-15T14:00:09Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "This query works fine:\r\n\r\n query {\r\n for p in data.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender <> null)\r\n select p\r\n }\r\n\r\nbut this one fails with an error:\r\n\r\n query {\r\n for p in data2.Commons.People.Persons do\r\n where (p.Name.ApproximatelyMatches \"^Evelyn \")\r\n where (p.Gender = null)\r\n select p\r\n }\r\n\r\n>System.Exception: unknown qualification - not a lambda - p => (p.GetPropertyByIdTyped(\"/people/person\", \"/people/person/gender\") == null), Lambda, true\r\n at Microsoft.FSharp.Linq.RuntimeHelpers.LeafExpressionConverter.EvaluateQuotation(FSharpExpr e)\r\n at Microsoft.FSharp.Linq.QueryModule.EvalNonNestedInner(CanEliminate canElim, FSharpExpr queryProducingSequence)\r\n at Microsoft.FSharp.Linq.QueryModule.EvalNonNestedOuter(CanEliminate canElim, FSharpExpr tm)" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/77/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/77", - "id": 10989696, - "number": 77, - "title": "Missing primitive types in freebase provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-14T10:07:34Z", - "updated_at": "2013-02-14T10:07:34Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "Related to #68\r\n\r\nFrom http://stackoverflow.com/a/14777505/165633\r\n\r\n>Be forewarned that there additional primitive types missing see freebase.com/inspect/type" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/69/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/69", - "id": 10747619, - "number": 69, - "title": "Unnecessary wrapper types in json provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", - "name": "status-consider", - "color": "5ED1BA" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", - "name": "type-proposal", - "color": "D460CF" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 3, - "created_at": "2013-02-07T17:41:19Z", - "updated_at": "2013-02-07T21:09:04Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "In https://github.com/tpetricek/FSharp.Data/blob/master/tests/FSharp.Data.Tests/JsonProvider.Tests.fs#L38\r\n\r\n`prov.[0].A.Number` is an int option. Either `prov.[0].A` should directly be an int option, or `prov.[0].Number` should be an int instead of an int option.\r\n\r\nBefore https://github.com/tpetricek/FSharp.Data/commit/fa0a913e0f553dbebb53b3410e7a39aa810e0839 it was the first option, did you change it intentionally?\r\n" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/67/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/67", - "id": 10746915, - "number": 67, - "title": "Fix the \"Can access the first 10 amino acids\" test", - "user": { - "login": "tpetricek", - "id": 485413, - "avatar_url": "https://secure.gravatar.com/avatar/d06834fe3fb105f62b2186aba4a430d5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "d06834fe3fb105f62b2186aba4a430d5", - "url": "https://api.github.com/users/tpetricek", - "html_url": "https://github.com/tpetricek", - "followers_url": "https://api.github.com/users/tpetricek/followers", - "following_url": "https://api.github.com/users/tpetricek/following", - "gists_url": "https://api.github.com/users/tpetricek/gists{/gist_id}", - "starred_url": "https://api.github.com/users/tpetricek/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/tpetricek/subscriptions", - "organizations_url": "https://api.github.com/users/tpetricek/orgs", - "repos_url": "https://api.github.com/users/tpetricek/repos", - "events_url": "https://api.github.com/users/tpetricek/events{/privacy}", - "received_events_url": "https://api.github.com/users/tpetricek/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", - "name": "type-bug", - "color": "6E0069" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", - "name": "status-priority", - "color": "006A55" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 1, - "created_at": "2013-02-07T17:30:08Z", - "updated_at": "2013-02-07T17:35:38Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "The test seems to be failing on my machine. Perhaps the Freebase structure has changed somehow?" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/66/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/66", - "id": 10746640, - "number": 66, - "title": "Optional Strings in Json/Xml providers", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 2, - "created_at": "2013-02-07T17:23:26Z", - "updated_at": "2013-02-07T17:51:59Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "In the Json and Xml providers, does it make sense to generate string option? Shouldn't we just generate string like in the csv provider?\r\n\r\nE.g., before https://github.com/tpetricek/FSharp.Data/commit/fa0a913e0f553dbebb53b3410e7a39aa810e0839, instead of tweet.Text.Value we could use tweet.Text in here:\r\n https://github.com/tpetricek/FSharp.Data/blob/master/samples/JsonProvider.fsx#L187 " - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/65/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/65", - "id": 10742172, - "number": 65, - "title": "Add FunScript demo", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-07T16:01:58Z", - "updated_at": "2013-02-07T16:01:58Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "In the demos solution, in addition to Silverlight, Windows 8 and Windows Phone would be nice to have also a FunScript project. If we add ReflectedDefinition to the portable library maybe we could even reuse it and just add the mappings?" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/64/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/64", - "id": 10691945, - "number": 64, - "title": "CSV Type provider should have a GetColumn(columnName:string) method for dynamic lookup", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-06T13:34:51Z", - "updated_at": "2013-02-06T13:34:51Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "From https://github.com/fsharp/fsharpx/issues/121\r\n\r\n>Noticed during the F# progressive tutorials that the CSV provider would benefit from a GetCoumn(columnName:string) method that does dynamic lookup by name instead of static binding. This is a normal design pattern for a type provider.\r\n\r\n>(This was based on using @tomasp's version of the type provider)\r\n\r\n>Also GetColumnNames etc. for dynamic access to the schema" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/62/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/62", - "id": 10577489, - "number": 62, - "title": "add some column descriptors (for code sprint)", - "user": { - "login": "nrolland", - "id": 37239, - "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", - "url": "https://api.github.com/users/nrolland", - "html_url": "https://github.com/nrolland", - "followers_url": "https://api.github.com/users/nrolland/followers", - "following_url": "https://api.github.com/users/nrolland/following", - "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", - "organizations_url": "https://api.github.com/users/nrolland/orgs", - "repos_url": "https://api.github.com/users/nrolland/repos", - "events_url": "https://api.github.com/users/nrolland/events{/privacy}", - "received_events_url": "https://api.github.com/users/nrolland/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-02T22:03:45Z", - "updated_at": "2013-02-02T22:04:08Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "we could expose the inferred types of columns at the TP level (and even add additional information like mean, variance for numeric types, 10 first options cases etc... )" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/61/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/61", - "id": 10577412, - "number": 61, - "title": "add a option for header or not in Csvprovider (for code sprint)", - "user": { - "login": "nrolland", - "id": 37239, - "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", - "url": "https://api.github.com/users/nrolland", - "html_url": "https://github.com/nrolland", - "followers_url": "https://api.github.com/users/nrolland/followers", - "following_url": "https://api.github.com/users/nrolland/following", - "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", - "organizations_url": "https://api.github.com/users/nrolland/orgs", - "repos_url": "https://api.github.com/users/nrolland/repos", - "events_url": "https://api.github.com/users/nrolland/events{/privacy}", - "received_events_url": "https://api.github.com/users/nrolland/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-02T21:57:02Z", - "updated_at": "2013-02-02T22:00:36Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "when there is no header, it takes the first data row as of now. \r\nwe can add names by hand to the csv or generate generic names like col0, .." - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/59/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/59", - "id": 10577341, - "number": 59, - "title": "publish a new nuget (keep for code sprint)", - "user": { - "login": "nrolland", - "id": 37239, - "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", - "url": "https://api.github.com/users/nrolland", - "html_url": "https://github.com/nrolland", - "followers_url": "https://api.github.com/users/nrolland/followers", - "following_url": "https://api.github.com/users/nrolland/following", - "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", - "organizations_url": "https://api.github.com/users/nrolland/orgs", - "repos_url": "https://api.github.com/users/nrolland/repos", - "events_url": "https://api.github.com/users/nrolland/events{/privacy}", - "received_events_url": "https://api.github.com/users/nrolland/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", - "name": "status-priority", - "color": "006A55" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-02T21:50:27Z", - "updated_at": "2013-02-02T21:50:27Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/57/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/57", - "id": 10546621, - "number": 57, - "title": "Support XSD in XmlProvider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-01T16:46:54Z", - "updated_at": "2013-02-01T16:46:54Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/56/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/56", - "id": 10546531, - "number": 56, - "title": "Support mixed separators in CsvProvider?", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", - "name": "status-consider", - "color": "5ED1BA" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-01T16:44:57Z", - "updated_at": "2013-02-01T16:44:57Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "I just saw a file that is classified as tab separated values, but in which the first column is a collection of 5 values comma separated :/\r\n\r\nThis was a random file from the EU open data, but I wonder if this is common:\r\nhttp://open-data.europa.eu/open-data/data/dataset/00YYPa7FUadFAd4HH4quTw/resource/f6884ab7-edb7-46fa-a61b-ee0b0c0cb723" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/55/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/55", - "id": 10545929, - "number": 55, - "title": "Allow to specify the NA string in CSV provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-01T16:28:17Z", - "updated_at": "2013-02-01T16:28:17Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "In some datasets it's \":\"" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/54/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/54", - "id": 10545624, - "number": 54, - "title": "Use a smarter default separator for CSVProvider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-consider", - "name": "status-consider", - "color": "5ED1BA" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-01T16:20:31Z", - "updated_at": "2013-02-01T16:20:31Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "If the sample file/url ends with tsv, use \\t as the default separator if nothing was specified.\r\nWe could also look at the header row and infer it in case there isn't any comma" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/52/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/52", - "id": 10542733, - "number": 52, - "title": "Use AddDefinitionLocation in the type providers when using a file in the sample", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-02-01T15:03:56Z", - "updated_at": "2013-02-01T15:07:32Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "So when pressing F12 in VisualStudio on a generated property, it opens up the sample csv/xml/json in the right place.\r\nSee http://msdn.microsoft.com/en-gb/library/hh361034.aspx for an example" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/48/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/48", - "id": 10439321, - "number": 48, - "title": "Consider renaming CsvProvider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 3, - "created_at": "2013-01-29T23:29:57Z", - "updated_at": "2013-02-07T16:44:48Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "I know this suggestion is a little bold, but thinking about it, CsvProvider currently works not only with just csv files but also with tab separated files, or any other similar textual format, and in the future it might well support more formats of tabular data (like xls/xlsx, hdf5/netCDF4, .rdata, .mat, etc...), either directly or maybe as plugins (I have some ideas about how to make that work without changing the api or creating dependencies...). But the inference and generation of typed properties is the same between all the formats.\r\nBoth the R tools and the several Python libraries that work with all those kind of files are usually called read.table or read_table (even though they have overloads called read.csv or read_csv that the only thing they do is to set the default separator to ',')\r\nDo you think renaming CsvProvider to TabularDataProvider would be a good idea? Or are people expecting that name and we can always make the same type provider available under other additional names (like we do with freebase and worldbank that have two versions each)?" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/39/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/39", - "id": 10379680, - "number": 39, - "title": "Yahoo Finance Type Provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", - "name": "type-proposal", - "color": "D460CF" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 1, - "created_at": "2013-01-28T15:46:37Z", - "updated_at": "2013-01-28T15:55:18Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "I'm not sure if this fits within FSharp.Data or not, but it does seem like a fairly common use case. We already use yahoo data in the CSV samples, but like WorldBank, where we can use the Json TP, having a dedicated TP is much better.\r\n\r\nSome links with info on the API:\r\nhttp://code.google.com/p/yahoo-finance-managed/wiki/CSVAPI\r\nhttp://developer.yahoo.com/yql/\r\nhttp://www.jarloo.com/yahoo-stock-symbol-lookup/\r\n" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/38/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/38", - "id": 10379124, - "number": 38, - "title": "NameUtils improvements", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-01-28T15:32:50Z", - "updated_at": "2013-01-28T15:32:50Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "* When we find a field like \"Foo%\", instead of generating \"Foo\", generate \"FooPct\" or \"FooPercentage\"\r\n\r\n* When we find something like \"Foo&Bar\", instead of generating \"FooBar\" generate \"FooAndBar\"\r\n\r\n* When we find something like \"Foo@Bar\", instead of generating \"FooBar\" generate \"FooAtBar\"\r\n\r\n" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/37/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/37", - "id": 10378954, - "number": 37, - "title": "Generate enums in csv type provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 2, - "created_at": "2013-01-28T15:27:53Z", - "updated_at": "2013-01-28T16:02:54Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "If a column is infered as string, and there are many repeated values, it's probably an enumeration, so we could generate an enum. If the inference geets it wrong, we could always override (#19). We could use something like (number of distinct values / number of rows) < 0.2 to trigger this" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/32/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/32", - "id": 10330252, - "number": 32, - "title": "Write API", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-proposal", - "name": "type-proposal", - "color": "D460CF" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-01-25T23:21:00Z", - "updated_at": "2013-01-25T23:21:00Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "See https://github.com/fsharp/fsharpx/issues/196" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/26/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/26", - "id": 10327553, - "number": 26, - "title": "Fix System.Xml.Linq reference in portable library for Silverlight", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", - "name": "type-bug", - "color": "6E0069" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 4, - "created_at": "2013-01-25T21:45:23Z", - "updated_at": "2013-02-08T22:08:52Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "If not possible" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/24/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/24", - "id": 10327515, - "number": 24, - "title": "Fix enableUriSlashes for Portable version", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", - "name": "type-bug", - "color": "6E0069" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-priority", - "name": "status-priority", - "color": "006A55" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 4, - "created_at": "2013-01-25T21:43:58Z", - "updated_at": "2013-02-09T18:31:16Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/23/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/23", - "id": 10323295, - "number": 23, - "title": "version of fsharpchart is not the current one from nuget", - "user": { - "login": "nrolland", - "id": 37239, - "avatar_url": "https://secure.gravatar.com/avatar/91f975afaf89b2bcd5a34722ab4c8505?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "91f975afaf89b2bcd5a34722ab4c8505", - "url": "https://api.github.com/users/nrolland", - "html_url": "https://github.com/nrolland", - "followers_url": "https://api.github.com/users/nrolland/followers", - "following_url": "https://api.github.com/users/nrolland/following", - "gists_url": "https://api.github.com/users/nrolland/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nrolland/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nrolland/subscriptions", - "organizations_url": "https://api.github.com/users/nrolland/orgs", - "repos_url": "https://api.github.com/users/nrolland/repos", - "events_url": "https://api.github.com/users/nrolland/events{/privacy}", - "received_events_url": "https://api.github.com/users/nrolland/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 0, - "created_at": "2013-01-25T19:34:09Z", - "updated_at": "2013-01-25T19:34:09Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "\r\nversion the packages config + some specific build targets for downloading them ?" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/19/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/19", - "id": 10269384, - "number": 19, - "title": "Allow overriding the schema in the CSV provider", - "user": { - "login": "ovatsus", - "id": 738761, - "avatar_url": "https://secure.gravatar.com/avatar/e6ae26138cd96ab168c1808f2af693f0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e6ae26138cd96ab168c1808f2af693f0", - "url": "https://api.github.com/users/ovatsus", - "html_url": "https://github.com/ovatsus", - "followers_url": "https://api.github.com/users/ovatsus/followers", - "following_url": "https://api.github.com/users/ovatsus/following", - "gists_url": "https://api.github.com/users/ovatsus/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ovatsus/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ovatsus/subscriptions", - "organizations_url": "https://api.github.com/users/ovatsus/orgs", - "repos_url": "https://api.github.com/users/ovatsus/repos", - "events_url": "https://api.github.com/users/ovatsus/events{/privacy}", - "received_events_url": "https://api.github.com/users/ovatsus/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 1, - "created_at": "2013-01-24T11:32:51Z", - "updated_at": "2013-01-28T15:24:26Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "Two alternatives:\r\n\r\n* Type provider parameter like in in TryFSharp.org:\r\n\r\n type csvType = CsvFile\r\n\r\n* Allow to specify the type in the header title within braces, like we already allow for units\r\n\r\n Column1 (m), Column1 (float), Column2 (float)" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/18/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/18", - "id": 10160408, - "number": 18, - "title": "Add async loading", - "user": { - "login": "tpetricek", - "id": 485413, - "avatar_url": "https://secure.gravatar.com/avatar/d06834fe3fb105f62b2186aba4a430d5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "d06834fe3fb105f62b2186aba4a430d5", - "url": "https://api.github.com/users/tpetricek", - "html_url": "https://github.com/tpetricek", - "followers_url": "https://api.github.com/users/tpetricek/followers", - "following_url": "https://api.github.com/users/tpetricek/following", - "gists_url": "https://api.github.com/users/tpetricek/gists{/gist_id}", - "starred_url": "https://api.github.com/users/tpetricek/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/tpetricek/subscriptions", - "organizations_url": "https://api.github.com/users/tpetricek/orgs", - "repos_url": "https://api.github.com/users/tpetricek/repos", - "events_url": "https://api.github.com/users/tpetricek/events{/privacy}", - "received_events_url": "https://api.github.com/users/tpetricek/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/status-planned", - "name": "status-planned", - "color": "00A383" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-feature", - "name": "type-feature", - "color": "AA00A2" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 4, - "created_at": "2013-01-21T15:27:22Z", - "updated_at": "2013-01-26T00:08:39Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "When reading CSV, XML or JSON from the web, it should be possible to read the data asynchronously.\r\n\r\n * For XML and JSON, we read the entire file before processing, so this should be just a simple `AsyncLoad` method.\r\n * For CSV, it would be nice to use some sort of async enumerator so that we can read the data asynchronously on demand." - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/17/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/17", - "id": 10128720, - "number": 17, - "title": "Will FSharp.Data work with mono on a Mac?", - "user": { - "login": "carsten-j", - "id": 2677833, - "avatar_url": "https://secure.gravatar.com/avatar/e24931e1dd5980a29c2df12214a93b63?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "e24931e1dd5980a29c2df12214a93b63", - "url": "https://api.github.com/users/carsten-j", - "html_url": "https://github.com/carsten-j", - "followers_url": "https://api.github.com/users/carsten-j/followers", - "following_url": "https://api.github.com/users/carsten-j/following", - "gists_url": "https://api.github.com/users/carsten-j/gists{/gist_id}", - "starred_url": "https://api.github.com/users/carsten-j/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/carsten-j/subscriptions", - "organizations_url": "https://api.github.com/users/carsten-j/orgs", - "repos_url": "https://api.github.com/users/carsten-j/repos", - "events_url": "https://api.github.com/users/carsten-j/events{/privacy}", - "received_events_url": "https://api.github.com/users/carsten-j/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/type-bug", - "name": "type-bug", - "color": "6E0069" - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/review", - "name": "review", - "color": "A68100" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 5, - "created_at": "2013-01-19T19:48:34Z", - "updated_at": "2013-02-16T14:17:32Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "Does the type providers work with mono on Mac? I am using visual studio on Windows right now but would like to switch to Mac if possible." - }, - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10", - "labels_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/labels{/name}", - "comments_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/comments", - "events_url": "https://api.github.com/repos/tpetricek/FSharp.Data/issues/10/events", - "html_url": "https://github.com/tpetricek/FSharp.Data/issues/10", - "id": 9971160, - "number": 10, - "title": "Add FsCharts to the nuget package", - "user": { - "login": "forki", - "id": 57396, - "avatar_url": "https://secure.gravatar.com/avatar/523ac2f66c6152ec45ff96d7f01665d2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "523ac2f66c6152ec45ff96d7f01665d2", - "url": "https://api.github.com/users/forki", - "html_url": "https://github.com/forki", - "followers_url": "https://api.github.com/users/forki/followers", - "following_url": "https://api.github.com/users/forki/following", - "gists_url": "https://api.github.com/users/forki/gists{/gist_id}", - "starred_url": "https://api.github.com/users/forki/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/forki/subscriptions", - "organizations_url": "https://api.github.com/users/forki/orgs", - "repos_url": "https://api.github.com/users/forki/repos", - "events_url": "https://api.github.com/users/forki/events{/privacy}", - "received_events_url": "https://api.github.com/users/forki/received_events", - "type": "User" - }, - "labels": [ - { - "url": "https://api.github.com/repos/tpetricek/FSharp.Data/labels/discussion", - "name": "discussion", - "color": "FFD440" - } - ], - "state": "open", - "assignee": null, - "milestone": null, - "comments": 5, - "created_at": "2013-01-15T08:22:52Z", - "updated_at": "2013-01-16T10:52:03Z", - "closed_at": null, - "pull_request": { - "html_url": null, - "diff_url": null, - "patch_url": null - }, - "body": "Hi,\r\n\r\nsince nearly all of the samples are using FsChart it would be cool it this could become part of the nuget package. This would allow me to write easier tutorials for my Dynamics NAV friends.\r\n\r\nCheers,\r\nSteffen" - } -] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml b/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml deleted file mode 100644 index f8119a2ab..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/HtmlBody.xml +++ /dev/null @@ -1,10 +0,0 @@ -
      - Main text -
      - First text - Another text -
      -
      -
      Second text
      -
      -
      \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd b/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd deleted file mode 100644 index bf0f6d5ad..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/IncludeFromWeb.xsd +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml b/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml deleted file mode 100644 index 988febe98..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/IrelandStations.xml +++ /dev/null @@ -1,1275 +0,0 @@ - - - - Belfast Central - - 54.6123 - -5.91744 - BFSTC - 228 - - - Lisburn - - 54.514 - -6.04327 - LBURN - 238 - - - Lurgan - - 54.4672 - -6.33547 - LURGN - 241 - - - Portadown - - 54.4295 - -6.43868 - PDOWN - 242 - - - Sligo - - 54.2723 - -8.48249 - SLIGO - 180 - - - Newry - - 54.1911 - -6.36225 - NEWRY - 260 - - - Collooney - - 54.1871 - -8.49453 - COLNY - 177 - - - Ballina - - 54.1085 - -9.16146 - BALNA - 167 - - - Ballymote - - 54.0887 - -8.52088 - BMOTE - 176 - - - Dundalk - - 54.0007 - -6.41291 - DDALK - 123 - - - Foxford - - 53.983 - -9.1364 - FXFRD - 193 - - - Boyle - - 53.9676 - -8.30438 - BOYLE - 175 - - - Carrick on Shannon - - 53.9383 - -8.10657 - CKOSH - 174 - - - Dromod - - 53.8591 - -7.9164 - DRMOD - 173 - - - Castlebar - - 53.8471 - -9.2873 - CLBAR - 168 - - - Manulla Junction - - 53.828 - -9.19296 - MNLAJ - 194 - - - Westport - - 53.7955 - -9.50885 - WPORT - 169 - - - Ballyhaunis - - 53.7616 - -8.7584 - BYHNS - 165 - - - Castlerea - - 53.7612 - -8.48448 - CSREA - 164 - - - Longford - - 53.7243 - -7.79574 - LFORD - 172 - - - Claremorris - - 53.7204 - -9.00222 - CLMRS - 166 - - - Drogheda - - 53.712 - -6.33538 - DGHDA - 120 - - - Edgeworthstown - - 53.6888 - -7.60299 - ETOWN - 171 - - - Laytown - - 53.6794 - -6.24253 - LTOWN - 119 - - - Gormanston - - 53.638 - -6.21705 - GSTON - 117 - - - Roscommon - - 53.6243 - -8.19631 - RSCMN - 163 - - - Balbriggan - - 53.6118 - -6.18226 - BBRGN - 116 - - - Skerries - - 53.5741 - -6.11933 - SKRES - 115 - - - Mullingar - - 53.523 - -7.34608 - MLGAR - 153 - - - Rush and Lusk - - 53.5201 - -6.1439 - RLUSK - 114 - - - Donabate - - 53.4855 - -6.15134 - DBATE - 113 - - - Malahide - - 53.4509 - -6.15649 - MHIDE - 112 - - - M3 Parkway - - 53.4349 - -6.46898 - M3WAY - 86 - - - Athlone - - 53.4273 - -7.93683 - ATLNE - 156 - - - Dunboyne - - 53.4175 - -6.46483 - DBYNE - 85 - - - Portmarnock - - 53.4169 - -6.1512 - PMNCK - 111 - - - Enfield - - 53.4157 - -6.83395 - ENFLD - 83 - - - Kilcock - - 53.4043 - -6.67892 - KCOCK - 90 - - - Clongriffin - - 53.4032 - -6.14839 - GRGRD - 187 - - - Sutton - - 53.392 - -6.11448 - SUTTN - 107 - - - Bayside - - 53.3917 - -6.13678 - BYSDE - 106 - - - Howth Junction - Donaghmede ( Howth Junction ) - 53.3909 - -6.15672 - HWTHJ - 105 - - - Howth - - 53.3891 - -6.07401 - HOWTH - 108 - - - Kilbarrack - - 53.387 - -6.16163 - KBRCK - 104 - - - Hansfield - - 53.3853 - -6.44205 - HAFLD - 87 - - - Clonsilla - - 53.3831 - -6.4242 - CLSLA - 94 - - - Castleknock - - 53.3816 - -6.37149 - CNOCK - 96 - - - Raheny - - 53.3815 - -6.17699 - RAHNY - 103 - - - Harmonstown - - 53.3786 - -6.19131 - HTOWN - 102 - - - Maynooth - - 53.378 - -6.58993 - MYNTH - 91 - - - Navan Road Parkway - Phoenix Park - 53.3777 - -6.34591 - PHNPK - 89 - - - Coolmine - - 53.3776 - -6.39072 - CMINE - 95 - - - Ashtown - - 53.3755 - -6.33135 - ASHTN - 97 - - - Leixlip (Confey) - - 53.3743 - -6.48624 - LXCON - 93 - - - Killester - - 53.373 - -6.20442 - KLSTR - 101 - - - Broombridge - - 53.3725 - -6.29869 - BBRDG - 98 - - - Leixlip (Louisa Bridge) - - 53.3704 - -6.50598 - LXLSA - 92 - - - Drumcondra - - 53.3632 - -6.25908 - DCDRA - 99 - - - Clontarf Road - - 53.3629 - -6.22753 - CTARF - 109 - - - Dublin Connolly - Connolly - 53.3531 - -6.24591 - CNLLY - 100 - - - Docklands - - 53.3509 - -6.23929 - DCKLS - 84 - - - Tara Street - - 53.347 - -6.25425 - TARA - 124 - - - Dublin Heuston - Heuston - 53.3464 - -6.29461 - HSTON - 1 - - - Dublin Pearse - Pearse - 53.3433 - -6.24829 - PERSE - 150 - - - Woodlawn - - 53.3432 - -8.47231 - WLAWN - 158 - - - Grand Canal Dock - - 53.3397 - -6.23773 - GCDK - 110 - - - Clara - - 53.3395 - -7.61596 - CLARA - 73 - - - Ballinasloe - - 53.3363 - -8.24081 - BSLOE - 157 - - - Adamstown - - 53.3353 - -6.45233 - ADMTN - 75 - - - Adamstown - - 53.3353 - -6.45233 - ADAMF - 975 - - - Lansdowne Road - - 53.3347 - -6.22979 - LDWNE - 125 - - - Cherry Orchard - Park West (Cherry Orchard ) - 53.334 - -6.37868 - CHORC - 76 - - - Cherry Orchard - Park West (Cherry Orchard ) - 53.334 - -6.37868 - PWESF - 976 - - - Clondalkin - Fonthill ( Clondalkin ) - 53.3334 - -6.40628 - CLONF - 977 - - - Clondalkin - Fonthill ( Clondalkin ) - 53.3334 - -6.40628 - CLDKN - 77 - - - Sandymount - - 53.3281 - -6.22116 - SMONT - 188 - - - Hazelhatch - Celbridge (Hazelhatch ) - 53.3223 - -6.52356 - HZLCH - 78 - - - Hazelhatch - Celbridge (Hazelhatch ) - 53.3223 - -6.52356 - HAZEF - 978 - - - Attymon - - 53.3212 - -8.60608 - ATMON - 159 - - - Sydney Parade - - 53.3206 - -6.21112 - SIDNY - 126 - - - Booterstown - - 53.3099 - -6.19498 - BTSTN - 127 - - - Blackrock - - 53.3027 - -6.17833 - BROCK - 128 - - - Athenry - - 53.3015 - -8.74855 - ATHRY - 162 - - - Seapoint - - 53.2991 - -6.16512 - SEAPT - 129 - - - Salthill - Monkstown ( Salthill ) - 53.2954 - -6.15206 - SHILL - 130 - - - Dun Laoghaire - - 53.2951 - -6.13498 - DLERY - 131 - - - Sandycove - Glasthule (Sandycove ) - 53.2878 - -6.12712 - SCOVE - 132 - - - Glenageary - - 53.2812 - -6.12289 - GLGRY - 133 - - - Dalkey - - 53.2756 - -6.10333 - DLKEY - 134 - - - Oranmore - - 53.2751 - -8.94792 - ORNMR - 161 - - - Galway - - 53.2736 - -9.04696 - GALWY - 170 - - - Tullamore - - 53.2704 - -7.49985 - TMORE - 72 - - - Killiney - - 53.2557 - -6.11317 - KILNY - 135 - - - Sallins - - 53.2469 - -6.66386 - SALNS - 79 - - - Shankill - - 53.2364 - -6.11691 - SKILL - 136 - - - Craughwell - - 53.2252 - -8.7359 - CRGHW - 184 - - - Woodbrook - - 53.22 - -6.1101 - WBROK - 801 - - - Bray - - 53.2043 - -6.10046 - BRAY - 140 - - - Newbridge - - 53.1855 - -6.80807 - NBRGE - 4 - - - Curragh - - 53.1725 - -6.86245 - CURAH - 5 - - - Kildare - - 53.163 - -6.90802 - KDARE - 6 - - - Ardrahan - - 53.1572 - -8.81483 - ARHAN - 183 - - - Portarlington - - 53.146 - -7.18055 - PTRTN - 8 - - - Monasterevin - - 53.1454 - -7.06361 - MONVN - 7 - - - Greystones - - 53.1442 - -6.06085 - GSTNS - 141 - - - Kilcoole - - 53.107 - -6.04112 - KCOOL - 139 - - - Gort - - 53.0653 - -8.81595 - GORT - 182 - - - Portlaoise - - 53.0371 - -7.30086 - PTLSE - 9 - - - Athy - - 52.992 - -6.9762 - ATHY - 45 - - - Wicklow - - 52.9882 - -6.05338 - WLOW - 142 - - - Roscrea - - 52.9607 - -7.7941 - RCREA - 31 - - - Cloughjordan - - 52.9363 - -8.0246 - CJRDN - 32 - - - Rathdrum - - 52.9295 - -6.22641 - RDRUM - 143 - - - Ballybrophy - - 52.8999 - -7.60259 - BBRHY - 11 - - - Nenagh - - 52.8605 - -8.19471 - NNAGH - 33 - - - Carlow - - 52.8407 - -6.92217 - CRLOW - 46 - - - Ennis - - 52.8386 - -8.97491 - ENNIS - 181 - - - Arklow - - 52.7932 - -6.15994 - ARKLW - 144 - - - Templemore - - 52.7878 - -7.82293 - TPMOR - 12 - - - Birdhill - - 52.7656 - -8.44247 - BHILL - 34 - - - Sixmilebridge - - 52.7376 - -8.78427 - SXMBR - 185 - - - Castleconnell - - 52.7128 - -8.49794 - CCONL - 35 - - - Muine Bheag - Bagenalstown - 52.699 - -6.95213 - MNEBG - 47 - - - Thurles - - 52.6766 - -7.82189 - THRLS - 13 - - - Gorey - - 52.6712 - -6.29195 - GOREY - 145 - - - Limerick - - 52.6587 - -8.62397 - LMRCK - 40 - - - Kilkenny - - 52.655 - -7.24498 - KKNNY - 48 - - - Thomastown - - 52.523 - -7.14891 - THTWN - 49 - - - Enniscorthy - - 52.5046 - -6.56627 - ECRTY - 147 - - - Limerick Junction - - 52.5009 - -8.20003 - LMRKJ - 16 - - - Tipperary - - 52.4701 - -8.1625 - TIPRY - 41 - - - Cahir - - 52.3777 - -7.92181 - CAHIR - 42 - - - Clonmel - - 52.3611 - -7.69936 - CLMEL - 43 - - - Carrick on Suir - - 52.3487 - -7.40354 - CKOSR - 44 - - - Charleville - - 52.3468 - -8.65362 - CVILL - 19 - - - Wexford - - 52.3434 - -6.4636 - WXFRD - 148 - - - Campile - - 52.2855 - -6.93896 - CPILE - 52 - - - Ballycullane - - 52.2834 - -6.83958 - BCLAN - 53 - - - Rosslare Strand - - 52.2726 - -6.39254 - RLSTD - 58 - - - Tralee - - 52.271 - -9.69846 - TRLEE - 28 - - - Wellingtonbridge - - 52.2678 - -6.75392 - WBDGE - 54 - - - Waterford - - 52.2667 - -7.1183 - WFORD - 50 - - - Rosslare Europort - Rosslare Harbour - 52.2531 - -6.33493 - RLEPT - 60 - - - Bridgetown - - 52.2312 - -6.54918 - BRGTN - 56 - - - Farranfore - - 52.1733 - -9.55278 - FFORE - 27 - - - Mallow - - 52.1396 - -8.65521 - MLLOW - 21 - - - Banteer - - 52.1287 - -8.89793 - BTEER - 23 - - - Rathmore - - 52.0854 - -9.21756 - RMORE - 25 - - - Millstreet - - 52.0776 - -9.06973 - MLSRT - 24 - - - Killarney - - 52.0595 - -9.50198 - KLRNY - 26 - - - Midleton - - 51.9212 - -8.17579 - MDLTN - 68 - - - Carrigtwohill - - 51.9163 - -8.26323 - CGTWL - 67 - - - Glounthaune - - 51.9112 - -8.3254 - GHANE - 380 - - - LittleIsland - Little Island - 51.9078 - -8.35466 - LSLND - 61 - - - Cork - - 51.9018 - -8.4582 - CORK - 30 - - - Fota - - 51.896 - -8.3183 - FOTA - 63 - - - Carrigaloe - - 51.8688 - -8.32417 - CGLOE - 64 - - - Rushbrooke - - 51.8496 - -8.32252 - RBROK - 65 - - - Cobh - - 51.8491 - -8.29956 - COBH - 66 - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml b/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml deleted file mode 100644 index 48b5ed304..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/JsonInXml.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - -2 - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv b/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv deleted file mode 100644 index d7d03c6ab..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/LastFM.tsv +++ /dev/null @@ -1,5 +0,0 @@ -user_000001 2009-05-04T23:08:57Z f1b1cf71-bd35-4e99-8624-24a6e15f133a Deep Dish Fuck Me Im Famous (Pacha Ibiza)-09-28-2007 -user_000001 2009-05-04T13:54:10Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Composition 0919 (Live_2009_4_15) -user_000001 2009-05-04T13:52:04Z 坂本龍一 Mc2 (Live_2009_4_15) -user_000001 2009-05-04T13:42:52Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Hibari (Live_2009_4_15) -user_000001 2009-05-04T13:42:11Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Mc1 (Live_2009_4_15) diff --git a/tests/FSharp.Data.Core.Tests/Data/MSFT.csv b/tests/FSharp.Data.Core.Tests/Data/MSFT.csv deleted file mode 100644 index 5af6dd5f5..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/MSFT.csv +++ /dev/null @@ -1,6528 +0,0 @@ -Date,Open,High,Low,Close,Volume,Adj Close -2012-01-27,29.45,29.53,29.17,29.23,44187700,29.23 -2012-01-26,29.61,29.70,29.40,29.50,49102800,29.50 -2012-01-25,29.07,29.65,29.07,29.56,59231700,29.56 -2012-01-24,29.47,29.57,29.18,29.34,51703300,29.34 -2012-01-23,29.55,29.95,29.35,29.73,76078100,29.73 -2012-01-20,28.82,29.74,28.75,29.71,165902900,29.71 -2012-01-19,28.16,28.44,28.03,28.12,74053500,28.12 -2012-01-18,28.31,28.40,27.97,28.23,64860600,28.23 -2012-01-17,28.40,28.65,28.17,28.26,72395300,28.26 -2012-01-13,27.93,28.25,27.79,28.25,60196100,28.25 -2012-01-12,27.87,28.02,27.65,28.00,49370800,28.00 -2012-01-11,27.43,27.98,27.37,27.72,65582400,27.72 -2012-01-10,27.93,28.15,27.75,27.84,60014400,27.84 -2012-01-09,28.05,28.10,27.72,27.74,59706800,27.74 -2012-01-06,27.53,28.19,27.53,28.11,99455500,28.11 -2012-01-05,27.38,27.73,27.29,27.68,56081400,27.68 -2012-01-04,26.82,27.47,26.78,27.40,80516100,27.40 -2012-01-03,26.55,26.96,26.39,26.77,64731500,26.77 -2011-12-30,26.00,26.12,25.91,25.96,27395700,25.96 -2011-12-29,25.95,26.05,25.86,26.02,22616900,26.02 -2011-12-28,26.11,26.15,25.76,25.82,29822500,25.82 -2011-12-27,25.96,26.14,25.93,26.04,21287200,26.04 -2011-12-23,25.91,26.04,25.73,26.03,23205800,26.03 -2011-12-22,25.82,25.86,25.48,25.81,35794100,25.81 -2011-12-21,26.01,26.19,25.44,25.76,64132500,25.76 -2011-12-20,25.86,26.10,25.81,26.03,60767600,26.03 -2011-12-19,26.02,26.12,25.46,25.53,52258300,25.53 -2011-12-16,25.67,26.17,25.63,26.00,101408100,26.00 -2011-12-15,25.72,25.88,25.54,25.56,46213900,25.56 -2011-12-14,25.72,25.86,25.57,25.59,47926400,25.59 -2011-12-13,25.75,26.10,25.65,25.76,54581100,25.76 -2011-12-12,25.41,25.57,25.29,25.51,38945900,25.51 -2011-12-09,25.52,25.87,25.50,25.70,53788500,25.70 -2011-12-08,25.48,25.72,25.37,25.40,60522200,25.40 -2011-12-07,25.67,25.76,25.34,25.60,62667000,25.60 -2011-12-06,25.81,25.87,25.61,25.66,46175300,25.66 -2011-12-05,25.78,25.80,25.50,25.70,56818400,25.70 -2011-12-02,25.59,25.62,25.16,25.22,52293800,25.22 -2011-12-01,25.56,25.63,25.20,25.28,48545400,25.28 -2011-11-30,25.37,25.59,25.14,25.58,81350900,25.58 -2011-11-29,24.82,25.04,24.75,24.84,40917100,24.84 -2011-11-28,24.94,24.97,24.69,24.87,46766700,24.87 -2011-11-25,24.38,24.67,24.30,24.30,26164600,24.30 -2011-11-23,24.61,24.79,24.47,24.47,49099700,24.47 -2011-11-22,24.89,24.96,24.65,24.79,49204500,24.79 -2011-11-21,25.24,25.25,24.90,25.00,61882500,25.00 -2011-11-18,25.48,25.50,25.15,25.30,47626200,25.30 -2011-11-17,26.01,26.04,25.44,25.54,70977500,25.54 -2011-11-16,26.47,26.51,26.04,26.07,53262800,26.07 -2011-11-15,26.56,26.94,26.40,26.74,43874200,26.74 -2011-11-14,26.88,27.00,26.65,26.76,34199200,26.56 -2011-11-11,26.58,27.08,26.57,26.91,37903000,26.71 -2011-11-10,26.47,26.50,26.12,26.28,32514400,26.08 -2011-11-09,26.59,26.75,26.06,26.20,62950900,26.00 -2011-11-08,27.01,27.20,26.69,27.16,47822500,26.96 -2011-11-07,26.21,26.82,26.13,26.80,42589700,26.60 -2011-11-04,26.38,26.40,26.00,26.25,36549200,26.05 -2011-11-03,26.24,26.59,25.98,26.53,65836100,26.33 -2011-11-02,26.10,26.20,25.70,26.01,53533100,25.82 -2011-11-01,26.19,26.32,25.86,25.99,61182600,25.80 -2011-10-31,26.76,27.00,26.62,26.63,46799000,26.43 -2011-10-28,27.14,27.19,26.79,26.98,57712100,26.78 -2011-10-27,27.13,27.40,26.65,27.25,74512400,27.05 -2011-10-26,27.03,27.06,26.10,26.59,63029900,26.39 -2011-10-25,27.08,27.23,26.72,26.81,53554600,26.61 -2011-10-24,27.06,27.40,27.04,27.19,56897800,26.99 -2011-10-21,27.15,27.19,26.80,27.16,76620600,26.96 -2011-10-20,27.26,27.34,26.40,27.04,76300200,26.84 -2011-10-19,27.37,27.47,27.01,27.13,42880000,26.93 -2011-10-18,26.94,27.40,26.80,27.31,52487900,27.11 -2011-10-17,27.11,27.42,26.85,26.98,39453300,26.78 -2011-10-14,27.31,27.50,27.02,27.27,50947700,27.07 -2011-10-13,26.76,27.20,26.62,27.18,43823500,26.98 -2011-10-12,27.18,27.31,26.90,26.96,52489800,26.76 -2011-10-11,26.86,27.07,26.72,27.00,38826200,26.80 -2011-10-10,26.58,26.97,26.47,26.94,41815300,26.74 -2011-10-07,26.34,26.51,26.20,26.25,52741600,26.05 -2011-10-06,25.90,26.40,25.70,26.34,55111400,26.14 -2011-10-05,25.42,26.16,25.16,25.89,94061300,25.70 -2011-10-04,24.30,25.39,24.26,25.34,83485400,25.15 -2011-10-03,24.72,25.34,24.52,24.53,64592500,24.35 -2011-09-30,25.20,25.50,24.88,24.89,54060500,24.70 -2011-09-29,25.98,26.17,25.09,25.45,63407300,25.26 -2011-09-28,25.93,26.37,25.51,25.58,60736200,25.39 -2011-09-27,25.66,25.92,25.45,25.67,55620700,25.48 -2011-09-26,25.19,25.52,24.73,25.44,51057600,25.25 -2011-09-23,24.90,25.15,24.69,25.06,64768100,24.87 -2011-09-22,25.30,25.65,24.60,25.06,96278300,24.87 -2011-09-21,27.05,27.06,25.97,25.99,72750700,25.80 -2011-09-20,27.31,27.50,26.93,26.98,49211900,26.78 -2011-09-19,26.80,27.31,26.60,27.21,52324900,27.01 -2011-09-16,27.05,27.27,26.83,27.12,89681500,26.92 -2011-09-15,26.73,27.03,26.31,26.99,67808300,26.79 -2011-09-14,26.17,26.80,25.89,26.50,66739200,26.30 -2011-09-13,25.92,26.19,25.81,26.04,48792300,25.85 -2011-09-12,25.44,25.93,25.27,25.89,55046100,25.70 -2011-09-09,26.00,26.18,25.50,25.74,64529200,25.55 -2011-09-08,26.00,26.66,25.95,26.22,65811900,26.02 -2011-09-07,25.69,26.00,25.57,26.00,41961000,25.81 -2011-09-06,25.20,25.59,25.11,25.51,54929300,25.32 -2011-09-02,25.78,26.00,25.66,25.80,43894400,25.61 -2011-09-01,26.46,26.86,26.21,26.21,60510800,26.01 -2011-08-31,26.29,26.71,26.26,26.60,59300800,26.40 -2011-08-30,25.73,26.43,25.70,26.23,57341400,26.03 -2011-08-29,25.53,25.86,25.37,25.84,38863200,25.65 -2011-08-26,24.51,25.34,24.42,25.25,71957000,25.06 -2011-08-25,25.08,25.16,24.50,24.57,48192000,24.39 -2011-08-24,24.65,24.93,24.42,24.90,45329700,24.71 -2011-08-23,24.03,24.75,24.03,24.72,59670600,24.54 -2011-08-22,24.42,24.49,23.79,23.98,54721000,23.80 -2011-08-19,24.41,24.62,23.91,24.05,77397900,23.87 -2011-08-18,24.57,25.09,24.03,24.67,105714200,24.49 -2011-08-17,25.25,25.70,24.93,25.25,50923700,25.06 -2011-08-16,25.22,25.59,25.05,25.35,54251500,25.16 -2011-08-15,25.24,25.58,25.15,25.51,56529400,25.16 -2011-08-12,25.13,25.34,24.65,25.10,64787100,24.76 -2011-08-11,24.50,25.38,24.40,25.19,90690100,24.84 -2011-08-10,24.95,25.09,24.10,24.20,127819900,23.87 -2011-08-09,24.71,25.62,24.03,25.58,126268900,25.23 -2011-08-08,25.02,25.60,24.39,24.48,134257200,24.14 -2011-08-05,25.97,26.10,25.23,25.68,112071700,25.33 -2011-08-04,26.53,26.87,25.93,25.94,92949500,25.58 -2011-08-03,26.83,27.00,26.48,26.92,64581200,26.55 -2011-08-02,26.98,27.45,26.76,26.80,63883100,26.43 -2011-08-01,27.51,27.69,26.75,27.27,61838400,26.90 -2011-07-29,27.52,27.71,27.26,27.40,104394800,27.02 -2011-07-28,27.29,28.07,27.21,27.72,83761400,27.34 -2011-07-27,27.88,27.99,27.20,27.33,71488700,26.96 -2011-07-26,27.82,28.15,27.78,28.08,74636500,27.70 -2011-07-25,27.26,28.09,27.19,27.91,108482400,27.53 -2011-07-22,26.86,27.55,26.68,27.53,76380600,27.15 -2011-07-21,27.04,27.31,26.65,27.10,81737400,26.73 -2011-07-20,27.28,27.35,26.98,27.06,49795400,26.69 -2011-07-19,26.81,27.64,26.78,27.54,86730600,27.16 -2011-07-18,26.63,26.90,26.26,26.59,44501900,26.23 -2011-07-15,26.47,26.93,26.47,26.78,49132400,26.41 -2011-07-14,26.62,27.01,26.36,26.47,46382300,26.11 -2011-07-13,26.60,26.96,26.51,26.63,40861800,26.27 -2011-07-12,26.55,26.79,26.34,26.54,47319300,26.18 -2011-07-11,26.62,26.80,26.49,26.63,43999800,26.27 -2011-07-08,26.54,26.98,26.51,26.92,58332500,26.55 -2011-07-07,26.49,26.88,26.36,26.77,51946500,26.40 -2011-07-06,25.97,26.37,25.96,26.33,48744200,25.97 -2011-07-05,26.10,26.15,25.90,26.03,37805300,25.67 -2011-07-01,25.93,26.17,25.84,26.02,52906200,25.66 -2011-06-30,25.74,26.00,25.66,26.00,52535400,25.64 -2011-06-29,25.71,25.71,25.36,25.62,66051000,25.27 -2011-06-28,25.30,25.92,25.16,25.80,81032100,25.45 -2011-06-27,24.23,25.46,24.23,25.20,92044200,24.85 -2011-06-24,24.51,24.54,24.19,24.30,101387200,23.97 -2011-06-23,24.44,24.65,24.20,24.63,59470400,24.29 -2011-06-22,24.60,24.81,24.59,24.65,44287300,24.31 -2011-06-21,24.52,24.86,24.40,24.76,49708700,24.42 -2011-06-20,24.17,24.66,24.16,24.47,54338400,24.13 -2011-06-17,24.22,24.30,23.98,24.26,83320400,23.93 -2011-06-16,23.75,24.10,23.65,24.00,57184100,23.67 -2011-06-15,24.00,24.01,23.67,23.74,49410200,23.41 -2011-06-14,24.30,24.45,24.19,24.22,42894500,23.89 -2011-06-13,24.04,24.19,23.70,24.04,47574100,23.71 -2011-06-10,24.02,24.02,23.69,23.71,49327200,23.39 -2011-06-09,24.01,24.04,23.82,23.96,42878700,23.63 -2011-06-08,23.90,24.02,23.86,23.94,42205000,23.61 -2011-06-07,24.09,24.17,23.90,24.06,41112600,23.73 -2011-06-06,23.89,24.25,23.77,24.01,54778700,23.68 -2011-06-03,24.05,24.14,23.84,23.91,60697700,23.58 -2011-06-02,24.49,24.65,24.18,24.22,51487800,23.89 -2011-06-01,24.99,25.10,24.37,24.43,74033500,24.10 -2011-05-31,24.96,25.06,24.70,25.01,60196300,24.67 -2011-05-27,24.68,24.90,24.65,24.76,50251000,24.42 -2011-05-26,24.35,25.03,24.32,24.67,78016600,24.33 -2011-05-25,24.19,24.31,24.16,24.19,34904200,23.86 -2011-05-24,24.20,24.29,24.04,24.15,47691800,23.82 -2011-05-23,24.21,24.25,24.03,24.17,52692500,23.84 -2011-05-20,24.72,24.87,24.44,24.49,45451500,24.15 -2011-05-19,24.85,24.88,24.50,24.72,37783600,24.38 -2011-05-18,24.53,24.74,24.25,24.69,53931100,24.35 -2011-05-17,24.40,24.70,24.27,24.52,82882100,24.18 -2011-05-16,24.96,25.07,24.50,24.57,91350900,24.08 -2011-05-13,25.28,25.32,24.95,25.03,66812300,24.53 -2011-05-12,25.35,25.39,25.10,25.32,77400000,24.81 -2011-05-11,25.65,25.66,25.21,25.36,78600000,24.85 -2011-05-10,25.38,25.85,25.25,25.67,120798700,25.15 -2011-05-09,25.80,25.96,25.67,25.83,38696400,25.31 -2011-05-06,26.07,26.22,25.75,25.87,55993000,25.35 -2011-05-05,26.05,26.08,25.68,25.79,55600000,25.27 -2011-05-04,25.85,26.25,25.79,26.06,73292300,25.54 -2011-05-03,25.60,25.85,25.49,25.81,71892900,25.29 -2011-05-02,25.94,26.00,25.48,25.66,89825600,25.14 -2011-04-29,26.55,26.64,25.36,25.92,319317900,25.40 -2011-04-28,26.46,26.87,26.40,26.71,80200000,26.17 -2011-04-27,26.30,26.39,26.13,26.38,52689000,25.85 -2011-04-26,25.74,26.44,25.67,26.19,69200000,25.66 -2011-04-25,25.56,25.62,25.34,25.61,33525100,25.09 -2011-04-21,25.79,25.89,25.36,25.52,46892300,25.01 -2011-04-20,25.54,26.00,25.51,25.76,61608600,25.24 -2011-04-19,25.00,25.17,24.87,25.15,38892400,24.64 -2011-04-18,25.10,25.28,24.72,25.08,58045100,24.58 -2011-04-15,25.46,25.56,25.18,25.37,65080400,24.86 -2011-04-14,25.42,25.44,25.09,25.42,55239900,24.91 -2011-04-13,25.65,25.87,25.56,25.63,38144700,25.11 -2011-04-12,25.83,25.85,25.55,25.64,36920400,25.12 -2011-04-11,26.19,26.25,25.80,25.98,34286300,25.46 -2011-04-08,26.17,26.28,25.96,26.07,39887600,25.55 -2011-04-07,26.19,26.26,25.97,26.20,46134700,25.67 -2011-04-06,25.98,26.31,25.86,26.15,65581400,25.62 -2011-04-05,25.82,26.18,25.74,25.78,73694500,25.26 -2011-04-04,25.45,25.66,25.41,25.55,35433700,25.04 -2011-04-01,25.53,25.53,25.31,25.48,63114200,24.97 -2011-03-31,25.60,25.68,25.34,25.39,63233700,24.88 -2011-03-30,25.60,25.72,25.50,25.61,41999300,25.09 -2011-03-29,25.34,25.52,25.30,25.49,40763500,24.98 -2011-03-28,25.66,25.72,25.38,25.41,48973200,24.90 -2011-03-25,25.93,25.95,25.59,25.62,57029800,25.10 -2011-03-24,25.60,25.87,25.50,25.81,38696700,25.29 -2011-03-23,25.23,25.61,25.18,25.54,43969000,25.03 -2011-03-22,25.30,25.46,25.23,25.30,30895600,24.79 -2011-03-21,25.18,25.58,25.15,25.33,46878100,24.82 -2011-03-18,25.06,25.18,24.80,24.80,85486700,24.30 -2011-03-17,25.06,25.22,24.75,24.78,62497000,24.28 -2011-03-16,25.22,25.28,24.68,24.79,100725400,24.29 -2011-03-15,25.08,25.47,25.00,25.39,76067300,24.88 -2011-03-14,25.49,25.76,25.35,25.69,54473400,25.17 -2011-03-11,25.41,25.85,25.36,25.68,49905800,25.16 -2011-03-10,25.62,25.71,25.35,25.41,66549500,24.90 -2011-03-09,25.81,25.98,25.66,25.89,39789100,25.37 -2011-03-08,25.77,26.02,25.65,25.91,50549800,25.39 -2011-03-07,26.13,26.27,25.55,25.72,64980400,25.20 -2011-03-04,26.22,26.24,25.80,25.95,70437200,25.43 -2011-03-03,26.26,26.40,26.18,26.20,68271500,25.67 -2011-03-02,26.11,26.37,26.04,26.08,48658200,25.56 -2011-03-01,26.60,26.78,26.15,26.16,60055000,25.63 -2011-02-28,26.69,26.86,26.51,26.58,51379900,26.05 -2011-02-25,26.91,26.95,26.50,26.55,53006300,26.02 -2011-02-24,26.64,27.06,26.50,26.77,64494200,26.23 -2011-02-23,26.53,26.86,26.43,26.59,60234100,26.05 -2011-02-22,26.78,27.10,26.52,26.59,60889000,26.05 -2011-02-18,27.13,27.21,26.99,27.06,68667800,26.52 -2011-02-17,26.97,27.37,26.91,27.21,57207300,26.66 -2011-02-16,27.05,27.07,26.60,27.02,70817900,26.48 -2011-02-15,27.04,27.33,26.95,26.96,44116500,26.42 -2011-02-14,27.21,27.27,26.95,27.23,56766200,26.53 -2011-02-11,27.76,27.81,27.07,27.25,83939700,26.54 -2011-02-10,27.93,27.94,27.29,27.50,76672400,26.79 -2011-02-09,28.19,28.26,27.91,27.97,52905100,27.25 -2011-02-08,28.10,28.34,28.05,28.28,34904200,27.55 -2011-02-07,27.80,28.34,27.79,28.20,68980900,27.47 -2011-02-04,27.70,27.84,27.51,27.77,40412200,27.05 -2011-02-03,27.97,27.97,27.54,27.65,60340100,26.93 -2011-02-02,27.93,28.11,27.88,27.94,45824000,27.22 -2011-02-01,27.80,28.06,27.61,27.99,62810700,27.27 -2011-01-31,27.77,27.90,27.42,27.73,65029000,27.01 -2011-01-28,28.90,28.93,27.45,27.75,141249400,27.03 -2011-01-27,28.75,29.46,28.49,28.87,146938600,28.12 -2011-01-26,28.51,28.99,28.50,28.78,74628800,28.04 -2011-01-25,28.14,28.45,28.12,28.45,42436600,27.71 -2011-01-24,28.02,28.56,27.99,28.38,52047800,27.65 -2011-01-21,28.40,28.43,28.02,28.02,58080300,27.29 -2011-01-20,28.50,28.55,28.13,28.35,58613600,27.62 -2011-01-19,28.46,28.68,28.27,28.47,50005900,27.73 -2011-01-18,28.16,28.74,28.14,28.66,53322700,27.92 -2011-01-14,28.08,28.38,27.91,28.30,62688400,27.57 -2011-01-13,28.33,28.39,28.01,28.19,67077600,27.46 -2011-01-12,28.12,28.59,28.07,28.55,52631100,27.81 -2011-01-11,28.20,28.25,28.05,28.11,50298900,27.38 -2011-01-10,28.26,28.40,28.04,28.22,57573600,27.49 -2011-01-07,28.64,28.74,28.25,28.60,73762000,27.86 -2011-01-06,28.04,28.85,27.86,28.82,87992900,28.07 -2011-01-05,27.90,28.01,27.77,28.00,58998700,27.28 -2011-01-04,27.94,28.17,27.85,28.09,54405600,27.36 -2011-01-03,28.05,28.18,27.92,27.98,53443800,27.26 -2010-12-31,27.80,27.92,27.63,27.91,24752000,27.19 -2010-12-30,27.92,28.00,27.78,27.85,20786100,27.13 -2010-12-29,27.94,28.12,27.88,27.97,19502500,27.25 -2010-12-28,27.97,28.17,27.96,28.01,23042200,27.29 -2010-12-27,28.12,28.20,27.88,28.07,21652800,27.34 -2010-12-23,27.97,28.32,27.96,28.30,24902500,27.57 -2010-12-22,28.01,28.40,27.98,28.19,42252300,27.46 -2010-12-21,27.85,28.14,27.76,28.07,38153000,27.34 -2010-12-20,27.95,27.99,27.68,27.81,52811000,27.09 -2010-12-17,27.92,28.09,27.75,27.90,87456500,27.18 -2010-12-16,27.76,27.99,27.66,27.99,57680200,27.27 -2010-12-15,27.53,27.99,27.53,27.85,69634200,27.13 -2010-12-14,27.31,27.75,27.26,27.62,64070500,26.91 -2010-12-13,27.27,27.45,27.17,27.25,47943900,26.54 -2010-12-10,27.19,27.40,27.11,27.34,37625800,26.63 -2010-12-09,27.28,27.34,27.01,27.08,47148300,26.38 -2010-12-08,26.83,27.24,26.80,27.23,41666800,26.53 -2010-12-07,27.08,27.13,26.85,26.87,57860500,26.17 -2010-12-06,26.93,26.98,26.76,26.84,36264200,26.15 -2010-12-03,26.81,27.06,26.78,27.02,52622000,26.32 -2010-12-02,26.24,26.98,26.20,26.89,91759200,26.19 -2010-12-01,25.57,26.25,25.56,26.04,74123500,25.37 -2010-11-30,25.05,25.47,25.00,25.26,75282100,24.61 -2010-11-29,25.19,25.42,24.93,25.31,56603600,24.65 -2010-11-26,25.21,25.41,25.17,25.25,21356500,24.60 -2010-11-24,25.20,25.46,25.16,25.37,56825900,24.71 -2010-11-23,25.57,25.60,25.09,25.12,69742500,24.47 -2010-11-22,25.65,25.74,25.44,25.73,53350500,25.06 -2010-11-19,25.80,25.83,25.60,25.69,52423200,25.03 -2010-11-18,25.71,26.08,25.61,25.84,59514000,25.17 -2010-11-17,25.90,25.91,25.55,25.57,58299700,24.91 -2010-11-16,26.04,26.04,25.65,25.81,65339200,25.14 -2010-11-15,26.33,26.50,26.17,26.20,51794600,25.37 -2010-11-12,26.47,26.52,26.10,26.27,64962200,25.43 -2010-11-11,26.68,26.72,26.28,26.68,62073100,25.83 -2010-11-10,27.01,27.08,26.81,26.94,52277300,26.08 -2010-11-09,26.81,27.11,26.71,26.95,58538600,26.09 -2010-11-08,26.68,28.87,26.58,26.81,71670800,25.96 -2010-11-05,27.17,27.19,26.53,26.85,110953700,26.00 -2010-11-04,27.41,27.43,27.01,27.14,93599300,26.28 -2010-11-03,27.46,27.49,26.96,27.03,110255300,26.17 -2010-11-02,27.06,27.42,27.02,27.39,54402100,26.52 -2010-11-01,26.88,27.22,26.70,26.95,61912100,26.09 -2010-10-29,27.15,27.20,26.48,26.67,114193200,25.82 -2010-10-28,26.21,26.38,25.92,26.28,80730300,25.44 -2010-10-27,25.79,26.11,25.62,26.05,64805500,25.22 -2010-10-26,25.12,25.97,25.06,25.90,69304200,25.08 -2010-10-25,25.24,25.35,25.17,25.19,50912400,24.39 -2010-10-22,25.52,25.54,25.27,25.38,25837900,24.57 -2010-10-21,25.40,25.54,25.05,25.42,50032400,24.61 -2010-10-20,25.26,25.40,25.10,25.31,56283600,24.50 -2010-10-19,25.27,25.37,24.95,25.10,66150900,24.30 -2010-10-18,25.59,25.95,25.45,25.82,48330500,25.00 -2010-10-15,25.36,25.55,25.23,25.54,68954800,24.73 -2010-10-14,25.29,25.34,25.00,25.23,51949100,24.43 -2010-10-13,25.02,25.54,24.89,25.34,75336500,24.53 -2010-10-12,24.65,24.93,24.43,24.83,50141500,24.04 -2010-10-11,24.74,24.74,24.50,24.59,27587800,23.81 -2010-10-08,24.62,24.65,24.37,24.57,41327800,23.79 -2010-10-07,24.62,24.75,24.28,24.53,50096100,23.75 -2010-10-06,24.32,24.54,24.13,24.43,50489700,23.65 -2010-10-05,24.06,24.45,23.91,24.35,78152900,23.57 -2010-10-04,23.96,23.99,23.78,23.91,98143400,23.15 -2010-10-01,24.77,24.82,24.30,24.38,62672300,23.60 -2010-09-30,24.61,24.83,24.36,24.49,61262700,23.71 -2010-09-29,24.63,24.66,24.40,24.50,44318900,23.72 -2010-09-28,24.80,24.90,24.35,24.68,56041200,23.89 -2010-09-27,24.85,24.99,24.59,24.73,43603300,23.94 -2010-09-24,24.64,24.80,24.58,24.78,51948800,23.99 -2010-09-23,24.51,24.59,24.36,24.43,46201800,23.65 -2010-09-22,24.89,24.97,24.36,24.61,94299400,23.83 -2010-09-21,25.42,25.42,25.08,25.15,52675700,24.35 -2010-09-20,25.28,25.52,25.11,25.43,49838700,24.62 -2010-09-17,25.40,25.53,25.08,25.22,70341600,24.42 -2010-09-16,25.06,25.37,25.05,25.33,44548300,24.52 -2010-09-15,25.10,25.22,24.92,25.12,56201900,24.32 -2010-09-14,25.04,25.35,24.89,25.03,87160400,24.23 -2010-09-13,24.20,25.29,24.09,25.11,114680400,24.31 -2010-09-10,23.98,24.03,23.79,23.85,58284300,23.09 -2010-09-09,24.19,24.21,23.99,24.01,46028900,23.25 -2010-09-08,24.07,24.20,23.74,23.93,65512400,23.17 -2010-09-07,24.10,24.30,23.92,23.96,51928700,23.20 -2010-09-03,24.24,24.45,24.20,24.29,64189100,23.52 -2010-09-02,23.88,23.95,23.71,23.94,48837100,23.18 -2010-09-01,23.67,23.95,23.54,23.90,65235900,23.14 -2010-08-31,23.60,23.73,23.32,23.47,66074600,22.72 -2010-08-30,23.74,23.82,23.60,23.64,45453100,22.89 -2010-08-27,23.88,24.02,23.51,23.93,60939400,23.17 -2010-08-26,24.09,24.19,23.79,23.82,49105300,23.06 -2010-08-25,24.00,24.22,23.87,24.10,47404800,23.33 -2010-08-24,24.09,24.35,24.00,24.04,66522500,23.27 -2010-08-23,24.44,24.64,24.24,24.28,51643000,23.51 -2010-08-20,24.31,24.40,24.20,24.23,49560100,23.46 -2010-08-19,24.62,24.74,24.21,24.44,54064600,23.66 -2010-08-18,24.68,24.95,24.41,24.82,46818900,24.03 -2010-08-17,24.71,24.96,24.60,24.71,52912600,23.92 -2010-08-16,24.36,24.61,24.30,24.50,40909700,23.59 -2010-08-13,24.35,24.67,24.24,24.40,45263500,23.50 -2010-08-12,24.42,24.68,24.36,24.49,70240500,23.58 -2010-08-11,24.68,24.90,24.56,24.86,76746900,23.94 -2010-08-10,25.33,25.34,24.88,25.07,87257700,24.14 -2010-08-09,25.55,25.73,25.37,25.61,57096500,24.66 -2010-08-06,25.18,25.56,25.02,25.55,55982100,24.61 -2010-08-05,25.49,25.58,25.21,25.37,64922100,24.43 -2010-08-04,26.15,26.24,25.44,25.73,78531900,24.78 -2010-08-03,26.20,26.35,25.97,26.16,56877700,25.19 -2010-08-02,25.99,26.38,25.75,26.33,55044600,25.36 -2010-07-30,25.75,25.84,25.35,25.81,83534800,24.86 -2010-07-29,26.13,26.41,25.60,26.03,69446200,25.07 -2010-07-28,26.07,26.19,25.83,25.95,69704800,24.99 -2010-07-27,26.14,26.24,25.96,26.16,60672100,25.19 -2010-07-26,25.86,26.20,25.80,26.10,67249900,25.14 -2010-07-23,25.84,26.02,25.25,25.81,108520100,24.86 -2010-07-22,25.51,25.99,25.47,25.84,73016400,24.88 -2010-07-21,25.60,25.65,24.98,25.12,73297300,24.19 -2010-07-20,24.86,25.48,24.70,25.48,45530700,24.54 -2010-07-19,24.96,25.30,24.91,25.23,38181800,24.30 -2010-07-16,25.51,25.64,24.88,24.89,65064800,23.97 -2010-07-15,25.50,25.59,24.98,25.51,56934700,24.57 -2010-07-14,25.50,25.61,25.12,25.44,72808100,24.50 -2010-07-13,25.14,25.30,24.90,25.13,61928700,24.20 -2010-07-12,24.43,24.89,24.42,24.83,49854200,23.91 -2010-07-09,24.33,24.41,24.15,24.27,53806100,23.37 -2010-07-08,24.60,24.62,23.97,24.41,50758100,23.51 -2010-07-07,23.82,24.32,23.61,24.30,79965300,23.40 -2010-07-06,23.70,24.09,23.58,23.82,73592000,22.94 -2010-07-02,23.36,23.48,23.05,23.27,62485100,22.41 -2010-07-01,23.09,23.32,22.73,23.16,92239400,22.30 -2010-06-30,23.30,23.68,22.95,23.01,81050500,22.16 -2010-06-29,24.13,24.20,23.11,23.31,119882100,22.45 -2010-06-28,24.51,24.61,24.12,24.31,73784800,23.41 -2010-06-25,25.05,25.11,24.31,24.53,156256700,23.62 -2010-06-24,25.46,25.72,24.93,25.00,85243400,24.08 -2010-06-23,25.78,25.78,25.22,25.31,61466200,24.37 -2010-06-22,26.16,26.45,25.76,25.77,55985400,24.82 -2010-06-21,26.78,26.89,25.89,25.95,54625300,24.99 -2010-06-18,26.37,26.53,26.17,26.44,52075600,25.46 -2010-06-17,26.56,26.67,26.04,26.37,47995500,25.40 -2010-06-16,26.47,26.58,26.23,26.32,48698000,25.35 -2010-06-15,25.75,26.65,25.74,26.58,81641500,25.60 -2010-06-14,25.86,25.96,25.47,25.50,50972400,24.56 -2010-06-11,25.04,25.72,24.77,25.66,68057700,24.71 -2010-06-10,25.13,25.15,24.78,25.00,78930900,24.08 -2010-06-09,25.22,25.52,24.75,24.79,87794000,23.87 -2010-06-08,25.25,25.26,24.65,25.11,87355000,24.18 -2010-06-07,25.82,25.83,25.24,25.29,80456200,24.36 -2010-06-04,26.10,26.57,25.62,25.79,89832200,24.84 -2010-06-03,26.55,26.93,26.41,26.86,67837000,25.87 -2010-06-02,26.06,26.48,25.73,26.46,65718800,25.48 -2010-06-01,25.53,26.31,25.52,25.89,76152400,24.93 -2010-05-28,25.84,26.12,25.66,25.80,67496900,24.85 -2010-05-27,25.73,26.36,25.73,26.00,136433600,25.04 -2010-05-26,26.23,26.61,24.56,25.01,176684100,24.09 -2010-05-25,25.65,26.33,25.38,26.07,98373600,25.11 -2010-05-24,26.85,26.86,26.26,26.27,73711700,25.30 -2010-05-21,26.63,27.11,26.44,26.84,117596300,25.85 -2010-05-20,27.65,27.84,27.04,27.11,87991100,26.11 -2010-05-19,28.52,28.69,27.79,28.24,61746700,27.20 -2010-05-18,28.87,29.00,28.40,28.60,52690600,27.54 -2010-05-17,29.12,29.23,28.45,28.94,46053300,27.75 -2010-05-14,29.20,29.21,28.64,28.93,63334000,27.74 -2010-05-13,29.26,29.73,29.18,29.24,45188800,28.03 -2010-05-12,28.98,29.58,28.92,29.44,47146800,28.22 -2010-05-11,28.68,29.65,28.57,28.88,63789400,27.69 -2010-05-10,29.01,29.48,28.71,28.94,86653300,27.75 -2010-05-07,28.93,28.95,27.32,28.21,173718100,27.05 -2010-05-06,29.59,29.88,27.91,28.98,128613000,27.78 -2010-05-05,29.77,30.09,29.69,29.85,66833800,28.62 -2010-05-04,30.52,30.55,29.75,30.13,82085600,28.89 -2010-05-03,30.67,31.06,30.58,30.86,43989500,29.59 -2010-04-30,31.07,31.08,30.52,30.54,63214800,29.28 -2010-04-29,30.93,31.43,30.67,31.00,52665200,29.72 -2010-04-28,30.92,31.00,30.62,30.91,64557900,29.63 -2010-04-27,30.95,31.25,30.75,30.85,68730900,29.58 -2010-04-26,31.00,31.28,30.86,31.11,63649300,29.83 -2010-04-23,31.12,31.58,30.65,30.96,126766600,29.68 -2010-04-22,31.04,31.53,30.90,31.39,84847600,30.09 -2010-04-21,31.33,31.50,31.23,31.33,55343100,30.04 -2010-04-20,31.22,31.44,31.13,31.36,52199500,30.07 -2010-04-19,30.77,31.25,30.76,31.04,64970300,29.76 -2010-04-16,30.79,30.98,30.60,30.67,88703100,29.40 -2010-04-15,30.82,30.95,30.71,30.87,52745400,29.60 -2010-04-14,30.79,31.00,30.66,30.82,68941200,29.55 -2010-04-13,30.15,30.50,30.13,30.45,41374600,29.19 -2010-04-12,30.25,30.49,30.21,30.32,37068800,29.07 -2010-04-09,29.95,30.41,29.90,30.34,54752500,29.09 -2010-04-08,29.32,29.98,29.30,29.92,63713800,28.68 -2010-04-07,29.16,29.56,29.14,29.35,58318800,28.14 -2010-04-06,29.15,29.58,28.98,29.32,47366800,28.11 -2010-04-05,29.13,29.43,29.03,29.27,34331200,28.06 -2010-04-01,29.35,29.54,28.62,29.16,74768100,27.96 -2010-03-31,29.64,29.72,29.17,29.29,63760000,28.08 -2010-03-30,29.63,29.86,29.50,29.77,34954800,28.54 -2010-03-29,29.71,29.82,29.55,29.59,33336000,28.37 -2010-03-26,30.09,30.20,29.59,29.66,55595500,28.44 -2010-03-25,29.83,30.57,29.80,30.01,73168700,28.77 -2010-03-24,29.72,29.85,29.60,29.65,33987700,28.43 -2010-03-23,29.59,29.90,29.41,29.88,42026600,28.65 -2010-03-22,29.50,29.70,29.39,29.60,37718200,28.38 -2010-03-19,29.76,29.90,29.35,29.59,81332100,28.37 -2010-03-18,29.63,29.72,29.50,29.61,43845200,28.39 -2010-03-17,29.50,29.87,29.40,29.63,50385700,28.41 -2010-03-16,29.42,29.49,29.20,29.37,36723500,28.16 -2010-03-15,29.18,29.37,29.01,29.29,37512000,28.08 -2010-03-12,29.32,29.38,29.04,29.27,31700200,28.06 -2010-03-11,28.89,29.19,28.85,29.18,35349700,27.98 -2010-03-10,28.86,29.11,28.80,28.97,44891400,27.77 -2010-03-09,28.56,29.11,28.55,28.80,50271600,27.61 -2010-03-08,28.52,28.93,28.50,28.63,39414500,27.45 -2010-03-05,28.66,28.68,28.42,28.59,56001800,27.41 -2010-03-04,28.46,28.65,28.27,28.63,42890600,27.45 -2010-03-03,28.51,28.61,28.35,28.46,48442100,27.28 -2010-03-02,29.08,29.30,28.24,28.46,93123900,27.28 -2010-03-01,28.77,29.05,28.53,29.02,43805400,27.82 -2010-02-26,28.65,28.85,28.51,28.67,40370600,27.49 -2010-02-25,28.27,28.65,28.02,28.60,48735300,27.42 -2010-02-24,28.52,28.79,28.38,28.63,43165900,27.45 -2010-02-23,28.68,28.83,28.09,28.33,52266200,27.16 -2010-02-22,28.84,28.94,28.65,28.73,36707100,27.54 -2010-02-19,28.79,28.92,28.69,28.77,44451800,27.58 -2010-02-18,28.59,29.03,28.51,28.97,42856500,27.77 -2010-02-17,28.53,28.65,28.36,28.59,45882900,27.41 -2010-02-16,28.13,28.37,28.02,28.35,51935600,27.18 -2010-02-12,27.81,28.06,27.58,27.93,81117200,26.65 -2010-02-11,27.93,28.40,27.70,28.12,65993700,26.83 -2010-02-10,28.03,28.24,27.84,27.99,48591300,26.71 -2010-02-09,27.97,28.34,27.75,28.01,59195800,26.73 -2010-02-08,28.01,28.08,27.57,27.72,52820600,26.45 -2010-02-05,28.00,28.28,27.57,28.02,80960100,26.74 -2010-02-04,28.38,28.50,27.81,27.84,77850000,26.57 -2010-02-03,28.26,28.79,28.12,28.63,61397900,27.32 -2010-02-02,28.37,28.50,28.14,28.46,54413700,27.16 -2010-02-01,28.39,28.48,27.92,28.41,85931100,27.11 -2010-01-29,29.90,29.92,27.66,28.18,193888500,26.89 -2010-01-28,29.84,29.87,28.89,29.16,117513700,27.83 -2010-01-27,29.35,29.82,29.02,29.67,63949500,28.31 -2010-01-26,29.20,29.85,29.09,29.50,66639900,28.15 -2010-01-25,29.24,29.66,29.10,29.32,63373000,27.98 -2010-01-22,30.00,30.20,28.84,28.96,102004600,27.63 -2010-01-21,30.61,30.72,30.00,30.01,73086700,28.64 -2010-01-20,30.81,30.94,30.31,30.59,54849500,29.19 -2010-01-19,30.75,31.24,30.68,31.10,46575700,29.68 -2010-01-15,31.08,31.24,30.71,30.86,79913200,29.45 -2010-01-14,30.31,31.10,30.26,30.96,63228100,29.54 -2010-01-13,30.26,30.52,30.01,30.35,51863500,28.96 -2010-01-12,30.15,30.40,29.91,30.07,65912100,28.69 -2010-01-11,30.71,30.76,30.12,30.27,68754700,28.89 -2010-01-08,30.28,30.88,30.24,30.66,51197400,29.26 -2010-01-07,30.63,30.70,30.19,30.45,50559700,29.06 -2010-01-06,30.88,31.08,30.52,30.77,58182400,29.36 -2010-01-05,30.85,31.10,30.64,30.96,49749600,29.54 -2010-01-04,30.62,31.10,30.59,30.95,38409100,29.53 -2009-12-31,30.98,30.99,30.48,30.48,31929700,29.09 -2009-12-30,31.15,31.29,30.80,30.96,42006200,29.54 -2009-12-29,31.35,31.50,31.23,31.39,29716200,29.95 -2009-12-28,31.00,31.18,30.89,31.17,25384000,29.74 -2009-12-24,30.88,31.00,30.76,31.00,11083900,29.58 -2009-12-23,30.71,30.95,30.69,30.92,28362700,29.51 -2009-12-22,30.60,30.93,30.54,30.82,36321000,29.41 -2009-12-21,30.40,30.84,30.37,30.52,40129100,29.12 -2009-12-18,29.84,30.45,29.80,30.36,94118000,28.97 -2009-12-17,29.95,29.96,29.57,29.60,43691200,28.25 -2009-12-16,30.07,30.41,30.04,30.10,55737800,28.72 -2009-12-15,29.89,30.21,29.88,30.02,49473200,28.65 -2009-12-14,29.91,30.16,29.90,30.11,34651200,28.73 -2009-12-11,29.97,30.00,29.79,29.85,43744200,28.48 -2009-12-10,29.71,29.96,29.66,29.87,45940200,28.50 -2009-12-09,29.47,29.81,29.25,29.71,44713300,28.35 -2009-12-08,29.52,29.74,29.38,29.57,37402200,28.22 -2009-12-07,29.78,30.08,29.68,29.79,38082700,28.43 -2009-12-04,30.05,30.37,29.83,29.98,58810700,28.61 -2009-12-03,29.84,30.20,29.76,29.83,43095200,28.47 -2009-12-02,29.90,29.99,29.65,29.78,36308600,28.42 -2009-12-01,29.52,30.05,29.41,30.01,49904200,28.64 -2009-11-30,29.15,29.45,29.00,29.41,44172000,28.06 -2009-11-27,29.11,29.39,28.75,29.22,29357900,27.88 -2009-11-25,29.81,29.86,29.58,29.79,32033500,28.43 -2009-11-24,29.95,29.99,29.75,29.91,37341400,28.54 -2009-11-23,29.84,30.01,29.70,29.94,41832700,28.57 -2009-11-20,29.66,29.77,29.43,29.62,42647100,28.26 -2009-11-19,29.99,30.00,29.70,29.78,51967700,28.42 -2009-11-18,30.00,30.14,29.81,30.11,59431200,28.73 -2009-11-17,29.50,30.00,29.47,30.00,75648900,28.63 -2009-11-16,29.61,29.80,29.37,29.54,54129500,28.06 -2009-11-13,29.47,29.79,29.37,29.63,53037600,28.15 -2009-11-12,29.01,29.49,29.00,29.36,55352400,27.89 -2009-11-11,29.08,29.30,29.02,29.12,49693400,27.67 -2009-11-10,28.90,29.28,28.81,29.01,65881100,27.56 -2009-11-09,28.62,29.00,28.53,28.99,57518000,27.54 -2009-11-06,28.38,28.63,28.20,28.52,38908500,27.10 -2009-11-05,28.52,28.74,28.28,28.47,52681700,27.05 -2009-11-04,27.69,28.39,27.62,28.06,63898400,26.66 -2009-11-03,27.64,27.74,27.43,27.53,50294800,26.15 -2009-11-02,27.70,28.05,27.41,27.88,62428900,26.49 -2009-10-30,28.03,28.40,27.66,27.73,73371800,26.34 -2009-10-29,28.07,28.41,27.85,28.22,65225500,26.81 -2009-10-28,28.24,28.77,27.95,28.02,73542400,26.62 -2009-10-27,28.73,28.88,28.44,28.59,69685800,27.16 -2009-10-26,28.13,29.02,28.11,28.68,124149700,27.25 -2009-10-23,29.20,29.35,27.88,28.02,281761000,26.62 -2009-10-22,26.56,26.72,26.13,26.59,61600000,25.26 -2009-10-21,26.46,26.75,26.39,26.58,61672700,25.25 -2009-10-20,26.42,26.51,25.94,26.37,54604700,25.05 -2009-10-19,26.49,26.58,26.25,26.36,48143200,25.04 -2009-10-16,26.45,26.63,26.10,26.50,56500900,25.18 -2009-10-15,25.90,26.71,25.90,26.71,65620100,25.38 -2009-10-14,26.14,26.20,25.82,25.96,45365500,24.66 -2009-10-13,25.59,25.94,25.52,25.81,37749000,24.52 -2009-10-12,25.66,25.89,25.55,25.72,29145800,24.44 -2009-10-09,25.57,25.79,25.46,25.55,39520000,24.27 -2009-10-08,25.44,25.90,25.22,25.67,60521300,24.39 -2009-10-07,24.99,25.18,24.88,25.10,38472700,23.85 -2009-10-06,24.68,25.21,24.66,25.11,48795300,23.86 -2009-10-05,24.98,25.06,24.52,24.64,60804900,23.41 -2009-10-02,24.46,25.09,24.43,24.96,51219700,23.71 -2009-10-01,25.41,25.47,24.80,24.88,75958100,23.64 -2009-09-30,25.76,25.99,25.38,25.72,63533400,24.44 -2009-09-29,25.91,25.96,25.69,25.75,39050300,24.46 -2009-09-28,25.60,26.16,25.60,25.83,44358000,24.54 -2009-09-25,25.69,25.82,25.52,25.55,50158900,24.27 -2009-09-24,25.92,26.11,25.66,25.94,56302900,24.64 -2009-09-23,25.92,26.25,25.64,25.71,60599900,24.43 -2009-09-22,25.40,25.82,25.29,25.77,61376700,24.48 -2009-09-21,25.11,25.37,25.10,25.30,28878700,24.04 -2009-09-18,25.46,25.48,25.10,25.26,68016500,24.00 -2009-09-17,25.06,25.38,25.06,25.30,42428800,24.04 -2009-09-16,25.25,25.35,24.95,25.20,50055800,23.94 -2009-09-15,24.97,25.27,24.86,25.20,44716600,23.94 -2009-09-14,24.65,25.09,24.64,25.00,42806800,23.75 -2009-09-11,24.93,25.17,24.81,24.86,54303500,23.62 -2009-09-10,24.80,25.05,24.65,25.00,46256000,23.75 -2009-09-09,24.74,24.95,24.67,24.78,49900300,23.54 -2009-09-08,24.62,24.84,24.41,24.82,53737100,23.58 -2009-09-04,24.09,24.80,24.08,24.62,44999700,23.39 -2009-09-03,23.91,24.14,23.76,24.11,34120000,22.91 -2009-09-02,23.82,24.14,23.78,23.86,40771300,22.67 -2009-09-01,24.35,24.74,23.90,24.00,62608500,22.80 -2009-08-31,24.57,24.85,24.29,24.65,49592800,23.42 -2009-08-28,25.07,25.49,24.61,24.68,55808000,23.45 -2009-08-27,24.41,24.78,24.30,24.69,45495600,23.46 -2009-08-26,24.59,24.75,24.42,24.55,41079000,23.32 -2009-08-25,24.60,24.82,24.46,24.64,43980300,23.41 -2009-08-24,24.41,24.73,24.28,24.64,54180900,23.41 -2009-08-21,23.93,24.42,23.77,24.41,69011400,23.19 -2009-08-20,23.60,23.87,23.54,23.67,39505900,22.49 -2009-08-19,23.25,23.72,23.25,23.65,41821300,22.47 -2009-08-18,23.29,23.65,23.27,23.58,38878900,22.40 -2009-08-17,23.32,23.60,23.23,23.25,42474400,21.97 -2009-08-14,23.62,23.80,23.51,23.69,46330200,22.38 -2009-08-13,23.63,23.85,23.40,23.62,38954500,22.31 -2009-08-12,23.13,23.90,23.03,23.53,61972300,22.23 -2009-08-11,23.32,23.40,23.05,23.13,33615800,21.85 -2009-08-10,23.46,23.55,23.30,23.42,35261900,22.13 -2009-08-07,23.75,23.82,23.50,23.56,46169700,22.26 -2009-08-06,23.93,23.98,23.27,23.46,59686000,22.16 -2009-08-05,23.84,24.25,23.79,23.81,53310300,22.49 -2009-08-04,23.68,23.79,23.53,23.77,49218300,22.46 -2009-08-03,23.82,23.86,23.50,23.83,46902900,22.51 -2009-07-31,23.77,24.07,23.50,23.52,54258200,22.22 -2009-07-30,24.20,24.43,23.71,23.81,67820000,22.49 -2009-07-29,23.73,23.91,23.34,23.80,73626900,22.48 -2009-07-28,22.99,23.55,22.90,23.47,70288400,22.17 -2009-07-27,23.44,23.45,22.90,23.11,80950000,21.83 -2009-07-24,23.61,23.89,22.81,23.45,215135700,22.15 -2009-07-23,24.93,25.72,24.84,25.56,106060500,24.15 -2009-07-22,24.70,24.90,24.51,24.80,66192500,23.43 -2009-07-21,24.69,24.83,24.37,24.83,52028400,23.46 -2009-07-20,24.44,24.53,24.15,24.53,47798000,23.17 -2009-07-17,24.40,24.45,24.10,24.29,52860100,22.95 -2009-07-16,23.93,24.44,23.86,24.44,64555100,23.09 -2009-07-15,23.75,24.12,23.56,24.12,67238700,22.79 -2009-07-14,23.20,23.22,22.86,23.11,45448700,21.83 -2009-07-13,22.42,23.29,22.14,23.23,67584000,21.95 -2009-07-10,22.19,22.54,22.15,22.39,43229200,21.15 -2009-07-09,22.65,22.81,22.37,22.44,46981200,21.20 -2009-07-08,22.31,22.69,22.00,22.56,73023400,21.31 -2009-07-07,23.08,23.14,22.46,22.53,52842500,21.28 -2009-07-06,23.21,23.28,22.87,23.20,49207700,21.92 -2009-07-02,23.76,24.04,23.21,23.37,65422200,22.08 -2009-07-01,24.05,24.30,23.96,24.04,54908400,22.71 -2009-06-30,23.97,24.24,23.63,23.77,66452400,22.46 -2009-06-29,23.60,24.03,23.55,23.86,62854900,22.54 -2009-06-26,23.57,23.69,23.32,23.35,65126400,22.06 -2009-06-25,23.43,23.92,23.20,23.79,57724300,22.48 -2009-06-24,23.45,23.75,23.36,23.47,54287700,22.17 -2009-06-23,23.38,23.66,23.21,23.34,56752700,22.05 -2009-06-22,23.95,23.95,23.25,23.28,71291600,21.99 -2009-06-19,24.04,24.34,23.75,24.07,115459000,22.74 -2009-06-18,23.62,23.69,23.30,23.50,58852200,22.20 -2009-06-17,23.50,23.82,23.17,23.68,86483100,22.37 -2009-06-16,23.47,24.11,23.44,23.45,105295600,22.15 -2009-06-15,23.23,23.54,23.02,23.42,69089600,22.13 -2009-06-12,22.90,23.38,22.74,23.33,50963500,22.04 -2009-06-11,22.59,23.26,22.57,22.83,65124600,21.57 -2009-06-10,22.17,22.62,22.12,22.55,61297200,21.30 -2009-06-09,22.06,22.32,21.88,22.08,50887700,20.86 -2009-06-08,21.98,22.32,21.63,22.05,49000600,20.83 -2009-06-05,21.96,22.31,21.81,22.14,59579200,20.92 -2009-06-04,21.77,21.90,21.58,21.83,42330000,20.62 -2009-06-03,21.31,21.76,21.29,21.73,56039600,20.53 -2009-06-02,21.36,21.98,21.20,21.40,48935700,20.22 -2009-06-01,21.00,21.50,20.86,21.40,57317100,20.22 -2009-05-29,20.56,20.94,20.30,20.89,46134900,19.74 -2009-05-28,20.32,20.63,20.05,20.45,45480800,19.32 -2009-05-27,20.25,20.60,20.07,20.13,42892900,19.02 -2009-05-26,19.54,20.45,19.45,20.34,44991700,19.22 -2009-05-22,19.93,20.17,19.47,19.75,37318700,18.66 -2009-05-21,20.14,20.23,19.51,19.82,58232800,18.72 -2009-05-20,20.41,20.69,20.22,20.38,47450700,19.25 -2009-05-19,20.51,20.74,20.25,20.31,51368300,19.19 -2009-05-18,20.36,20.60,20.24,20.60,46073800,19.34 -2009-05-15,20.13,20.50,19.98,20.22,61289900,18.98 -2009-05-14,19.83,20.23,19.80,20.06,54539500,18.83 -2009-05-13,19.92,20.00,19.67,19.75,49281700,18.54 -2009-05-12,19.51,20.06,19.47,19.89,71966800,18.67 -2009-05-11,19.20,19.73,19.01,19.32,63762600,18.14 -2009-05-08,19.46,19.64,19.14,19.42,67597600,18.23 -2009-05-07,19.96,19.99,19.14,19.32,68727200,18.14 -2009-05-06,20.06,20.07,19.61,19.79,59639100,18.58 -2009-05-05,20.14,20.24,19.64,19.79,66835500,18.58 -2009-05-04,20.37,20.40,19.98,20.19,54313400,18.95 -2009-05-01,20.19,20.35,19.86,20.24,63224500,19.00 -2009-04-30,20.60,21.10,20.01,20.26,87439900,19.02 -2009-04-29,20.11,20.89,20.06,20.25,79301600,19.01 -2009-04-28,20.25,20.27,19.79,19.93,76685200,18.71 -2009-04-27,20.55,20.82,20.28,20.40,68219600,19.15 -2009-04-24,19.82,21.20,19.50,20.91,168478500,19.63 -2009-04-23,18.92,18.94,18.47,18.92,86116300,17.76 -2009-04-22,18.76,19.19,18.70,18.78,59401000,17.63 -2009-04-21,18.59,19.08,18.57,18.97,60928300,17.81 -2009-04-20,18.89,18.95,18.57,18.61,62937200,17.47 -2009-04-17,19.69,19.69,19.00,19.20,61398500,18.02 -2009-04-16,19.16,19.78,18.99,19.76,67688700,18.55 -2009-04-15,19.21,19.25,18.51,18.83,72725500,17.68 -2009-04-14,19.44,19.55,19.00,19.35,63796300,18.17 -2009-04-13,19.69,19.85,19.37,19.59,44444700,18.39 -2009-04-09,19.45,19.70,19.22,19.67,55759600,18.47 -2009-04-08,18.97,19.62,18.96,19.19,56408900,18.02 -2009-04-07,18.76,19.14,18.63,18.76,65815200,17.61 -2009-04-06,18.54,18.76,18.27,18.76,47476100,17.61 -2009-04-03,19.13,19.15,18.43,18.75,81858400,17.60 -2009-04-02,19.50,19.89,19.00,19.29,99082300,18.11 -2009-04-01,18.23,19.36,18.18,19.31,96438900,18.13 -2009-03-31,17.83,18.79,17.78,18.37,92095500,17.25 -2009-03-30,17.74,17.76,17.27,17.48,49633000,16.41 -2009-03-27,18.54,18.62,18.05,18.13,47670400,17.02 -2009-03-26,18.17,18.88,18.12,18.83,63775100,17.68 -2009-03-25,17.98,18.31,17.52,17.88,73927100,16.79 -2009-03-24,18.04,18.21,17.84,17.93,50044100,16.83 -2009-03-23,17.37,18.59,17.31,18.33,71600000,17.21 -2009-03-20,17.32,17.65,16.88,17.06,81725500,16.02 -2009-03-19,17.37,17.45,16.92,17.14,58994600,16.09 -2009-03-18,17.03,17.22,16.60,16.96,70710700,15.92 -2009-03-17,16.32,16.90,16.26,16.90,62481000,15.87 -2009-03-16,16.82,16.96,16.24,16.25,67028900,15.26 -2009-03-13,16.98,17.05,16.18,16.65,82965800,15.63 -2009-03-12,17.01,17.04,16.48,17.01,93694100,15.97 -2009-03-11,16.63,17.20,16.43,17.11,84522200,16.06 -2009-03-10,15.37,16.62,15.25,16.48,95184200,15.47 -2009-03-09,15.20,15.74,15.10,15.15,66479100,14.22 -2009-03-06,15.35,15.62,14.87,15.28,92821400,14.34 -2009-03-05,15.86,15.88,15.27,15.27,89708500,14.34 -2009-03-04,16.12,16.40,15.89,16.12,69285100,15.13 -2009-03-03,16.03,16.24,15.64,15.88,80476600,14.91 -2009-03-02,15.96,16.25,15.72,15.79,80602100,14.82 -2009-02-27,16.29,16.52,16.10,16.15,93428000,15.16 -2009-02-26,17.05,17.08,16.42,16.42,83219500,15.41 -2009-02-25,17.01,17.24,16.46,16.96,105894600,15.92 -2009-02-24,17.03,17.35,16.36,17.17,122674500,16.12 -2009-02-23,18.02,18.15,17.16,17.21,70803400,16.16 -2009-02-20,17.77,18.19,17.66,18.00,69413800,16.90 -2009-02-19,18.30,18.38,17.81,17.91,49195600,16.81 -2009-02-18,18.22,18.45,18.00,18.12,54946900,17.01 -2009-02-17,18.49,18.50,17.89,18.09,75853300,16.98 -2009-02-13,19.27,19.47,19.04,19.09,47416000,17.80 -2009-02-12,18.97,19.32,18.54,19.26,75323200,17.96 -2009-02-11,18.94,19.49,18.92,19.21,58599000,17.91 -2009-02-10,19.25,19.80,18.70,18.80,83953200,17.53 -2009-02-09,19.64,19.77,19.26,19.44,52196400,18.13 -2009-02-06,19.16,19.93,19.06,19.66,86746000,18.33 -2009-02-05,18.51,19.14,18.25,19.04,75195200,17.75 -2009-02-04,18.54,19.00,18.50,18.63,75618000,17.37 -2009-02-03,17.85,18.61,17.60,18.50,86865100,17.25 -2009-02-02,17.03,18.13,17.00,17.83,88871700,16.62 -2009-01-30,17.74,17.79,17.10,17.10,62370900,15.94 -2009-01-29,17.78,17.96,17.56,17.59,49192800,16.40 -2009-01-28,17.80,18.31,17.76,18.04,64145500,16.82 -2009-01-27,17.78,17.97,17.43,17.66,61695000,16.47 -2009-01-26,17.29,17.81,17.23,17.63,92476500,16.44 -2009-01-23,16.97,17.49,16.75,17.20,117020600,16.04 -2009-01-22,18.05,18.18,17.07,17.11,222436600,15.95 -2009-01-21,18.87,19.45,18.46,19.38,68340900,18.07 -2009-01-20,19.46,19.62,18.37,18.48,89873000,17.23 -2009-01-16,19.63,19.91,19.15,19.71,79634100,18.38 -2009-01-15,19.07,19.30,18.52,19.24,96169800,17.94 -2009-01-14,19.53,19.68,19.01,19.09,80257500,17.80 -2009-01-13,19.52,19.99,19.52,19.82,65843500,18.48 -2009-01-12,19.71,19.79,19.30,19.47,52163500,18.15 -2009-01-09,20.17,20.30,19.41,19.52,49815300,18.20 -2009-01-08,19.63,20.19,19.55,20.12,70229900,18.76 -2009-01-07,20.19,20.29,19.48,19.51,72709900,18.19 -2009-01-06,20.75,21.00,20.61,20.76,58083400,19.36 -2009-01-05,20.20,20.67,20.06,20.52,61475200,19.13 -2009-01-02,19.53,20.40,19.37,20.33,50084000,18.96 -2008-12-31,19.31,19.68,19.27,19.44,46419000,18.13 -2008-12-30,19.01,19.49,19.00,19.34,43224100,18.03 -2008-12-29,19.15,19.21,18.64,18.96,58512800,17.68 -2008-12-26,19.20,19.33,19.09,19.13,23101000,17.84 -2008-12-24,19.26,19.45,19.10,19.17,16880400,17.87 -2008-12-23,19.28,19.57,19.01,19.28,47511400,17.98 -2008-12-22,19.24,19.29,18.89,19.18,58575400,17.88 -2008-12-19,19.42,19.80,19.11,19.12,113530400,17.83 -2008-12-18,19.86,20.02,18.99,19.30,80759200,17.99 -2008-12-17,19.81,20.05,19.50,19.66,78922700,18.33 -2008-12-16,19.21,20.18,19.00,20.11,97688700,18.75 -2008-12-15,19.34,19.44,18.89,19.04,59925900,17.75 -2008-12-12,19.15,19.85,18.70,19.36,78112600,18.05 -2008-12-11,20.11,20.12,19.31,19.45,83564300,18.13 -2008-12-10,20.82,20.96,20.30,20.61,61499000,19.22 -2008-12-09,20.62,21.25,20.46,20.60,80484900,19.21 -2008-12-08,20.35,21.25,20.14,21.01,107225000,19.59 -2008-12-05,18.91,19.98,18.47,19.87,91996200,18.53 -2008-12-04,19.40,19.92,18.79,19.11,78719200,17.82 -2008-12-03,18.65,19.90,18.60,19.87,80961500,18.53 -2008-12-02,18.99,19.31,18.56,19.15,79689800,17.86 -2008-12-01,19.88,19.95,18.60,18.61,79639900,17.35 -2008-11-28,20.23,20.31,20.02,20.22,28650800,18.85 -2008-11-26,19.73,20.68,19.73,20.49,79678300,19.10 -2008-11-25,20.86,20.93,19.55,19.99,92948100,18.64 -2008-11-24,19.89,20.94,19.87,20.69,125289900,19.29 -2008-11-21,18.02,19.70,17.98,19.68,157231900,18.35 -2008-11-20,18.12,18.84,17.50,17.53,139532800,16.34 -2008-11-19,19.63,19.95,18.25,18.29,103010500,17.05 -2008-11-18,19.50,19.66,18.75,19.62,108966500,18.29 -2008-11-17,19.74,20.24,19.15,19.32,97289000,17.89 -2008-11-14,20.56,21.34,19.65,20.06,96624500,18.58 -2008-11-13,20.15,21.25,18.74,21.25,148413700,19.68 -2008-11-12,20.89,21.00,20.28,20.30,90162300,18.80 -2008-11-11,21.29,21.30,20.79,21.20,78014500,19.63 -2008-11-10,21.85,21.97,21.19,21.30,67106800,19.73 -2008-11-07,21.32,21.54,21.00,21.50,71256300,19.91 -2008-11-06,21.87,22.08,20.86,20.88,95509700,19.34 -2008-11-05,23.33,23.34,22.05,22.08,81179700,20.45 -2008-11-04,23.13,23.66,22.87,23.53,72123000,21.79 -2008-11-03,22.48,22.91,22.21,22.62,61923500,20.95 -2008-10-31,22.53,22.91,22.12,22.33,93055200,20.68 -2008-10-30,23.69,23.88,22.39,22.63,95323000,20.96 -2008-10-29,23.13,23.97,22.70,23.00,111701800,21.30 -2008-10-28,21.64,23.21,21.34,23.10,134088800,21.39 -2008-10-27,21.67,21.96,21.02,21.18,117683900,19.61 -2008-10-24,21.06,22.86,20.95,21.96,153919700,20.34 -2008-10-23,21.55,22.59,20.89,22.32,154774100,20.67 -2008-10-22,23.04,23.06,20.90,21.53,150054800,19.94 -2008-10-21,24.30,25.01,23.27,23.36,100385600,21.63 -2008-10-20,24.20,24.75,23.01,24.72,93484300,22.89 -2008-10-17,23.57,25.11,23.31,23.93,133673100,22.16 -2008-10-16,22.94,24.19,21.31,24.19,161147800,22.40 -2008-10-15,23.78,24.25,22.48,22.66,113280200,20.99 -2008-10-14,25.64,25.73,23.60,24.10,165674900,22.32 -2008-10-13,22.86,25.50,22.63,25.50,144935400,23.62 -2008-10-10,21.79,22.35,20.65,21.50,228467500,19.91 -2008-10-09,23.77,23.91,22.07,22.30,131948700,20.65 -2008-10-08,22.90,24.30,22.50,23.01,171598600,21.31 -2008-10-07,24.98,25.21,23.14,23.23,145941200,21.51 -2008-10-06,25.63,25.99,24.14,24.91,146374600,23.07 -2008-10-03,26.37,27.47,26.24,26.32,114289400,24.38 -2008-10-02,26.18,26.53,25.70,26.25,93819800,24.31 -2008-10-01,26.38,26.99,26.28,26.48,88957000,24.52 -2008-09-30,25.77,26.69,25.54,26.69,107192700,24.72 -2008-09-29,26.94,27.66,25.01,25.01,134383100,23.16 -2008-09-26,26.17,27.56,26.14,27.40,100744300,25.38 -2008-09-25,25.82,26.88,25.74,26.61,96203500,24.64 -2008-09-24,25.58,26.09,25.46,25.72,80250300,23.82 -2008-09-23,25.66,26.17,25.34,25.44,92181300,23.56 -2008-09-22,26.22,26.32,25.32,25.40,105207700,23.52 -2008-09-19,26.37,26.40,23.50,25.16,134926100,23.30 -2008-09-18,24.80,25.35,24.01,25.26,132291300,23.39 -2008-09-17,25.73,25.87,24.50,24.57,106972100,22.75 -2008-09-16,26.09,26.49,25.52,25.99,111729700,24.07 -2008-09-15,26.92,27.49,26.73,26.82,82349400,24.84 -2008-09-12,27.14,27.74,26.94,27.62,75628500,25.58 -2008-09-11,26.10,27.46,26.03,27.34,72913300,25.32 -2008-09-10,26.52,26.86,26.25,26.44,75064900,24.49 -2008-09-09,26.20,26.60,26.05,26.10,85735700,24.17 -2008-09-08,26.21,26.33,25.67,26.12,62110800,24.19 -2008-09-05,26.03,26.22,25.63,25.65,82305200,23.75 -2008-09-04,26.74,26.89,26.35,26.35,66141900,24.40 -2008-09-03,27.00,27.18,26.84,26.90,57127700,24.91 -2008-09-02,27.67,27.76,27.06,27.10,66079200,25.10 -2008-08-29,27.68,27.78,27.29,27.29,50735500,25.27 -2008-08-28,27.61,28.01,27.60,27.94,48372600,25.88 -2008-08-27,27.34,27.79,27.13,27.56,33975300,25.52 -2008-08-26,27.58,27.72,27.17,27.27,44774400,25.25 -2008-08-25,27.61,27.84,27.46,27.66,51381300,25.62 -2008-08-22,27.23,27.88,27.22,27.84,47930400,25.78 -2008-08-21,27.10,27.23,26.86,27.18,43614200,25.17 -2008-08-20,27.54,27.58,27.17,27.29,41497200,25.27 -2008-08-19,27.54,27.75,27.27,27.32,40332900,25.30 -2008-08-18,27.78,28.05,27.55,27.69,38078200,25.54 -2008-08-15,27.98,28.15,27.58,27.81,47267400,25.65 -2008-08-14,27.82,28.28,27.56,27.91,49732300,25.74 -2008-08-13,28.07,28.50,27.76,27.91,51165200,25.74 -2008-08-12,27.78,28.36,27.58,28.12,62813000,25.94 -2008-08-11,27.86,28.40,27.66,27.90,68743800,25.74 -2008-08-08,27.35,28.23,27.19,28.13,80814100,25.95 -2008-08-07,26.90,27.75,26.73,27.39,82565800,25.27 -2008-08-06,26.73,27.16,26.38,27.02,95550000,24.92 -2008-08-05,25.64,26.28,25.50,26.21,84297600,24.18 -2008-08-04,25.39,25.55,25.11,25.28,60588300,23.32 -2008-08-01,25.92,25.95,25.07,25.44,82720200,23.47 -2008-07-31,25.85,26.28,25.71,25.72,60461000,23.72 -2008-07-30,26.20,26.49,25.90,26.23,51977700,24.20 -2008-07-29,25.52,26.19,25.40,26.11,66368200,24.08 -2008-07-28,26.06,26.11,25.34,25.50,59707800,23.52 -2008-07-25,25.64,26.22,25.50,26.16,58682300,24.13 -2008-07-24,26.09,26.17,25.44,25.44,81092600,23.47 -2008-07-23,25.86,26.84,25.85,26.43,79408800,24.38 -2008-07-22,25.54,25.94,25.48,25.80,88657200,23.80 -2008-07-21,25.66,26.17,25.53,25.64,77575600,23.65 -2008-07-18,26.36,26.47,25.11,25.86,150277000,23.85 -2008-07-17,27.58,27.91,27.11,27.52,96526100,25.39 -2008-07-16,26.13,27.29,25.92,27.26,82060400,25.15 -2008-07-15,24.93,26.64,24.93,26.15,92719300,24.12 -2008-07-14,25.48,25.81,25.07,25.15,51216200,23.20 -2008-07-11,25.16,25.64,24.87,25.25,69532600,23.29 -2008-07-10,25.20,25.67,24.98,25.45,57830600,23.48 -2008-07-09,25.79,25.85,25.18,25.23,54255800,23.27 -2008-07-08,25.93,26.20,25.51,25.85,65553200,23.84 -2008-07-07,26.11,26.39,25.45,26.03,71527600,24.01 -2008-07-03,25.97,26.10,25.60,25.98,37074500,23.96 -2008-07-02,26.90,27.00,25.88,25.88,84669000,23.87 -2008-07-01,27.27,27.38,26.44,26.87,100327800,24.79 -2008-06-30,27.73,27.98,27.49,27.51,57830500,25.38 -2008-06-27,27.68,27.91,27.46,27.63,73450200,25.49 -2008-06-26,28.03,28.20,27.75,27.75,67049100,25.60 -2008-06-25,27.81,28.67,27.76,28.35,64280200,26.15 -2008-06-24,27.92,28.01,27.51,27.73,65218300,25.58 -2008-06-23,28.30,28.41,27.79,27.97,57145300,25.80 -2008-06-20,28.90,28.92,28.10,28.23,97480400,26.04 -2008-06-19,28.55,29.19,28.33,28.93,62037800,26.69 -2008-06-18,28.55,28.86,28.46,28.46,49677800,26.25 -2008-06-17,29.04,29.12,28.79,28.80,44256700,26.57 -2008-06-16,29.02,29.11,28.64,28.93,74718900,26.69 -2008-06-13,28.63,29.57,28.50,29.07,131969100,26.81 -2008-06-12,27.40,28.55,27.19,28.24,113996300,26.05 -2008-06-11,27.85,27.94,27.11,27.12,59330800,25.02 -2008-06-10,27.36,28.29,27.32,27.89,77419800,25.73 -2008-06-09,27.65,27.91,27.30,27.71,66787100,25.56 -2008-06-06,27.99,28.17,27.49,27.49,78465700,25.36 -2008-06-05,27.72,28.30,27.60,28.30,76063400,26.10 -2008-06-04,27.28,27.64,27.20,27.54,79567400,25.40 -2008-06-03,27.91,28.31,27.27,27.31,86616700,25.19 -2008-06-02,28.24,28.36,27.55,27.80,77028400,25.64 -2008-05-30,28.38,28.70,28.20,28.32,63399200,26.12 -2008-05-29,28.21,28.68,28.14,28.31,47699200,26.11 -2008-05-28,28.56,28.57,28.04,28.18,52318500,25.99 -2008-05-27,28.11,28.50,28.05,28.44,47334500,26.23 -2008-05-23,28.26,28.33,27.95,28.05,48890700,25.87 -2008-05-22,28.28,28.70,28.18,28.47,52203100,26.26 -2008-05-21,28.81,29.05,28.19,28.25,60125100,26.06 -2008-05-20,29.30,29.31,28.63,28.76,75767600,26.53 -2008-05-19,29.87,29.89,29.31,29.46,59615000,27.17 -2008-05-16,30.47,30.48,29.92,29.99,81538200,27.66 -2008-05-15,29.98,30.53,29.94,30.45,53355800,28.09 -2008-05-14,29.89,30.26,29.73,29.93,66730400,27.61 -2008-05-13,30.00,30.13,29.53,29.78,70934700,27.47 -2008-05-12,29.40,30.06,29.35,29.99,64278800,27.56 -2008-05-09,29.21,29.55,28.95,29.39,51621200,27.01 -2008-05-08,29.28,29.39,29.00,29.27,69589900,26.90 -2008-05-07,29.69,30.14,29.08,29.21,88775000,26.85 -2008-05-06,29.00,29.86,28.93,29.70,93582000,27.30 -2008-05-05,29.93,30.23,28.99,29.08,119687700,26.73 -2008-05-02,29.59,29.62,28.86,29.24,66024200,26.87 -2008-05-01,28.50,29.49,28.48,29.40,71699400,27.02 -2008-04-30,28.74,29.21,28.51,28.52,74733600,26.21 -2008-04-29,28.80,28.90,28.45,28.64,84428900,26.32 -2008-04-28,29.80,29.84,28.82,28.99,97473000,26.64 -2008-04-25,30.05,30.39,29.60,29.83,145194900,27.42 -2008-04-24,31.63,32.10,31.16,31.80,115416700,29.23 -2008-04-23,30.45,31.46,30.30,31.45,98351500,28.90 -2008-04-22,30.64,30.70,29.97,30.25,67387500,27.80 -2008-04-21,30.19,30.60,30.12,30.42,54411700,27.96 -2008-04-18,30.01,30.10,29.61,30.00,73658900,27.57 -2008-04-17,29.12,29.34,28.90,29.22,48743300,26.85 -2008-04-16,28.57,29.05,28.38,28.95,54107400,26.61 -2008-04-15,28.12,28.48,28.03,28.25,34310000,25.96 -2008-04-14,28.24,28.31,27.93,28.06,43418100,25.79 -2008-04-11,28.87,29.01,28.21,28.28,54373700,25.99 -2008-04-10,28.83,29.40,28.80,29.11,65591600,26.75 -2008-04-09,28.72,29.04,28.54,28.89,45839300,26.55 -2008-04-08,28.94,29.00,28.54,28.75,44733500,26.42 -2008-04-07,29.55,29.59,29.03,29.16,44428600,26.80 -2008-04-04,29.13,29.26,28.74,29.16,43860800,26.80 -2008-04-03,29.00,29.32,28.80,29.00,38961400,26.65 -2008-04-02,29.57,29.58,29.00,29.16,49499400,26.80 -2008-04-01,28.83,29.54,28.63,29.50,65796200,27.11 -2008-03-31,27.88,28.59,27.84,28.38,46780600,26.08 -2008-03-28,28.23,28.43,27.83,27.91,49244000,25.65 -2008-03-27,28.48,28.49,28.00,28.05,47894400,25.78 -2008-03-26,29.03,29.07,28.38,28.56,45868100,26.25 -2008-03-25,29.33,29.37,28.94,29.14,49149000,26.78 -2008-03-24,29.33,29.40,29.06,29.17,48294700,26.81 -2008-03-20,28.74,29.22,28.59,29.18,60170200,26.82 -2008-03-19,29.38,29.59,28.62,28.62,61442100,26.30 -2008-03-18,28.67,29.48,28.67,29.42,83695300,27.04 -2008-03-17,27.30,28.73,27.28,28.30,84490100,26.01 -2008-03-14,28.72,29.01,27.64,27.96,105214900,25.70 -2008-03-13,28.54,28.99,28.16,28.62,84552200,26.30 -2008-03-12,29.43,29.49,28.54,28.63,75993800,26.31 -2008-03-11,28.40,29.34,28.38,29.28,98740700,26.91 -2008-03-10,27.83,28.26,27.75,28.05,72175100,25.78 -2008-03-07,27.34,28.07,27.32,27.87,77597600,25.61 -2008-03-06,28.06,28.17,27.50,27.57,91127700,25.34 -2008-03-05,27.75,28.41,27.70,28.12,106489800,25.84 -2008-03-04,27.02,27.63,26.96,27.59,86925600,25.36 -2008-03-03,27.24,27.39,26.87,26.99,76544300,24.80 -2008-02-29,27.69,27.83,27.02,27.20,117411400,25.00 -2008-02-28,28.02,28.27,27.80,27.93,83002900,25.67 -2008-02-27,28.19,28.68,28.10,28.26,75199500,25.97 -2008-02-26,27.74,28.86,27.67,28.38,108923500,26.08 -2008-02-25,27.65,28.24,27.48,27.84,109974300,25.59 -2008-02-22,28.24,28.39,27.20,27.68,125705400,25.44 -2008-02-21,28.62,28.96,27.96,28.10,98776500,25.83 -2008-02-20,28.15,28.26,27.92,28.22,93056200,25.94 -2008-02-19,28.80,28.84,28.07,28.17,68261200,25.89 -2008-02-15,28.31,28.64,28.25,28.42,68166100,26.02 -2008-02-14,28.88,29.04,28.46,28.50,68191600,26.09 -2008-02-13,28.62,29.05,28.53,28.96,88986200,26.51 -2008-02-12,28.43,28.62,28.11,28.34,84365900,25.94 -2008-02-11,28.52,28.61,27.91,28.21,156814100,25.83 -2008-02-08,28.29,29.08,28.24,28.56,124872000,26.15 -2008-02-07,28.34,28.78,27.90,28.12,164964900,25.74 -2008-02-06,29.28,29.35,28.29,28.52,138315600,26.11 -2008-02-05,29.91,29.94,28.89,29.07,137534100,26.61 -2008-02-04,30.49,30.72,30.11,30.19,119998600,27.64 -2008-02-01,31.06,33.25,30.25,30.45,291138900,27.88 -2008-01-31,31.91,32.74,31.72,32.60,103642200,29.84 -2008-01-30,32.56,32.80,32.05,32.20,106432600,29.48 -2008-01-29,32.85,32.89,32.35,32.60,68023000,29.84 -2008-01-28,33.02,33.10,32.42,32.72,81019000,29.95 -2008-01-25,34.90,35.00,32.87,32.94,196992300,30.16 -2008-01-24,32.35,33.36,32.12,33.25,155640400,30.44 -2008-01-23,31.48,32.05,31.04,31.93,137597400,29.23 -2008-01-22,31.54,32.53,31.50,31.96,108521400,29.26 -2008-01-18,33.16,34.00,32.97,33.01,117062000,30.22 -2008-01-17,33.54,33.80,32.97,33.11,94247800,30.31 -2008-01-16,33.42,33.65,32.51,33.23,120778500,30.42 -2008-01-15,34.03,34.38,34.00,34.00,61606200,31.13 -2008-01-14,34.46,34.57,34.08,34.39,52792200,31.48 -2008-01-11,34.14,34.24,33.72,33.91,55187900,31.04 -2008-01-10,34.35,34.50,33.78,34.33,72446000,31.43 -2008-01-09,33.36,34.54,33.35,34.44,74305500,31.53 -2008-01-08,34.71,34.71,33.40,33.45,79148300,30.62 -2008-01-07,34.55,34.80,34.25,34.61,80164300,31.68 -2008-01-04,35.19,35.20,34.09,34.38,72090800,31.47 -2008-01-03,35.22,35.65,34.86,35.37,49599600,32.38 -2008-01-02,35.79,35.96,35.00,35.22,63004200,32.24 -2007-12-31,35.90,35.99,35.52,35.60,35229700,32.59 -2007-12-28,36.10,36.23,35.67,36.12,33447200,33.07 -2007-12-27,36.35,36.55,35.94,35.97,33311100,32.93 -2007-12-26,36.41,36.64,36.26,36.61,30252400,33.52 -2007-12-24,36.13,36.72,36.05,36.58,29622600,33.49 -2007-12-21,35.90,36.06,35.75,36.06,83240500,33.01 -2007-12-20,35.29,35.79,35.08,35.52,59345000,32.52 -2007-12-19,34.69,35.14,34.38,34.79,58469100,31.85 -2007-12-18,34.64,35.00,34.21,34.74,52791800,31.80 -2007-12-17,35.03,35.13,34.36,34.39,58121200,31.48 -2007-12-14,35.05,35.84,35.01,35.31,71126200,32.33 -2007-12-13,34.48,35.45,34.28,35.22,73913200,32.24 -2007-12-12,34.61,35.09,33.93,34.47,63345400,31.56 -2007-12-11,34.73,34.99,33.93,34.10,55070700,31.22 -2007-12-10,34.64,34.95,34.47,34.76,36083500,31.82 -2007-12-07,34.61,34.70,34.22,34.53,40771000,31.61 -2007-12-06,34.26,34.61,33.87,34.55,49209700,31.63 -2007-12-05,33.14,34.52,33.03,34.15,84894700,31.26 -2007-12-04,32.74,33.24,32.63,32.77,54801500,30.00 -2007-12-03,33.50,33.64,32.68,32.92,61770600,30.14 -2007-11-30,33.92,34.12,33.19,33.60,71027800,30.76 -2007-11-29,33.58,33.93,33.31,33.59,53633600,30.75 -2007-11-28,33.38,33.89,32.90,33.70,88585000,30.85 -2007-11-27,33.27,33.60,32.68,33.06,84178400,30.27 -2007-11-26,34.09,34.37,32.93,32.97,80335000,30.18 -2007-11-23,34.36,34.44,33.71,34.11,33467200,31.23 -2007-11-21,34.40,34.73,34.18,34.23,89518700,31.34 -2007-11-20,34.23,34.97,34.10,34.58,100009400,31.66 -2007-11-19,33.96,34.24,33.87,33.96,63000300,31.09 -2007-11-16,33.86,34.26,33.71,34.09,71113800,31.21 -2007-11-15,33.76,34.10,33.55,33.76,63111200,30.91 -2007-11-14,34.62,34.75,33.75,33.93,83840100,31.06 -2007-11-13,33.54,34.67,33.38,34.46,104261100,31.55 -2007-11-12,33.32,33.71,33.02,33.38,84719000,30.46 -2007-11-09,34.18,34.54,33.65,33.73,125111400,30.78 -2007-11-08,35.60,35.90,34.40,34.74,133742400,31.70 -2007-11-07,36.04,36.16,35.45,35.52,74873600,32.41 -2007-11-06,36.59,36.66,35.87,36.41,100966700,33.22 -2007-11-05,36.76,37.10,36.63,36.73,75485400,33.52 -2007-11-02,37.22,37.50,36.42,37.06,96389800,33.82 -2007-11-01,36.53,37.49,36.36,37.06,152078800,33.82 -2007-10-31,35.52,37.00,35.51,36.81,185635800,33.59 -2007-10-30,34.37,35.59,34.35,35.57,107297300,32.46 -2007-10-29,34.85,35.29,34.45,34.57,114655600,31.54 -2007-10-26,36.01,36.03,34.56,35.03,287270900,31.96 -2007-10-25,31.57,32.22,31.49,31.99,169588700,29.19 -2007-10-24,30.85,31.30,30.50,31.25,77979200,28.51 -2007-10-23,30.71,31.12,30.71,30.90,49956200,28.20 -2007-10-22,30.12,30.70,30.12,30.51,58785100,27.84 -2007-10-19,31.09,31.09,30.11,30.17,75200200,27.53 -2007-10-18,31.22,31.23,30.63,31.16,49208600,28.43 -2007-10-17,30.75,31.23,30.65,31.08,86092400,28.36 -2007-10-16,30.24,30.58,30.23,30.32,56286200,27.67 -2007-10-15,30.10,30.33,30.00,30.04,47150500,27.41 -2007-10-12,30.03,30.40,29.95,30.17,31121100,27.53 -2007-10-11,30.30,30.63,29.79,29.91,50788400,27.29 -2007-10-10,30.04,30.37,30.03,30.23,32251500,27.58 -2007-10-09,30.03,30.39,30.00,30.10,63603100,27.47 -2007-10-08,29.66,29.85,29.60,29.84,30265400,27.23 -2007-10-05,29.89,29.99,29.73,29.84,45012300,27.23 -2007-10-04,29.56,29.77,29.44,29.71,37868000,27.11 -2007-10-03,29.71,29.85,29.29,29.45,37633900,26.87 -2007-10-02,29.70,29.85,29.57,29.70,33700900,27.10 -2007-10-01,29.46,29.79,29.41,29.77,43875100,27.16 -2007-09-28,29.49,29.69,29.23,29.46,45819100,26.88 -2007-09-27,29.70,29.72,29.44,29.49,43407100,26.91 -2007-09-26,29.68,29.85,29.48,29.50,60337000,26.92 -2007-09-25,29.14,29.56,29.11,29.56,75621000,26.97 -2007-09-24,28.81,29.61,28.80,29.08,104459800,26.53 -2007-09-21,28.69,28.81,28.44,28.65,135636100,26.14 -2007-09-20,28.48,28.58,28.34,28.42,67168900,25.93 -2007-09-19,28.87,28.91,28.30,28.67,94242200,26.16 -2007-09-18,28.70,28.97,28.27,28.93,77462400,26.40 -2007-09-17,28.79,28.88,28.62,28.73,39536500,26.22 -2007-09-14,28.98,29.11,28.88,29.04,33496600,26.50 -2007-09-13,29.12,29.26,28.96,29.16,35288600,26.61 -2007-09-12,28.81,29.17,28.80,28.93,42364700,26.40 -2007-09-11,28.63,28.95,28.58,28.93,34380800,26.40 -2007-09-10,28.67,28.75,28.41,28.48,37247600,25.99 -2007-09-07,28.62,28.83,28.32,28.44,52160900,25.95 -2007-09-06,28.56,29.01,28.55,28.91,45430800,26.38 -2007-09-05,28.65,28.73,28.42,28.48,47669800,25.99 -2007-09-04,28.50,29.10,28.48,28.81,45689600,26.29 -2007-08-31,28.70,28.92,28.36,28.73,42511900,26.22 -2007-08-30,28.42,28.93,28.32,28.45,33690700,25.96 -2007-08-29,28.13,28.61,27.82,28.59,45753700,26.09 -2007-08-28,28.30,28.49,27.91,27.93,43924400,25.49 -2007-08-27,28.61,28.77,28.40,28.49,32789500,26.00 -2007-08-24,28.21,28.84,28.07,28.81,45158900,26.29 -2007-08-23,28.28,28.33,28.10,28.30,33886600,25.82 -2007-08-22,28.27,28.32,28.01,28.22,44763500,25.75 -2007-08-21,28.10,28.32,27.87,28.07,50786200,25.61 -2007-08-20,28.18,28.49,28.08,28.26,49952000,25.79 -2007-08-17,28.09,28.25,27.82,28.25,76747700,25.78 -2007-08-16,27.88,28.35,27.51,27.81,81447400,25.38 -2007-08-15,28.24,28.99,28.05,28.10,48117700,25.64 -2007-08-14,28.77,28.89,28.20,28.27,42944100,25.80 -2007-08-13,28.94,28.99,28.44,28.63,55492300,26.03 -2007-08-10,28.90,29.05,28.26,28.71,76576200,26.11 -2007-08-09,29.64,30.10,28.92,29.30,72964500,26.64 -2007-08-08,29.72,30.01,29.21,30.00,52898600,27.28 -2007-08-07,29.33,29.79,29.05,29.55,49163000,26.87 -2007-08-06,29.05,29.54,28.75,29.54,59530500,26.86 -2007-08-03,29.45,29.78,28.90,28.96,61535500,26.33 -2007-08-02,29.19,29.79,29.02,29.52,47938300,26.84 -2007-08-01,28.95,29.55,28.82,29.30,80006300,26.64 -2007-07-31,29.71,29.72,28.98,28.99,66554000,26.36 -2007-07-30,29.41,29.49,28.95,29.40,67499600,26.73 -2007-07-27,29.93,30.00,29.36,29.39,69214600,26.72 -2007-07-26,30.24,30.53,29.51,29.98,87025300,27.26 -2007-07-25,30.99,31.30,30.37,30.71,54950100,27.92 -2007-07-24,31.01,31.48,30.71,30.80,59729300,28.01 -2007-07-23,31.36,31.52,31.12,31.19,48910600,28.36 -2007-07-20,31.15,31.20,30.79,31.16,98292600,28.33 -2007-07-19,31.05,31.84,30.93,31.51,121159300,28.65 -2007-07-18,30.51,30.97,30.50,30.92,64414400,28.12 -2007-07-17,30.02,30.88,30.01,30.78,77539600,27.99 -2007-07-16,29.76,30.24,29.72,30.03,48023200,27.31 -2007-07-13,29.94,30.02,29.66,29.82,42173000,27.11 -2007-07-12,29.56,30.11,29.44,30.07,54302400,27.34 -2007-07-11,29.24,29.65,29.21,29.49,48017000,26.81 -2007-07-10,29.70,29.99,29.18,29.33,66013500,26.67 -2007-07-09,29.86,29.95,29.81,29.87,33831400,27.16 -2007-07-06,29.91,30.04,29.66,29.97,57541000,27.25 -2007-07-05,30.05,30.22,29.83,29.99,47838500,27.27 -2007-07-03,29.79,30.22,29.78,30.02,35202600,27.30 -2007-07-02,29.67,29.80,29.49,29.74,47316000,27.04 -2007-06-29,29.87,29.93,29.04,29.47,71193900,26.80 -2007-06-28,29.86,29.97,29.68,29.83,46055200,27.12 -2007-06-27,29.36,29.95,29.36,29.87,53468600,27.16 -2007-06-26,29.55,29.80,29.50,29.52,48340300,26.84 -2007-06-25,29.47,29.77,29.38,29.49,53905800,26.81 -2007-06-22,30.00,30.10,29.45,29.49,86219900,26.81 -2007-06-21,29.98,30.30,29.91,30.22,56564800,27.48 -2007-06-20,30.44,30.51,29.96,30.01,46861600,27.29 -2007-06-19,30.48,30.66,30.38,30.46,46802600,27.70 -2007-06-18,30.69,30.72,30.42,30.51,45412600,27.74 -2007-06-15,30.86,30.88,30.43,30.49,100933000,27.72 -2007-06-14,30.35,30.71,30.30,30.52,59065700,27.75 -2007-06-13,29.97,30.41,29.85,30.39,64435600,27.63 -2007-06-12,29.96,30.24,29.77,29.85,56981800,27.14 -2007-06-11,29.94,30.25,29.93,30.02,48467400,27.30 -2007-06-08,29.58,30.06,29.41,30.05,61346200,27.32 -2007-06-07,30.02,30.29,29.59,29.62,71971400,26.93 -2007-06-06,30.37,30.53,30.25,30.29,38217500,27.54 -2007-06-05,30.62,30.63,30.33,30.58,44265000,27.81 -2007-06-04,30.42,30.76,30.40,30.72,41434500,27.93 -2007-06-01,30.79,30.90,30.55,30.59,39469400,27.81 -2007-05-31,31.12,31.16,30.61,30.69,85290500,27.91 -2007-05-30,30.55,31.13,30.51,31.11,57376800,28.29 -2007-05-29,30.49,30.83,30.39,30.79,42373100,28.00 -2007-05-25,30.28,30.66,30.18,30.48,47726500,27.71 -2007-05-24,30.54,30.80,29.96,30.17,64046400,27.43 -2007-05-23,30.84,30.84,30.57,30.58,46322500,27.81 -2007-05-22,30.90,30.93,30.66,30.69,39999500,27.91 -2007-05-21,30.73,31.16,30.73,31.05,41836400,28.23 -2007-05-18,30.97,30.99,30.58,30.83,58453000,28.03 -2007-05-17,31.03,31.14,30.96,30.98,41045600,28.17 -2007-05-16,31.00,31.09,30.81,31.07,45833600,28.25 -2007-05-15,30.90,31.09,30.84,30.90,75013900,28.10 -2007-05-14,30.84,30.99,30.81,30.97,70188500,28.07 -2007-05-11,30.57,30.98,30.55,30.89,43425300,28.00 -2007-05-10,30.68,30.93,30.53,30.58,55398600,27.72 -2007-05-09,30.70,30.93,30.57,30.78,51735000,27.90 -2007-05-08,30.68,30.94,30.58,30.75,60551700,27.87 -2007-05-07,30.52,30.76,30.48,30.71,59889100,27.83 -2007-05-04,30.68,30.70,30.29,30.56,104385900,27.70 -2007-05-03,30.60,31.00,30.53,30.97,82036800,28.07 -2007-05-02,30.39,30.69,30.30,30.61,80686700,27.74 -2007-05-01,29.94,30.42,29.90,30.40,73539300,27.55 -2007-04-30,30.13,30.37,29.94,29.94,67788800,27.14 -2007-04-27,30.17,30.74,30.00,30.12,128298800,27.30 -2007-04-26,29.09,29.35,28.91,29.10,68760300,26.37 -2007-04-25,28.86,29.00,28.69,28.99,39475000,26.27 -2007-04-24,28.79,28.96,28.59,28.79,34236700,26.09 -2007-04-23,28.96,28.99,28.67,28.78,41739100,26.08 -2007-04-20,28.98,29.10,28.70,29.02,60311500,26.30 -2007-04-19,28.34,28.89,28.26,28.69,43648800,26.00 -2007-04-18,28.61,28.67,28.36,28.60,41778400,25.92 -2007-04-17,28.63,28.89,28.56,28.85,33170200,26.15 -2007-04-16,28.60,28.75,28.21,28.73,30740100,26.04 -2007-04-13,28.43,28.70,28.10,28.61,36002900,25.93 -2007-04-12,28.06,28.62,28.04,28.54,43762100,25.87 -2007-04-11,28.30,28.57,27.99,28.11,44050200,25.48 -2007-04-10,28.50,28.64,28.22,28.40,38643100,25.74 -2007-04-09,28.58,28.72,28.39,28.57,31384600,25.89 -2007-04-05,28.32,28.65,28.30,28.55,30131200,25.88 -2007-04-04,28.01,28.78,27.90,28.50,63244200,25.83 -2007-04-03,27.86,28.06,27.75,27.87,39821300,25.26 -2007-04-02,27.89,27.93,27.56,27.74,41977600,25.14 -2007-03-30,27.75,27.95,27.50,27.87,47061000,25.26 -2007-03-29,27.84,27.85,27.49,27.75,42629900,25.15 -2007-03-28,27.58,28.00,27.40,27.64,46947000,25.05 -2007-03-27,28.04,28.16,27.65,27.72,58979800,25.12 -2007-03-26,27.94,28.22,27.70,28.22,47491500,25.58 -2007-03-23,28.22,28.27,27.80,28.02,50519800,25.40 -2007-03-22,28.52,28.55,28.01,28.27,47934900,25.62 -2007-03-21,27.90,28.52,27.56,28.52,72808200,25.85 -2007-03-20,27.93,28.16,27.76,27.84,47902400,25.23 -2007-03-19,27.34,27.83,27.20,27.83,49412000,25.22 -2007-03-16,27.35,27.48,27.20,27.33,65055300,24.77 -2007-03-15,27.32,27.47,27.20,27.28,51757100,24.73 -2007-03-14,26.82,27.40,26.73,27.40,75730300,24.83 -2007-03-13,27.25,27.40,26.71,26.72,75169500,24.22 -2007-03-12,27.18,27.48,27.13,27.44,36516400,24.87 -2007-03-09,27.42,27.48,27.03,27.29,80125000,24.73 -2007-03-08,27.72,27.85,26.60,27.32,72175200,24.76 -2007-03-07,27.76,27.90,27.55,27.61,52044700,25.02 -2007-03-06,27.80,27.94,27.65,27.83,49361800,25.22 -2007-03-05,27.49,27.91,27.41,27.55,56454300,24.97 -2007-03-02,28.02,28.16,27.76,27.76,63254700,25.16 -2007-03-01,27.82,28.33,27.73,28.09,80175700,25.46 -2007-02-28,27.95,28.25,27.92,28.17,86333300,25.53 -2007-02-27,28.71,28.97,27.79,27.87,87143300,25.26 -2007-02-26,28.96,29.09,28.82,29.07,63481900,26.35 -2007-02-23,29.22,29.28,28.89,28.90,63787100,26.19 -2007-02-22,29.31,29.54,29.16,29.39,57754400,26.64 -2007-02-21,28.75,29.39,28.74,29.35,68604900,26.60 -2007-02-20,28.63,28.86,28.47,28.83,53978200,26.13 -2007-02-16,28.91,28.94,28.65,28.74,109340300,26.05 -2007-02-15,29.58,29.65,29.22,29.46,63858100,26.70 -2007-02-14,29.17,29.69,29.15,29.40,55588600,26.65 -2007-02-13,29.04,29.20,28.96,29.01,50348100,26.29 -2007-02-12,28.89,29.09,28.83,28.94,52774400,26.14 -2007-02-09,29.35,29.40,28.93,28.98,69823100,26.18 -2007-02-08,29.24,29.80,29.20,29.26,48749000,26.43 -2007-02-07,29.64,29.70,29.25,29.37,65145500,26.53 -2007-02-06,29.59,29.75,29.22,29.51,79281100,26.65 -2007-02-05,29.97,30.02,29.41,29.61,99102100,26.74 -2007-02-02,30.82,30.84,30.13,30.19,60401700,27.27 -2007-02-01,30.84,30.94,30.37,30.56,55355800,27.60 -2007-01-31,30.41,31.10,30.35,30.86,73968400,27.87 -2007-01-30,30.57,30.64,30.14,30.48,61900400,27.53 -2007-01-29,30.65,30.78,30.34,30.53,57605900,27.58 -2007-01-26,31.22,31.23,30.60,30.60,96103700,27.64 -2007-01-25,31.08,31.48,30.45,30.45,97378700,27.50 -2007-01-24,30.78,31.30,30.65,31.09,58527800,28.08 -2007-01-23,30.63,30.96,30.52,30.74,49171200,27.76 -2007-01-22,31.06,31.12,30.51,30.72,56143900,27.75 -2007-01-19,30.73,31.11,30.69,31.11,75826900,28.10 -2007-01-18,31.15,31.37,30.80,31.00,56364300,28.00 -2007-01-17,31.26,31.44,31.01,31.10,58519600,28.09 -2007-01-16,31.26,31.45,31.03,31.16,62379600,28.14 -2007-01-12,30.65,31.39,30.64,31.21,103972500,28.19 -2007-01-11,29.76,30.75,29.65,30.70,99464300,27.73 -2007-01-10,29.80,29.89,29.43,29.66,55017400,26.79 -2007-01-09,30.00,30.18,29.73,29.96,44636600,27.06 -2007-01-08,29.65,30.10,29.53,29.93,50220200,27.03 -2007-01-05,29.63,29.75,29.45,29.64,44607200,26.77 -2007-01-04,29.70,29.97,29.44,29.81,45774500,26.92 -2007-01-03,29.91,30.25,29.40,29.86,76935100,26.97 -2006-12-29,29.86,30.15,29.83,29.86,41739800,26.97 -2006-12-28,29.86,30.03,29.81,29.98,26690600,27.08 -2006-12-27,29.99,30.13,29.91,30.02,31248400,27.11 -2006-12-26,29.53,30.00,29.40,29.99,37098300,27.09 -2006-12-22,29.83,29.86,29.62,29.64,37971700,26.77 -2006-12-21,30.13,30.14,29.89,29.98,32270500,27.08 -2006-12-20,29.99,30.24,29.97,30.09,31202100,27.18 -2006-12-19,29.71,30.17,29.53,29.99,53822100,27.09 -2006-12-18,30.19,30.26,29.78,29.89,56986800,27.00 -2006-12-15,30.14,30.23,30.03,30.19,102783700,27.27 -2006-12-14,29.54,30.08,29.52,30.07,85866500,27.16 -2006-12-13,29.60,29.60,29.32,29.55,46002500,26.69 -2006-12-12,29.56,29.63,29.22,29.43,68529400,26.58 -2006-12-11,29.19,29.75,29.11,29.54,107712000,26.68 -2006-12-08,28.82,29.40,28.80,29.40,108854900,26.55 -2006-12-07,28.96,29.07,28.81,28.85,46831100,26.06 -2006-12-06,29.10,29.13,28.87,28.99,48564100,26.18 -2006-12-05,29.36,29.40,29.03,29.13,45606000,26.31 -2006-12-04,29.23,29.52,29.17,29.33,55123400,26.49 -2006-12-01,29.23,29.30,28.90,29.12,72257000,26.30 -2006-11-30,29.42,29.57,29.33,29.36,53297400,26.52 -2006-11-29,29.44,29.78,29.43,29.57,58775100,26.71 -2006-11-28,29.34,29.42,29.13,29.39,52602300,26.55 -2006-11-27,29.69,29.74,29.33,29.48,72722100,26.63 -2006-11-24,29.66,29.84,29.64,29.76,20456700,26.88 -2006-11-22,29.97,30.00,29.82,29.92,43907200,27.02 -2006-11-21,29.91,30.00,29.79,29.92,66446600,27.02 -2006-11-20,29.52,30.00,29.50,29.89,85703800,27.00 -2006-11-17,29.31,29.54,29.28,29.40,49356700,26.55 -2006-11-16,29.14,29.64,29.13,29.47,64328500,26.62 -2006-11-15,29.13,29.36,29.11,29.12,63943200,26.30 -2006-11-14,29.28,29.42,29.07,29.23,63012500,26.40 -2006-11-13,29.19,29.46,29.16,29.35,47271800,26.42 -2006-11-10,29.17,29.29,29.15,29.24,37855100,26.32 -2006-11-09,29.11,29.40,29.00,29.26,89407500,26.34 -2006-11-08,28.78,29.23,28.66,28.98,77403300,26.09 -2006-11-07,28.86,29.07,28.80,28.95,56511200,26.06 -2006-11-06,28.77,29.05,28.76,28.84,60446200,25.96 -2006-11-03,28.85,28.93,28.61,28.73,41124500,25.86 -2006-11-02,28.71,28.86,28.58,28.77,58674400,25.90 -2006-11-01,28.78,28.99,28.70,28.81,75895900,25.93 -2006-10-31,28.66,28.85,28.56,28.71,61861700,25.84 -2006-10-30,28.35,28.84,28.32,28.53,47296800,25.68 -2006-10-27,28.49,28.79,28.25,28.34,89060100,25.51 -2006-10-26,28.33,28.41,28.04,28.35,69964200,25.52 -2006-10-25,28.28,28.46,28.14,28.31,40717100,25.48 -2006-10-24,28.43,28.43,28.13,28.28,61409600,25.46 -2006-10-23,28.30,28.69,28.18,28.45,48525000,25.61 -2006-10-20,28.48,28.49,28.17,28.43,48887800,25.59 -2006-10-19,28.35,28.45,28.12,28.29,44730800,25.46 -2006-10-18,28.50,28.70,28.26,28.52,40630800,25.67 -2006-10-17,28.24,28.51,28.17,28.44,40122600,25.60 -2006-10-16,28.48,28.60,28.33,28.45,49744800,25.61 -2006-10-13,28.34,28.69,28.31,28.37,129751900,25.54 -2006-10-12,27.58,28.29,27.54,28.22,120174900,25.40 -2006-10-11,27.46,27.67,27.42,27.54,37219600,24.79 -2006-10-10,27.69,27.75,27.44,27.69,34598500,24.92 -2006-10-09,27.80,27.93,27.62,27.72,33366300,24.95 -2006-10-06,27.76,28.00,27.65,27.87,36452200,25.09 -2006-10-05,27.92,28.11,27.78,27.92,81967200,25.13 -2006-10-04,27.39,27.96,27.37,27.94,82191200,25.15 -2006-10-03,27.37,27.48,27.21,27.37,39386200,24.64 -2006-10-02,27.32,27.49,27.15,27.36,52908100,24.63 -2006-09-29,27.35,27.42,27.21,27.35,34283500,24.62 -2006-09-28,27.47,27.52,27.26,27.40,44179700,24.66 -2006-09-27,27.18,27.47,27.12,27.44,66233900,24.70 -2006-09-26,26.91,27.32,26.88,27.20,54766500,24.48 -2006-09-25,26.81,27.19,26.79,26.95,67903900,24.26 -2006-09-22,26.83,26.85,26.48,26.66,47712500,24.00 -2006-09-21,27.24,27.25,26.85,26.90,58495100,24.21 -2006-09-20,27.01,27.23,26.99,27.18,71676400,24.47 -2006-09-19,26.74,26.94,26.72,26.86,43039100,24.18 -2006-09-18,26.74,27.04,26.67,26.79,49135000,24.11 -2006-09-15,26.58,26.94,26.49,26.85,126057700,24.17 -2006-09-14,25.99,26.50,25.98,26.33,74324500,23.70 -2006-09-13,25.82,26.10,25.82,25.98,37706700,23.39 -2006-09-12,25.90,25.98,25.72,25.93,52248800,23.34 -2006-09-11,25.43,25.95,25.42,25.91,55608200,23.32 -2006-09-08,25.53,25.79,25.46,25.60,36866800,23.04 -2006-09-07,25.48,25.70,25.39,25.43,51266900,22.89 -2006-09-06,25.51,25.72,25.51,25.61,50160400,23.05 -2006-09-05,25.69,25.96,25.56,25.61,44222400,23.05 -2006-09-01,25.89,25.97,25.64,25.84,31594600,23.26 -2006-08-31,25.87,25.98,25.68,25.70,26380500,23.13 -2006-08-30,25.85,25.89,25.64,25.80,30283100,23.22 -2006-08-29,25.92,25.98,25.63,25.84,42711200,23.26 -2006-08-28,25.84,26.00,25.69,25.95,34190900,23.36 -2006-08-25,25.71,26.00,25.69,25.85,33115900,23.27 -2006-08-24,25.82,25.86,25.50,25.74,35933300,23.17 -2006-08-23,25.65,25.95,25.52,25.67,44648500,23.11 -2006-08-22,26.01,26.25,25.62,25.62,89312400,23.06 -2006-08-21,25.66,26.13,25.56,26.12,88398300,23.51 -2006-08-18,25.05,25.80,24.98,25.79,128414800,23.21 -2006-08-17,24.70,24.75,24.61,24.70,45674800,22.23 -2006-08-16,24.61,24.73,24.47,24.70,52373600,22.23 -2006-08-15,24.55,24.65,24.44,24.62,48994500,22.16 -2006-08-14,24.52,24.60,24.35,24.53,47831900,22.00 -2006-08-11,24.43,24.45,24.20,24.43,30255500,21.91 -2006-08-10,24.37,24.60,24.34,24.46,31753400,21.94 -2006-08-09,24.49,24.64,24.34,24.44,44405700,21.92 -2006-08-08,24.39,24.52,24.20,24.34,58171300,21.83 -2006-08-07,24.28,24.48,24.19,24.22,36862400,21.72 -2006-08-04,24.40,24.49,24.15,24.29,45690400,21.78 -2006-08-03,24.19,24.48,24.15,24.21,43155300,21.71 -2006-08-02,24.12,24.40,24.03,24.30,46462000,21.79 -2006-08-01,24.02,24.20,23.85,23.99,49168700,21.52 -2006-07-31,24.07,24.42,24.01,24.06,40254400,21.58 -2006-07-28,24.08,24.28,24.06,24.25,51705800,21.75 -2006-07-27,24.58,24.60,23.77,23.87,85386800,21.41 -2006-07-26,24.12,24.53,24.10,24.37,54942100,21.86 -2006-07-25,24.00,24.29,23.90,24.22,60075800,21.72 -2006-07-24,24.01,24.11,23.79,24.00,59586700,21.52 -2006-07-21,24.08,24.15,23.00,23.87,175483800,21.41 -2006-07-20,23.44,23.45,22.78,22.85,76605200,20.49 -2006-07-19,22.82,23.46,22.72,23.40,82188200,20.99 -2006-07-18,22.59,22.76,22.48,22.74,65047300,20.39 -2006-07-17,22.29,22.61,22.26,22.48,37053500,20.16 -2006-07-14,22.28,22.55,22.23,22.29,67499400,19.99 -2006-07-13,22.37,22.61,22.25,22.26,73099500,19.96 -2006-07-12,22.79,22.88,22.62,22.64,77379300,20.30 -2006-07-11,23.37,23.37,22.74,23.10,88676300,20.72 -2006-07-10,23.43,23.66,23.38,23.50,50565100,21.08 -2006-07-07,23.39,23.55,23.30,23.30,63168800,20.90 -2006-07-06,23.45,23.61,23.42,23.48,44775200,21.06 -2006-07-05,23.48,23.52,23.30,23.35,53093500,20.94 -2006-07-03,23.53,23.72,23.45,23.70,25711400,21.25 -2006-06-30,23.54,23.65,23.30,23.30,73048800,20.90 -2006-06-29,23.32,23.63,23.22,23.47,121395500,21.05 -2006-06-28,22.96,23.25,22.91,23.16,71906500,20.77 -2006-06-27,22.89,23.16,22.84,22.86,84759100,20.50 -2006-06-26,22.65,22.89,22.63,22.82,53644100,20.47 -2006-06-23,22.85,22.87,22.50,22.50,60532600,20.18 -2006-06-22,23.06,23.17,22.78,22.88,76590600,20.52 -2006-06-21,22.61,23.15,22.53,23.08,91660300,20.70 -2006-06-20,22.54,22.76,22.50,22.56,90598500,20.23 -2006-06-19,22.14,22.60,22.12,22.55,129640900,20.22 -2006-06-16,21.97,22.28,21.79,22.10,147506500,19.82 -2006-06-15,22.01,22.13,21.80,22.07,121577300,19.79 -2006-06-14,21.59,21.94,21.55,21.88,86081500,19.62 -2006-06-13,21.73,22.03,21.46,21.51,113175300,19.29 -2006-06-12,21.96,22.10,21.70,21.71,74309700,19.47 -2006-06-09,22.15,22.19,21.89,21.92,52573800,19.66 -2006-06-08,22.03,22.21,21.97,22.11,104126900,19.83 -2006-06-07,22.15,22.39,22.01,22.04,73827500,19.77 -2006-06-06,22.55,22.56,21.98,22.13,126601300,19.85 -2006-06-05,22.72,22.73,22.49,22.50,63914100,20.18 -2006-06-02,22.87,22.99,22.67,22.76,73935600,20.41 -2006-06-01,22.74,22.84,22.62,22.82,80230800,20.47 -2006-05-31,23.26,23.35,22.65,22.65,120202000,20.31 -2006-05-30,23.55,23.76,23.14,23.15,52497500,20.76 -2006-05-26,23.77,23.88,23.56,23.72,46861600,21.27 -2006-05-25,23.57,23.92,23.54,23.74,83052700,21.29 -2006-05-24,22.99,23.54,22.98,23.50,107356700,21.08 -2006-05-23,23.11,23.38,22.77,22.79,79986300,20.44 -2006-05-22,22.48,23.02,22.45,22.88,87322300,20.52 -2006-05-19,22.79,22.90,22.52,22.56,100071200,20.23 -2006-05-18,22.84,23.14,22.76,22.83,95476400,20.47 -2006-05-17,22.89,23.08,22.73,22.73,98598300,20.39 -2006-05-16,23.16,24.00,22.91,23.01,82095100,20.64 -2006-05-15,23.10,23.23,23.03,23.15,67314800,20.76 -2006-05-12,23.14,23.37,23.05,23.17,83115900,20.70 -2006-05-11,23.71,23.79,23.15,23.22,92916700,20.74 -2006-05-10,23.67,23.79,23.59,23.77,76563300,21.23 -2006-05-09,23.75,24.00,23.49,23.62,75345900,21.10 -2006-05-08,23.85,25.00,23.51,23.73,80693500,21.20 -2006-05-05,23.66,23.95,23.52,23.80,131604300,21.26 -2006-05-04,23.35,23.67,23.14,23.44,171257400,20.94 -2006-05-03,23.99,24.02,23.15,23.17,211527100,20.70 -2006-05-02,24.49,25.00,23.90,24.01,190533500,21.45 -2006-05-01,24.32,25.00,24.09,24.29,174800900,21.70 -2006-04-28,24.23,24.50,24.00,24.15,591052200,21.57 -2006-04-27,26.97,27.63,26.94,27.25,96509600,24.34 -2006-04-26,27.08,27.23,27.00,27.10,39190000,24.21 -2006-04-25,27.09,27.21,27.02,27.11,49222500,24.22 -2006-04-24,27.07,27.25,26.98,27.11,42318400,24.22 -2006-04-21,27.05,27.39,27.00,27.15,58528000,24.25 -2006-04-20,27.05,27.19,26.70,27.03,45648300,24.15 -2006-04-19,27.11,27.19,26.96,27.03,45111100,24.15 -2006-04-18,26.94,27.50,26.82,27.22,56272700,24.32 -2006-04-17,27.03,27.05,26.73,26.84,35796200,23.98 -2006-04-13,27.08,27.20,27.00,27.07,28160000,24.18 -2006-04-12,27.10,27.20,26.97,27.20,32183000,24.30 -2006-04-11,27.29,27.32,27.00,27.13,42953400,24.24 -2006-04-10,27.23,27.44,27.20,27.29,39432000,24.38 -2006-04-07,27.61,27.72,27.23,27.25,47249400,24.34 -2006-04-06,27.66,27.72,27.37,27.56,51885500,24.62 -2006-04-05,27.88,27.94,27.64,27.74,41539300,24.78 -2006-04-04,27.60,27.80,27.47,27.64,45470000,24.69 -2006-04-03,27.67,27.73,27.44,27.56,57605300,24.62 -2006-03-31,27.30,27.54,27.21,27.21,62190500,24.31 -2006-03-30,27.03,27.39,27.00,27.23,54612000,24.33 -2006-03-29,26.95,27.20,26.92,27.02,53150300,24.14 -2006-03-28,27.01,27.21,26.81,26.90,58520500,24.03 -2006-03-27,27.01,27.30,27.00,27.01,59908600,24.13 -2006-03-24,26.71,27.21,26.62,27.01,69157600,24.13 -2006-03-23,27.08,27.10,26.66,26.85,73682900,23.99 -2006-03-22,27.08,27.50,26.80,27.15,145696100,24.25 -2006-03-21,27.74,28.22,27.68,27.74,73199600,24.78 -2006-03-20,27.70,27.99,27.67,27.89,67094100,24.92 -2006-03-17,27.35,27.66,27.27,27.50,120615000,24.57 -2006-03-16,27.34,27.48,27.22,27.27,73793700,24.36 -2006-03-15,27.20,27.45,27.01,27.36,57152000,24.44 -2006-03-14,27.04,27.38,26.99,27.23,39821800,24.33 -2006-03-13,27.18,27.29,26.94,27.11,40342600,24.22 -2006-03-10,27.06,27.22,26.88,27.17,41297200,24.27 -2006-03-09,27.27,27.42,27.00,27.00,45360700,24.12 -2006-03-08,26.99,27.50,26.97,27.25,57547400,24.34 -2006-03-07,26.90,27.10,26.81,27.06,51613900,24.17 -2006-03-06,26.92,27.15,26.83,26.91,53054100,24.04 -2006-03-03,26.81,27.16,26.74,26.93,45218800,24.06 -2006-03-02,27.02,27.10,26.90,26.97,41850300,24.09 -2006-03-01,26.98,27.20,26.95,27.14,53061200,24.25 -2006-02-28,26.95,27.30,26.87,26.87,65036100,24.00 -2006-02-27,26.75,27.26,26.67,27.05,51301500,24.17 -2006-02-24,26.59,26.74,26.52,26.63,44753800,23.79 -2006-02-23,26.73,26.89,26.54,26.66,47359100,23.82 -2006-02-22,26.53,26.86,26.47,26.72,43043100,23.87 -2006-02-21,26.72,26.72,26.34,26.54,50216100,23.71 -2006-02-17,26.67,26.81,26.56,26.70,41513200,23.85 -2006-02-16,26.85,26.90,26.57,26.81,48868500,23.95 -2006-02-15,26.60,26.93,26.50,26.88,62808900,24.01 -2006-02-14,26.41,26.68,26.35,26.65,58432900,23.73 -2006-02-13,26.63,26.70,26.34,26.39,46707000,23.50 -2006-02-10,26.62,26.89,26.51,26.69,52127000,23.76 -2006-02-09,26.96,27.03,26.65,26.66,52861700,23.74 -2006-02-08,27.01,27.08,26.71,26.91,51795200,23.96 -2006-02-07,26.95,27.15,26.81,26.94,72159500,23.99 -2006-02-06,27.51,27.54,27.09,27.17,60170500,24.19 -2006-02-03,27.48,27.70,27.34,27.54,75022700,24.52 -2006-02-02,27.97,27.99,27.55,27.68,55073400,24.64 -2006-02-01,27.96,28.07,27.76,28.04,68448800,24.96 -2006-01-31,27.91,28.38,27.87,28.15,94841300,25.06 -2006-01-30,27.82,28.18,27.78,28.00,103999200,24.93 -2006-01-27,27.23,27.95,27.19,27.79,134520700,24.74 -2006-01-26,26.56,26.72,26.31,26.50,69509300,23.59 -2006-01-25,26.41,26.57,26.23,26.40,59072100,23.50 -2006-01-24,26.34,26.45,26.22,26.28,63040700,23.40 -2006-01-23,26.41,26.53,26.30,26.35,47925600,23.46 -2006-01-20,27.01,27.01,26.26,26.41,79165900,23.51 -2006-01-19,26.87,27.24,26.85,27.02,60367600,24.06 -2006-01-18,26.74,26.98,26.70,26.83,52376200,23.89 -2006-01-17,26.90,27.19,26.90,26.99,58566600,24.03 -2006-01-13,27.03,27.25,27.01,27.19,41418000,24.21 -2006-01-12,27.25,27.26,26.97,27.14,45994800,24.16 -2006-01-11,27.01,27.39,26.90,27.29,70120700,24.30 -2006-01-10,26.65,27.02,26.59,27.00,64921900,24.04 -2006-01-09,26.93,27.07,26.76,26.86,55625000,23.91 -2006-01-06,26.89,27.00,26.49,26.91,100963000,23.96 -2006-01-05,26.96,27.13,26.91,26.99,48245500,24.03 -2006-01-04,26.77,27.08,26.77,26.97,57975600,24.01 -2006-01-03,26.25,27.00,26.10,26.84,79973000,23.90 -2005-12-30,26.15,26.31,26.10,26.15,49044600,23.28 -2005-12-29,26.41,26.50,26.26,26.27,34495500,23.39 -2005-12-28,26.51,26.66,26.35,26.39,35444400,23.50 -2005-12-27,26.68,26.85,26.45,26.46,37819000,23.56 -2005-12-23,26.52,26.67,26.44,26.64,30689200,23.72 -2005-12-22,26.71,26.78,26.42,26.59,91276900,23.67 -2005-12-21,26.87,26.91,26.71,26.73,75800900,23.80 -2005-12-20,26.76,26.88,26.67,26.86,62960600,23.91 -2005-12-19,26.82,26.87,26.65,26.83,68680100,23.89 -2005-12-16,26.88,27.08,26.81,26.90,88542500,23.95 -2005-12-15,27.08,27.11,26.81,26.92,79018100,23.97 -2005-12-14,27.00,27.24,26.85,27.09,65076200,24.12 -2005-12-13,27.29,27.43,27.00,27.13,104285500,24.15 -2005-12-12,27.70,27.75,27.33,27.45,63757200,24.44 -2005-12-09,27.71,27.83,27.64,27.71,48467000,24.67 -2005-12-08,27.71,27.81,27.60,27.69,63931600,24.65 -2005-12-07,27.67,27.75,27.55,27.75,55583200,24.71 -2005-12-06,27.90,27.92,27.68,27.69,65980000,24.65 -2005-12-05,27.93,28.02,27.71,27.85,47517300,24.80 -2005-12-02,27.82,28.10,27.79,28.01,42319600,24.94 -2005-12-01,27.73,28.10,27.73,27.89,61006100,24.83 -2005-11-30,27.68,27.77,27.63,27.68,55904700,24.64 -2005-11-29,27.79,27.79,27.60,27.68,62220400,24.64 -2005-11-28,27.79,27.85,27.53,27.75,57517200,24.71 -2005-11-25,27.80,27.94,27.47,27.76,44082500,24.72 -2005-11-23,27.92,28.09,27.74,27.92,70541300,24.86 -2005-11-22,28.06,28.08,27.86,27.91,104253300,24.85 -2005-11-21,28.07,28.24,27.84,28.16,65794400,25.07 -2005-11-18,28.12,28.25,27.90,28.07,75431200,24.99 -2005-11-17,27.85,28.00,27.76,27.97,91351000,24.90 -2005-11-16,27.48,27.88,27.44,27.74,86277000,24.70 -2005-11-15,27.33,27.54,27.25,27.50,65081000,24.48 -2005-11-14,27.36,27.44,27.20,27.37,67152200,24.30 -2005-11-11,27.15,27.39,27.13,27.28,51945600,24.22 -2005-11-10,26.94,27.15,26.64,27.09,73314800,24.05 -2005-11-09,26.98,27.15,26.94,26.96,59562100,23.93 -2005-11-08,26.94,27.18,26.77,27.05,60091700,24.01 -2005-11-07,26.72,27.08,26.70,27.01,77104800,23.98 -2005-11-04,26.53,26.71,26.45,26.66,57464000,23.67 -2005-11-03,26.60,26.64,26.25,26.44,73421600,23.47 -2005-11-02,25.93,26.50,25.93,26.46,75067100,23.49 -2005-11-01,25.61,26.10,25.61,25.96,71370400,23.05 -2005-10-31,25.61,25.80,25.50,25.70,75122100,22.81 -2005-10-28,25.10,25.60,25.10,25.53,106559300,22.66 -2005-10-27,25.22,25.27,24.85,24.85,61566100,22.06 -2005-10-26,24.97,25.33,24.93,25.11,58178100,22.29 -2005-10-25,24.95,25.13,24.83,25.03,41310500,22.22 -2005-10-24,24.89,25.10,24.68,25.10,51868000,22.28 -2005-10-21,24.91,25.00,24.57,24.78,69431200,22.00 -2005-10-20,25.05,25.13,24.74,24.79,58830600,22.01 -2005-10-19,24.56,25.09,24.50,25.09,66574500,22.27 -2005-10-18,24.49,24.83,24.45,24.57,69328200,21.81 -2005-10-17,24.68,24.69,24.44,24.53,46924400,21.78 -2005-10-14,24.71,24.73,24.50,24.67,53846700,21.90 -2005-10-13,24.31,24.73,24.27,24.59,70192000,21.83 -2005-10-12,24.49,24.70,24.27,24.30,71294400,21.57 -2005-10-11,24.51,24.55,24.25,24.41,76567300,21.67 -2005-10-10,24.67,24.68,24.35,24.46,48880900,21.71 -2005-10-07,24.77,24.84,24.52,24.59,50768700,21.83 -2005-10-06,24.66,24.95,24.53,24.73,81724600,21.95 -2005-10-05,25.04,25.05,24.67,24.67,73684700,21.90 -2005-10-04,25.36,25.39,24.75,24.98,151666300,22.18 -2005-10-03,25.71,25.73,25.44,25.50,55341300,22.64 -2005-09-30,25.91,25.95,25.61,25.73,57644500,22.84 -2005-09-29,25.61,26.00,25.50,25.94,66807100,23.03 -2005-09-28,25.39,25.87,25.38,25.67,71019400,22.79 -2005-09-27,25.37,25.45,25.30,25.34,48797900,22.50 -2005-09-26,25.40,25.49,25.21,25.27,56203700,22.43 -2005-09-23,25.31,25.54,25.12,25.27,66396800,22.43 -2005-09-22,25.49,25.60,25.15,25.34,71314900,22.50 -2005-09-21,25.80,25.90,25.43,25.49,68281800,22.63 -2005-09-20,26.07,26.22,25.69,25.84,61043400,22.94 -2005-09-19,26.09,26.27,25.86,26.00,61832300,23.08 -2005-09-16,26.34,26.40,25.97,26.07,187384300,23.14 -2005-09-15,26.37,26.43,26.22,26.27,60357200,23.32 -2005-09-14,26.52,26.64,26.30,26.31,54969600,23.36 -2005-09-13,26.54,26.76,26.37,26.48,63422900,23.51 -2005-09-12,26.62,26.75,26.52,26.61,40550500,23.62 -2005-09-09,26.62,26.82,26.53,26.58,41515800,23.60 -2005-09-08,26.80,26.88,26.52,26.61,52552300,23.62 -2005-09-07,26.94,27.11,26.82,26.85,44656100,23.84 -2005-09-06,27.06,27.29,26.98,27.00,46089000,23.97 -2005-09-02,27.21,27.27,26.97,27.02,52047500,23.99 -2005-09-01,27.38,27.39,27.15,27.20,75974500,24.15 -2005-08-31,27.17,27.44,27.04,27.38,65210200,24.31 -2005-08-30,27.06,27.23,26.96,27.18,55163200,24.13 -2005-08-29,26.81,27.23,26.81,27.15,52307700,24.10 -2005-08-26,27.06,27.08,26.87,26.97,36774600,23.94 -2005-08-25,26.90,27.09,26.85,27.03,39306300,24.00 -2005-08-24,26.84,27.16,26.78,26.81,63645000,23.80 -2005-08-23,26.84,27.07,26.74,26.87,48296700,23.85 -2005-08-22,26.79,27.17,26.77,26.91,41691700,23.89 -2005-08-19,26.85,26.91,26.70,26.72,36043500,23.72 -2005-08-18,26.89,27.08,26.80,26.82,40861900,23.81 -2005-08-17,26.82,27.15,26.66,26.95,52413100,23.92 -2005-08-16,27.03,27.14,26.70,26.74,46894600,23.74 -2005-08-15,26.98,27.30,26.69,27.13,45976600,24.08 -2005-08-12,27.08,27.14,26.90,27.05,52006500,23.94 -2005-08-11,26.98,27.30,26.89,27.27,48646800,24.14 -2005-08-10,27.41,27.50,26.85,26.95,62818800,23.85 -2005-08-09,27.22,27.51,27.01,27.35,64761800,24.21 -2005-08-08,27.80,27.84,27.08,27.13,77207200,24.01 -2005-08-05,27.29,27.94,27.25,27.76,82212400,24.57 -2005-08-04,27.16,27.50,27.05,27.32,91461400,24.18 -2005-08-03,26.76,27.43,26.73,27.25,139422400,24.12 -2005-08-02,25.90,26.90,25.87,26.81,137510100,23.73 -2005-08-01,25.81,26.05,25.76,25.92,61346800,22.94 -2005-07-29,25.78,26.00,25.59,25.61,59524400,22.67 -2005-07-28,25.75,25.85,25.66,25.75,44738700,22.79 -2005-07-27,25.61,25.80,25.53,25.72,57977300,22.76 -2005-07-26,25.72,25.74,25.53,25.54,51476400,22.61 -2005-07-25,25.69,25.90,25.65,25.69,45174600,22.74 -2005-07-22,25.99,26.34,25.63,25.68,97558900,22.73 -2005-07-21,26.30,26.48,26.00,26.44,112932100,23.40 -2005-07-20,26.00,26.23,25.88,26.19,71424800,23.18 -2005-07-19,25.79,26.25,25.75,26.16,113290100,23.15 -2005-07-18,25.71,25.79,25.55,25.55,39668000,22.61 -2005-07-15,26.04,26.10,25.75,25.79,56472800,22.83 -2005-07-14,25.79,26.10,25.79,25.97,69506800,22.99 -2005-07-13,25.53,25.75,25.48,25.66,44749200,22.71 -2005-07-12,25.24,25.62,25.20,25.61,63384800,22.67 -2005-07-11,25.15,25.38,25.11,25.29,61525400,22.38 -2005-07-08,24.64,25.12,24.63,25.09,56104000,22.21 -2005-07-07,24.58,24.71,24.50,24.65,80082900,21.82 -2005-07-06,24.97,25.08,24.69,24.70,64214600,21.86 -2005-07-05,24.66,25.19,24.62,24.98,61883500,22.11 -2005-07-01,24.85,24.99,24.67,24.71,69718400,21.87 -2005-06-30,25.06,25.14,24.82,24.84,82018200,21.99 -2005-06-29,25.22,25.32,25.00,25.09,55859900,22.21 -2005-06-28,25.09,25.20,25.03,25.07,53058100,22.19 -2005-06-27,25.07,25.25,25.03,25.05,61636200,22.17 -2005-06-24,25.22,25.40,25.04,25.04,57970700,22.16 -2005-06-23,25.17,25.62,25.15,25.31,105159800,22.40 -2005-06-22,25.11,25.26,25.03,25.07,60492700,22.19 -2005-06-21,25.08,25.19,25.04,25.15,81084000,22.26 -2005-06-20,24.98,25.28,24.93,25.11,50538900,22.23 -2005-06-17,25.27,25.29,24.92,25.04,90821300,22.16 -2005-06-16,25.22,25.23,24.95,25.04,65918800,22.16 -2005-06-15,25.40,25.41,25.11,25.26,50764800,22.36 -2005-06-14,25.31,25.44,25.24,25.36,44243300,22.45 -2005-06-13,25.36,25.49,25.26,25.31,49104100,22.40 -2005-06-10,25.49,25.52,25.34,25.43,39459800,22.51 -2005-06-09,25.40,25.61,25.35,25.51,52767900,22.58 -2005-06-08,25.55,25.62,25.34,25.40,45369700,22.48 -2005-06-07,25.33,25.83,25.31,25.51,54511400,22.58 -2005-06-06,25.38,25.50,25.31,25.37,40756900,22.46 -2005-06-03,25.70,25.81,25.34,25.43,79659500,22.51 -2005-06-02,25.71,25.86,25.64,25.79,27212500,22.83 -2005-06-01,25.73,26.00,25.61,25.81,54621000,22.84 -2005-05-31,25.99,26.03,25.75,25.80,46131100,22.84 -2005-05-27,25.83,26.09,25.81,26.07,54978000,23.07 -2005-05-26,25.75,26.00,25.73,25.90,50579200,22.92 -2005-05-25,25.68,25.77,25.50,25.71,35749000,22.76 -2005-05-24,25.80,25.88,25.72,25.75,61287700,22.79 -2005-05-23,25.74,26.07,25.74,25.85,75421100,22.88 -2005-05-20,25.88,25.92,25.73,25.74,64444500,22.78 -2005-05-19,25.75,26.05,25.70,25.92,52120800,22.94 -2005-05-18,25.50,25.84,25.42,25.70,71182400,22.75 -2005-05-17,25.31,25.50,25.25,25.46,39983200,22.53 -2005-05-16,25.23,25.50,25.19,25.49,50577300,22.56 -2005-05-13,25.03,25.38,24.99,25.30,77204300,22.32 -2005-05-12,24.84,25.11,24.83,25.00,74540700,22.06 -2005-05-11,24.89,24.97,24.64,24.91,59463300,21.98 -2005-05-10,25.04,25.08,24.82,24.90,62235100,21.97 -2005-05-09,25.23,25.33,25.05,25.11,61872400,22.15 -2005-05-06,25.33,25.48,25.19,25.22,64322600,22.25 -2005-05-05,25.20,25.33,25.08,25.23,59362300,22.26 -2005-05-04,25.34,25.40,25.11,25.21,86864200,22.24 -2005-05-03,25.13,25.40,25.09,25.36,67867800,22.38 -2005-05-02,25.23,25.36,24.95,25.23,54376700,22.26 -2005-04-29,24.88,25.30,24.79,25.30,98641200,22.32 -2005-04-28,24.82,24.92,24.44,24.45,83623100,21.57 -2005-04-27,24.66,25.15,24.63,24.99,47732800,22.05 -2005-04-26,24.95,25.25,24.74,24.76,60464300,21.85 -2005-04-25,25.07,25.28,24.86,24.99,75457900,22.05 -2005-04-22,25.05,25.25,24.78,24.98,80087500,22.04 -2005-04-21,24.48,25.39,24.47,25.28,93562300,22.30 -2005-04-20,24.66,24.70,24.30,24.32,91923500,21.46 -2005-04-19,24.71,24.80,24.45,24.63,65956200,21.73 -2005-04-18,24.45,24.84,24.40,24.65,75766400,21.75 -2005-04-15,24.58,24.90,24.41,24.46,100251600,21.58 -2005-04-14,25.01,25.14,24.83,24.84,66754400,21.92 -2005-04-13,25.23,25.45,24.99,25.04,60929300,22.09 -2005-04-12,24.92,25.35,24.80,25.32,67517800,22.34 -2005-04-11,25.03,25.11,24.86,24.97,47791800,22.03 -2005-04-08,25.07,25.25,24.91,24.94,47956300,22.00 -2005-04-07,24.66,25.13,24.63,25.10,77451500,22.15 -2005-04-06,24.47,24.94,24.45,24.67,78020200,21.77 -2005-04-05,24.22,24.50,24.12,24.47,73549600,21.59 -2005-04-04,24.11,24.26,23.94,24.23,62196400,21.38 -2005-04-01,24.24,24.35,24.10,24.12,64619600,21.28 -2005-03-31,24.25,24.31,24.12,24.17,62382300,21.33 -2005-03-30,24.04,24.19,24.00,24.16,59585700,21.32 -2005-03-29,24.14,24.24,23.82,23.92,74231700,21.10 -2005-03-28,24.40,24.47,24.18,24.20,49802000,21.35 -2005-03-24,24.24,24.47,24.20,24.28,78820900,21.42 -2005-03-23,23.99,24.39,23.96,24.18,79293300,21.33 -2005-03-22,24.19,24.27,23.96,23.99,102113300,21.17 -2005-03-21,24.35,24.36,24.15,24.20,71446200,21.35 -2005-03-18,24.53,24.91,24.28,24.31,135904000,21.45 -2005-03-17,24.64,24.68,24.53,24.54,60573200,21.65 -2005-03-16,24.82,24.97,24.56,24.63,74841400,21.73 -2005-03-15,25.10,25.24,24.89,24.91,71469400,21.98 -2005-03-14,25.08,25.15,24.96,25.11,65550500,22.15 -2005-03-11,25.45,25.48,25.06,25.09,60617900,22.14 -2005-03-10,25.43,25.48,25.25,25.43,59132900,22.44 -2005-03-09,25.39,25.57,25.28,25.31,62991800,22.33 -2005-03-08,25.40,25.62,25.34,25.40,52871800,22.41 -2005-03-07,25.17,25.79,25.16,25.47,80407400,22.47 -2005-03-04,25.21,25.30,25.13,25.17,63058200,22.21 -2005-03-03,25.30,25.31,25.14,25.17,52183600,22.21 -2005-03-02,25.19,25.48,25.16,25.26,67739000,22.29 -2005-03-01,25.19,25.41,25.13,25.28,56394800,22.30 -2005-02-28,25.22,25.37,25.13,25.16,82728000,22.20 -2005-02-25,25.33,25.38,25.15,25.25,62467700,22.28 -2005-02-24,25.18,25.44,25.15,25.37,85236300,22.38 -2005-02-23,25.24,25.35,25.17,25.20,83689400,22.23 -2005-02-22,25.25,25.49,25.20,25.23,96419200,22.26 -2005-02-18,25.64,25.65,25.40,25.48,77091100,22.48 -2005-02-17,25.71,25.86,25.60,25.65,67024800,22.63 -2005-02-16,25.87,25.93,25.67,25.79,57506600,22.75 -2005-02-15,26.00,26.08,25.86,25.93,76551600,22.88 -2005-02-14,25.93,26.12,25.91,26.01,58694000,22.88 -2005-02-11,26.03,26.12,25.81,25.97,83835900,22.84 -2005-02-10,26.10,26.13,26.00,26.06,71796400,22.92 -2005-02-09,26.25,26.31,26.04,26.07,77874800,22.93 -2005-02-08,26.19,26.34,26.16,26.24,61343700,23.08 -2005-02-07,26.27,26.30,26.06,26.16,57763400,23.01 -2005-02-04,26.17,26.37,26.14,26.32,61246500,23.15 -2005-02-03,26.37,26.40,26.10,26.18,62545400,23.03 -2005-02-02,26.42,26.50,26.28,26.46,79329500,23.27 -2005-02-01,26.25,26.43,26.22,26.39,57981700,23.21 -2005-01-31,26.35,26.52,26.16,26.28,71442100,23.12 -2005-01-28,26.54,26.65,25.96,26.18,110466500,23.03 -2005-01-27,25.95,26.16,25.85,26.11,93204100,22.97 -2005-01-26,26.07,26.17,25.90,26.01,64974500,22.88 -2005-01-25,25.76,26.19,25.75,26.02,67580700,22.89 -2005-01-24,25.76,26.00,25.64,25.67,69010900,22.58 -2005-01-21,25.95,26.13,25.64,25.65,76501000,22.56 -2005-01-20,25.84,26.10,25.74,25.86,58380100,22.75 -2005-01-19,26.21,26.26,25.92,25.98,58114100,22.85 -2005-01-18,26.03,26.35,25.84,26.32,69146400,23.15 -2005-01-14,26.40,26.45,26.04,26.12,92180800,22.97 -2005-01-13,26.68,26.80,26.16,26.27,89861600,23.11 -2005-01-12,26.77,26.85,26.62,26.78,72940600,23.56 -2005-01-11,26.69,26.82,26.61,26.73,64712000,23.51 -2005-01-10,26.60,26.86,26.54,26.80,70376600,23.57 -2005-01-07,26.82,26.89,26.62,26.67,68723300,23.46 -2005-01-06,26.85,27.06,26.64,26.75,76890500,23.53 -2005-01-05,26.84,27.10,26.76,26.78,72463500,23.56 -2005-01-04,26.87,27.10,26.66,26.84,109442100,23.61 -2005-01-03,26.80,26.95,26.65,26.74,65002900,23.52 -2004-12-31,26.75,26.90,26.68,26.72,54959500,23.50 -2004-12-30,26.89,26.94,26.75,26.76,48355400,23.54 -2004-12-29,26.85,27.00,26.82,26.90,47594900,23.66 -2004-12-28,26.85,27.03,26.80,26.95,55075900,23.71 -2004-12-27,27.01,27.10,26.82,26.85,55958500,23.62 -2004-12-23,26.87,27.15,26.83,27.01,65801900,23.76 -2004-12-22,26.84,27.15,26.78,26.97,63651900,23.72 -2004-12-21,27.00,27.17,26.94,27.07,94646100,23.81 -2004-12-20,27.01,27.15,26.89,26.95,85552800,23.71 -2004-12-17,27.00,27.32,26.80,26.96,126184400,23.71 -2004-12-16,27.15,27.28,27.01,27.16,88997500,23.89 -2004-12-15,27.22,27.40,27.07,27.11,106303900,23.85 -2004-12-14,27.05,27.33,27.04,27.23,127843200,23.95 -2004-12-13,27.10,27.28,26.91,27.25,93812500,23.97 -2004-12-10,27.08,27.18,27.04,27.08,70949200,23.82 -2004-12-09,27.13,27.36,26.94,27.23,83006000,23.95 -2004-12-08,27.01,27.36,26.91,27.36,95655000,24.07 -2004-12-07,27.26,27.38,27.00,27.07,111656000,23.81 -2004-12-06,27.10,27.44,27.07,27.33,55297400,24.04 -2004-12-03,27.16,27.44,27.14,27.23,76498400,23.95 -2004-12-02,27.27,27.40,26.92,27.09,96088300,23.83 -2004-12-01,26.95,27.28,26.81,27.25,99889000,23.97 -2004-11-30,26.75,27.01,26.70,26.81,75960400,23.58 -2004-11-29,26.64,26.95,26.61,26.77,67079900,23.55 -2004-11-26,26.56,26.82,26.55,26.60,24398700,23.40 -2004-11-24,26.62,26.73,26.40,26.64,60069200,23.43 -2004-11-23,26.52,26.70,26.40,26.53,70459700,23.34 -2004-11-22,26.75,26.82,26.10,26.65,92410800,23.44 -2004-11-19,27.03,27.07,26.84,26.86,85808600,23.63 -2004-11-18,27.13,27.17,27.00,27.07,63249900,23.81 -2004-11-17,27.25,27.35,27.06,27.17,58830700,23.90 -2004-11-16,27.33,27.34,27.05,27.12,64522600,23.85 -2004-11-15,27.34,27.50,27.20,27.39,104468000,24.09 -2004-11-12,30.16,30.20,29.80,29.97,162269000,23.65 -2004-11-11,29.89,30.08,29.82,29.98,87358900,23.66 -2004-11-10,29.92,30.00,29.69,29.73,84097700,23.46 -2004-11-09,29.43,29.89,29.35,29.77,100401000,23.49 -2004-11-08,29.18,29.48,29.13,29.28,112802100,23.11 -2004-11-05,29.21,29.36,29.03,29.31,95337700,23.13 -2004-11-04,28.38,29.00,28.38,29.00,87867700,22.89 -2004-11-03,28.65,28.65,28.31,28.47,79666700,22.47 -2004-11-02,28.26,28.47,28.03,28.24,89417100,22.29 -2004-11-01,28.16,28.28,27.96,28.08,72930900,22.16 -2004-10-29,28.12,28.15,27.80,27.97,80010100,22.07 -2004-10-28,28.11,28.54,27.90,28.01,63059600,22.11 -2004-10-27,27.86,28.35,27.58,28.15,72392600,22.22 -2004-10-26,27.71,27.90,27.63,27.90,76966600,22.02 -2004-10-25,27.67,27.77,27.55,27.63,61529500,21.81 -2004-10-22,28.30,28.34,27.58,27.74,101912800,21.89 -2004-10-21,28.81,28.89,28.47,28.56,94988500,22.54 -2004-10-20,28.22,28.75,28.12,28.70,69078100,22.65 -2004-10-19,28.53,28.59,28.17,28.18,57026500,22.24 -2004-10-18,28.07,28.45,27.98,28.41,50350700,22.42 -2004-10-15,27.97,28.24,27.82,27.99,49828500,22.09 -2004-10-14,28.04,28.16,27.80,27.80,41548700,21.94 -2004-10-13,28.19,28.27,27.94,28.03,49500700,22.12 -2004-10-12,27.83,28.16,27.81,28.03,56412900,22.12 -2004-10-11,28.20,28.22,27.93,28.06,44691000,22.14 -2004-10-08,28.10,28.33,27.97,27.99,49556600,22.09 -2004-10-07,28.54,28.59,28.16,28.17,38401500,22.23 -2004-10-06,28.39,28.55,28.23,28.53,56999600,22.52 -2004-10-05,28.15,28.45,28.10,28.38,58017700,22.40 -2004-10-04,28.44,28.46,28.07,28.12,62016200,22.19 -2004-10-01,27.82,28.32,27.78,28.25,66302800,22.29 -2004-09-30,27.59,27.79,27.52,27.65,71218000,21.82 -2004-09-29,27.26,27.69,27.23,27.58,61529300,21.77 -2004-09-28,27.21,27.36,27.04,27.27,62055100,21.52 -2004-09-27,27.17,27.32,27.13,27.19,47813600,21.46 -2004-09-24,27.39,27.46,27.19,27.29,49859800,21.54 -2004-09-23,27.19,27.39,27.17,27.35,52155800,21.58 -2004-09-22,27.28,27.74,27.07,27.12,68409000,21.40 -2004-09-21,27.45,27.53,27.25,27.26,73874400,21.51 -2004-09-20,27.44,27.65,27.33,27.51,51513600,21.71 -2004-09-17,27.39,27.53,27.26,27.51,65283000,21.71 -2004-09-16,27.22,27.35,27.17,27.26,35951500,21.51 -2004-09-15,27.36,27.40,27.14,27.19,52605700,21.46 -2004-09-14,27.37,27.51,27.27,27.44,55920000,21.66 -2004-09-13,27.53,27.57,26.74,27.25,48239200,21.51 -2004-09-10,27.34,27.51,27.18,27.49,52664500,21.70 -2004-09-09,27.30,27.47,27.18,27.28,56904700,21.53 -2004-09-08,27.30,27.47,27.14,27.26,53278100,21.51 -2004-09-07,27.29,27.38,27.16,27.36,44893400,21.59 -2004-09-03,27.46,27.62,27.10,27.11,46174400,21.40 -2004-09-02,27.40,27.68,27.35,27.62,42161700,21.80 -2004-09-01,27.23,27.52,27.14,27.39,48507500,21.62 -2004-08-31,27.29,27.32,27.05,27.30,52106700,21.55 -2004-08-30,27.30,27.39,26.85,27.30,36679600,21.55 -2004-08-27,27.50,27.65,27.45,27.46,33248700,21.67 -2004-08-26,27.46,27.60,27.39,27.44,35465500,21.66 -2004-08-25,27.21,27.67,27.18,27.55,53512700,21.74 -2004-08-24,27.40,27.46,27.09,27.24,40835300,21.50 -2004-08-23,27.27,27.33,27.12,27.24,39572200,21.50 -2004-08-20,27.13,27.37,27.04,27.20,46494800,21.40 -2004-08-19,27.35,27.45,27.01,27.12,46293000,21.34 -2004-08-18,26.93,27.50,26.89,27.46,58844000,21.61 -2004-08-17,27.22,27.38,26.98,27.05,56879700,21.29 -2004-08-16,27.03,27.20,26.96,27.09,54347200,21.32 -2004-08-13,27.01,27.25,26.98,27.02,43333200,21.26 -2004-08-12,27.23,27.31,26.86,26.88,50279700,21.15 -2004-08-11,27.39,27.51,27.20,27.41,53097300,21.57 -2004-08-10,27.30,27.75,27.25,27.72,57632700,21.81 -2004-08-09,27.26,27.28,27.10,27.18,51877500,21.39 -2004-08-06,27.38,27.86,27.06,27.14,75628000,21.36 -2004-08-05,28.16,28.21,27.52,27.53,55591700,21.66 -2004-08-04,28.01,28.20,27.99,28.06,46217900,22.08 -2004-08-03,28.38,28.42,28.00,28.07,53990900,22.09 -2004-08-02,28.27,28.55,28.16,28.52,52267000,22.44 -2004-07-30,28.45,28.81,28.33,28.49,59552900,22.42 -2004-07-29,28.78,28.80,28.25,28.48,60148400,22.41 -2004-07-28,28.34,28.79,28.28,28.58,62718800,22.49 -2004-07-27,28.70,28.76,28.13,28.44,72968400,22.38 -2004-07-26,28.36,28.71,28.20,28.66,72387600,22.55 -2004-07-23,28.38,28.40,28.02,28.03,97372700,22.06 -2004-07-22,29.07,29.30,28.83,29.00,124640700,22.82 -2004-07-21,29.89,29.89,28.81,28.86,201518000,22.71 -2004-07-20,28.00,28.48,27.85,28.32,89010700,22.28 -2004-07-19,27.62,28.26,27.60,27.95,60354500,21.99 -2004-07-16,28.18,28.20,27.25,27.48,66406300,21.62 -2004-07-15,28.05,28.20,27.80,27.87,46759700,21.93 -2004-07-14,27.40,28.36,27.34,28.13,87656300,22.13 -2004-07-13,27.91,27.95,27.60,27.60,43274100,21.72 -2004-07-12,27.67,28.00,27.59,27.89,45757300,21.95 -2004-07-09,27.78,28.00,27.64,27.86,50249300,21.92 -2004-07-08,27.88,28.15,27.55,27.64,59125100,21.75 -2004-07-07,27.67,28.32,27.55,28.10,66255700,22.11 -2004-07-06,28.32,28.33,27.94,28.02,69158900,22.05 -2004-07-02,28.62,28.68,28.40,28.57,36690100,22.48 -2004-07-01,28.70,28.84,28.26,28.63,78441400,22.53 -2004-06-30,28.57,28.80,28.39,28.56,83544400,22.47 -2004-06-29,28.18,28.58,28.18,28.50,55371700,22.43 -2004-06-28,28.60,28.75,28.17,28.28,77024100,22.25 -2004-06-25,28.48,28.63,28.25,28.57,71136500,22.48 -2004-06-24,28.48,28.65,28.36,28.39,65503800,22.34 -2004-06-23,28.20,28.38,28.00,28.30,58558400,22.27 -2004-06-22,28.15,28.35,27.81,28.29,98932000,22.26 -2004-06-21,28.22,28.66,28.12,28.35,116881700,22.31 -2004-06-18,27.77,28.50,27.70,28.35,134218700,22.31 -2004-06-17,27.31,27.92,27.29,27.77,105427500,21.85 -2004-06-16,27.34,27.50,27.15,27.32,67431100,21.50 -2004-06-15,26.99,27.60,26.97,27.41,114183400,21.57 -2004-06-14,26.55,26.90,26.53,26.90,67377500,21.17 -2004-06-10,26.38,26.79,26.38,26.77,48109200,21.06 -2004-06-09,26.40,26.65,26.40,26.47,50385500,20.83 -2004-06-08,26.28,26.65,26.24,26.60,58447700,20.93 -2004-06-07,26.02,26.43,25.97,26.43,65218600,20.80 -2004-06-04,26.03,26.24,25.94,25.95,48815300,20.42 -2004-06-03,26.05,26.13,25.86,25.89,45933100,20.37 -2004-06-02,26.12,26.28,26.01,26.13,54020000,20.56 -2004-06-01,26.13,26.27,25.87,26.11,48369500,20.55 -2004-05-28,26.14,26.35,26.02,26.23,37393000,20.64 -2004-05-27,26.16,26.19,25.92,26.19,49071900,20.61 -2004-05-26,25.99,26.15,25.85,26.14,50306900,20.57 -2004-05-25,25.71,26.19,25.60,26.10,66615000,20.54 -2004-05-24,26.05,26.17,25.74,25.76,56250500,20.27 -2004-05-21,25.97,26.20,25.78,25.89,57809300,20.37 -2004-05-20,25.75,25.87,25.59,25.73,52089900,20.25 -2004-05-19,26.03,26.27,25.62,25.62,60052800,20.16 -2004-05-18,25.70,25.97,25.64,25.83,58158600,20.33 -2004-05-17,25.47,25.79,25.42,25.54,55149600,20.10 -2004-05-14,26.00,26.17,25.64,25.86,43775300,20.35 -2004-05-13,25.82,26.19,25.79,26.10,63861500,20.54 -2004-05-12,25.87,26.00,25.43,25.94,64145600,20.41 -2004-05-11,26.09,26.11,25.79,25.94,57917200,20.41 -2004-05-10,25.63,26.05,25.62,25.93,64621400,20.40 -2004-05-07,26.03,26.38,25.75,25.78,68290200,20.29 -2004-05-06,26.16,26.34,26.03,26.12,62693900,20.55 -2004-05-05,26.32,26.60,26.25,26.30,51841700,20.69 -2004-05-04,26.35,26.54,26.02,26.33,55496400,20.72 -2004-05-03,26.19,26.52,26.19,26.35,65916200,20.73 -2004-04-30,26.59,26.75,25.96,26.13,66172200,20.56 -2004-04-29,26.51,26.94,26.31,26.48,77787300,20.84 -2004-04-28,27.01,27.05,26.47,26.56,72842200,20.90 -2004-04-27,27.16,27.37,27.13,27.22,80716800,21.42 -2004-04-26,27.45,27.55,27.10,27.24,89391000,21.43 -2004-04-23,27.40,27.72,27.34,27.54,258269000,21.67 -2004-04-22,25.51,25.99,25.47,25.95,99207700,20.42 -2004-04-21,25.36,25.49,25.20,25.45,49252000,20.03 -2004-04-20,25.65,25.88,25.28,25.33,59902600,19.93 -2004-04-19,25.08,25.60,25.06,25.53,44592100,20.09 -2004-04-16,25.33,25.40,25.11,25.16,51768600,19.80 -2004-04-15,25.53,25.73,25.10,25.22,73756900,19.85 -2004-04-14,25.39,25.68,25.38,25.51,61079600,20.07 -2004-04-13,25.68,25.77,25.41,25.45,56971500,20.03 -2004-04-12,25.48,25.74,25.43,25.61,38786800,20.15 -2004-04-08,25.82,25.85,25.36,25.48,45294600,20.05 -2004-04-07,25.74,25.78,25.35,25.59,63268900,20.14 -2004-04-06,25.77,25.90,25.66,25.80,48992000,20.30 -2004-04-05,25.81,25.98,25.73,25.95,53800300,20.42 -2004-04-02,25.48,25.90,25.44,25.85,98043800,20.34 -2004-04-01,24.95,25.11,24.85,25.08,69051900,19.73 -2004-03-31,25.20,25.20,24.87,24.93,70533200,19.62 -2004-03-30,25.21,25.33,25.03,25.20,59010400,19.83 -2004-03-29,25.25,25.40,25.00,25.31,51881600,19.92 -2004-03-26,25.11,25.51,25.00,25.03,61584900,19.70 -2004-03-25,24.60,25.24,24.58,25.19,85677900,19.82 -2004-03-24,24.38,24.58,24.18,24.41,97584700,19.21 -2004-03-23,24.65,24.66,24.11,24.15,91696300,19.00 -2004-03-22,24.48,24.84,24.01,24.50,127605200,19.28 -2004-03-19,24.77,24.94,24.56,24.63,86281600,19.38 -2004-03-18,24.96,25.03,24.58,24.89,123231000,19.59 -2004-03-17,25.25,25.46,25.11,25.13,56241400,19.77 -2004-03-16,25.26,25.37,25.10,25.18,65453800,19.81 -2004-03-15,25.30,25.43,25.06,25.16,68835300,19.80 -2004-03-12,25.38,25.51,25.23,25.38,64137100,19.97 -2004-03-11,25.18,25.78,25.07,25.09,90536300,19.74 -2004-03-10,25.65,25.80,25.35,25.37,75155800,19.96 -2004-03-09,25.80,25.97,25.54,25.72,81111700,20.24 -2004-03-08,26.31,26.35,25.81,25.83,69367800,20.33 -2004-03-05,26.23,26.60,26.20,26.35,59849800,20.73 -2004-03-04,26.33,26.42,26.21,26.37,44023200,20.75 -2004-03-03,26.35,26.55,26.22,26.37,54998700,20.75 -2004-03-02,26.61,26.69,26.35,26.39,66331000,20.77 -2004-03-01,26.63,26.72,26.50,26.70,51912300,21.01 -2004-02-27,26.47,26.62,26.35,26.53,58266500,20.88 -2004-02-26,26.59,26.65,26.41,26.50,66602700,20.85 -2004-02-25,26.90,26.99,26.61,26.70,64275700,21.01 -2004-02-24,26.61,26.95,26.55,26.88,55426500,21.15 -2004-02-23,26.73,26.76,26.48,26.61,50256800,20.94 -2004-02-20,26.66,26.80,26.50,26.57,57821900,20.91 -2004-02-19,26.92,26.98,26.43,26.46,61840600,20.82 -2004-02-18,26.90,27.11,26.74,26.77,50334700,21.06 -2004-02-17,26.72,27.10,26.59,26.99,43477000,21.24 -2004-02-13,26.98,27.06,26.50,26.59,67541100,20.92 -2004-02-12,27.09,27.15,26.93,26.95,44537000,21.21 -2004-02-11,26.97,27.23,26.85,27.15,51515300,21.36 -2004-02-10,26.87,27.15,26.82,27.02,37790600,21.26 -2004-02-09,27.19,27.23,26.85,26.90,48108500,21.17 -2004-02-06,27.03,27.19,26.93,27.08,47209600,21.31 -2004-02-05,27.06,27.17,26.83,26.96,55527500,21.21 -2004-02-04,27.22,27.43,27.01,27.01,60648000,21.25 -2004-02-03,27.40,27.55,27.18,27.29,47993800,21.47 -2004-02-02,27.61,27.80,27.24,27.40,62891800,21.56 -2004-01-30,27.84,27.90,27.55,27.65,40528700,21.76 -2004-01-29,27.81,27.95,27.57,27.91,63748400,21.96 -2004-01-28,28.30,28.44,27.47,27.71,71336000,21.80 -2004-01-27,28.64,28.72,28.22,28.25,63196200,22.23 -2004-01-26,28.49,28.83,28.32,28.80,58299600,22.66 -2004-01-23,28.28,28.76,28.22,28.48,127259100,22.41 -2004-01-22,28.36,28.44,27.94,28.01,78425200,22.04 -2004-01-21,28.13,28.30,27.85,28.30,53570600,22.27 -2004-01-20,27.98,28.20,27.93,28.10,63068500,22.11 -2004-01-16,27.71,27.88,27.53,27.81,63983400,21.88 -2004-01-15,27.55,27.72,27.42,27.54,58504100,21.67 -2004-01-14,27.52,27.73,27.47,27.70,43907000,21.80 -2004-01-13,27.55,27.64,27.26,27.43,51555900,21.58 -2004-01-12,27.67,27.73,27.35,27.57,55845200,21.69 -2004-01-09,28.03,28.06,27.59,27.66,67079900,21.77 -2004-01-08,28.39,28.48,28.00,28.16,58810800,22.16 -2004-01-07,28.17,28.31,28.01,28.21,54298200,22.20 -2004-01-06,28.19,28.28,28.07,28.24,46950800,22.22 -2004-01-05,27.73,28.18,27.72,28.14,67333700,22.14 -2004-01-02,27.58,27.77,27.33,27.45,44487700,21.60 -2003-12-31,27.42,27.55,27.23,27.37,42198900,21.54 -2003-12-30,27.41,27.55,27.40,27.52,34406600,21.65 -2003-12-29,27.21,27.53,27.16,27.46,40426700,21.61 -2003-12-26,27.05,27.25,27.00,27.21,12076900,21.41 -2003-12-24,27.14,27.16,27.00,27.04,19924200,21.28 -2003-12-23,27.17,27.34,27.01,27.15,39609000,21.36 -2003-12-22,27.16,27.43,26.97,27.18,43894800,21.39 -2003-12-19,27.49,27.55,27.19,27.36,76856400,21.53 -2003-12-18,27.10,27.45,27.05,27.40,61177800,21.56 -2003-12-17,27.04,27.08,26.85,27.04,53712300,21.28 -2003-12-16,26.83,27.16,26.77,27.06,73978000,21.29 -2003-12-15,27.05,27.10,26.68,26.74,88860600,21.04 -2003-12-12,26.69,26.81,26.50,26.65,69154100,20.97 -2003-12-11,26.59,26.77,26.28,26.61,79309000,20.94 -2003-12-10,26.45,26.63,26.38,26.59,82853700,20.92 -2003-12-09,26.44,26.61,26.25,26.38,103547100,20.76 -2003-12-08,26.12,26.34,25.81,26.24,90504000,20.65 -2003-12-05,25.96,26.48,25.92,25.98,96610900,20.44 -2003-12-04,25.72,26.23,25.66,26.20,87202400,20.62 -2003-12-03,25.82,26.07,25.62,25.67,93121600,20.20 -2003-12-02,25.95,26.09,25.61,25.66,85121700,20.19 -2003-12-01,25.90,26.21,25.50,25.84,101914600,20.33 -2003-11-28,25.50,25.75,25.40,25.71,33402600,20.23 -2003-11-26,25.61,25.63,25.32,25.45,69758400,20.03 -2003-11-25,25.87,25.95,25.38,25.40,85663800,19.99 -2003-11-24,25.33,25.81,25.28,25.73,99463800,20.25 -2003-11-21,25.33,25.38,25.08,25.11,70712900,19.76 -2003-11-20,25.17,25.63,25.08,25.10,106845700,19.75 -2003-11-19,25.29,25.54,25.17,25.35,78853300,19.95 -2003-11-18,25.33,25.84,25.12,25.15,106868300,19.79 -2003-11-17,25.39,25.44,24.84,25.15,103900200,19.79 -2003-11-14,25.70,26.02,25.44,25.50,83146400,20.07 -2003-11-13,25.86,25.93,25.45,25.69,78949500,20.21 -2003-11-12,25.85,26.14,25.60,25.98,75877300,20.44 -2003-11-11,26.01,26.08,25.67,25.80,64990700,20.30 -2003-11-10,26.12,26.23,26.00,26.00,54579100,20.46 -2003-11-07,26.38,26.49,26.03,26.10,57822100,20.54 -2003-11-06,26.26,26.30,26.00,26.23,68189800,20.64 -2003-11-05,26.15,26.32,26.00,26.10,61514400,20.54 -2003-11-04,26.59,26.62,26.01,26.07,84026100,20.51 -2003-11-03,26.35,26.75,26.29,26.68,57772300,20.99 -2003-10-31,26.37,26.44,26.11,26.14,69623700,20.57 -2003-10-30,27.01,27.04,25.91,26.12,98729400,20.55 -2003-10-29,27.16,27.25,26.66,26.74,73551500,21.04 -2003-10-28,27.09,27.22,26.88,27.20,71752600,21.40 -2003-10-27,26.91,27.10,26.82,26.91,65619100,21.17 -2003-10-24,27.27,27.40,26.42,26.61,210558300,20.94 -2003-10-23,28.72,29.08,28.10,28.91,67357900,22.75 -2003-10-22,29.03,29.21,28.80,28.89,48798500,22.73 -2003-10-21,29.35,29.43,29.17,29.35,44166800,23.09 -2003-10-20,28.95,29.37,28.80,29.35,38794500,23.09 -2003-10-17,29.28,29.29,28.80,28.93,49960000,22.76 -2003-10-16,28.91,29.31,28.80,29.23,42232500,23.00 -2003-10-15,29.20,29.26,28.70,29.07,57242100,22.87 -2003-10-14,28.66,28.77,28.48,28.68,34851300,22.44 -2003-10-13,28.98,29.10,28.50,28.78,39320300,22.52 -2003-10-10,28.91,29.20,28.67,28.91,37604700,22.62 -2003-10-09,29.22,29.35,28.80,28.94,62653300,22.65 -2003-10-08,29.36,29.36,28.68,28.82,46989100,22.55 -2003-10-07,29.01,29.37,28.92,29.14,52356800,22.80 -2003-10-06,29.15,29.30,28.91,29.19,34047600,22.84 -2003-10-03,29.16,29.46,28.93,29.08,57303000,22.75 -2003-10-02,28.45,28.75,28.19,28.50,38143600,22.30 -2003-10-01,28.03,28.63,27.81,28.52,58375900,22.32 -2003-09-30,28.59,28.61,27.75,27.80,63333700,21.75 -2003-09-29,28.41,28.91,28.10,28.83,47380300,22.56 -2003-09-26,28.27,28.78,28.14,28.19,49864700,22.06 -2003-09-25,28.47,28.96,28.22,28.24,56224500,22.10 -2003-09-24,29.61,29.70,28.42,28.46,66336500,22.27 -2003-09-23,29.12,29.71,28.88,29.60,57827800,23.16 -2003-09-22,29.39,30.00,28.81,29.07,65678700,22.75 -2003-09-19,29.76,29.97,29.52,29.96,92433800,23.44 -2003-09-18,28.49,29.51,28.42,29.50,67268100,23.08 -2003-09-17,28.76,28.95,28.47,28.50,47221600,22.30 -2003-09-16,28.41,28.95,28.32,28.90,52060600,22.61 -2003-09-15,28.37,28.61,28.33,28.36,41432300,22.19 -2003-09-12,27.48,28.40,27.45,28.34,55777200,22.18 -2003-09-11,27.66,28.11,27.59,27.84,37813300,21.78 -2003-09-10,28.03,28.18,27.48,27.55,54763500,21.56 -2003-09-09,28.65,28.71,28.31,28.37,44315200,22.20 -2003-09-08,28.39,28.92,28.34,28.84,46105300,22.57 -2003-09-05,28.23,28.75,28.17,28.38,64024500,22.21 -2003-09-04,28.10,28.47,27.99,28.43,59840800,22.25 -2003-09-03,27.42,28.40,27.38,28.30,109437800,22.14 -2003-09-02,26.70,27.30,26.47,27.26,74168900,21.33 -2003-08-29,26.46,26.55,26.35,26.52,34503000,20.75 -2003-08-28,26.50,26.58,26.24,26.51,46211200,20.74 -2003-08-27,26.51,26.58,26.30,26.42,30633900,20.67 -2003-08-26,26.31,26.67,25.96,26.57,47546000,20.79 -2003-08-25,26.31,26.54,26.23,26.50,36132900,20.74 -2003-08-22,26.78,26.95,26.21,26.22,65846300,20.52 -2003-08-21,26.65,26.73,26.13,26.24,63802700,20.53 -2003-08-20,26.30,26.53,26.00,26.45,56739300,20.70 -2003-08-19,25.85,26.65,25.77,26.62,72952900,20.83 -2003-08-18,25.56,25.83,25.46,25.70,45817400,20.11 -2003-08-15,25.61,25.66,25.43,25.54,27607900,19.98 -2003-08-14,25.66,25.71,25.52,25.63,37338300,20.06 -2003-08-13,25.79,25.89,25.50,25.60,39636900,20.03 -2003-08-12,25.71,25.77,25.45,25.73,38208400,20.13 -2003-08-11,25.61,25.99,25.54,25.61,36433900,20.04 -2003-08-08,25.88,25.98,25.50,25.58,33241400,20.02 -2003-08-07,25.72,25.81,25.45,25.71,44258500,20.12 -2003-08-06,25.54,26.19,25.43,25.65,56294900,20.07 -2003-08-05,26.31,26.54,25.60,25.66,58825800,20.08 -2003-08-04,26.15,26.41,25.75,26.18,51825600,20.49 -2003-08-01,26.33,26.51,26.12,26.17,42649700,20.48 -2003-07-31,26.60,26.99,26.31,26.41,64504800,20.67 -2003-07-30,26.46,26.57,26.17,26.23,41240300,20.52 -2003-07-29,26.88,26.90,26.24,26.47,62391100,20.71 -2003-07-28,26.94,27.00,26.49,26.61,52658300,20.82 -2003-07-25,26.28,26.95,26.07,26.89,54173000,21.04 -2003-07-24,26.78,26.92,25.98,26.00,53556600,20.34 -2003-07-23,26.42,26.65,26.14,26.45,49828200,20.70 -2003-07-22,26.28,26.56,26.13,26.38,51791000,20.64 -2003-07-21,26.87,26.91,26.00,26.04,48480800,20.38 -2003-07-18,27.11,27.23,26.75,26.89,63388400,21.04 -2003-07-17,27.14,27.27,26.54,26.69,72805000,20.88 -2003-07-16,27.56,27.62,27.20,27.52,49838900,21.53 -2003-07-15,27.47,27.53,27.10,27.27,53567600,21.34 -2003-07-14,27.63,27.81,27.05,27.40,60464400,21.44 -2003-07-11,26.95,27.45,26.89,27.31,50377300,21.37 -2003-07-10,27.25,27.42,26.59,26.91,55350800,21.06 -2003-07-09,27.56,27.70,27.25,27.47,62300700,21.49 -2003-07-08,27.26,27.80,27.25,27.70,61896800,21.67 -2003-07-07,27.02,27.55,26.95,27.42,88960800,21.46 -2003-07-03,26.69,26.95,26.41,26.50,39440900,20.74 -2003-07-02,26.50,26.93,26.45,26.88,94069300,21.03 -2003-07-01,25.59,26.20,25.39,26.15,60926000,20.46 -2003-06-30,25.94,26.12,25.50,25.64,48073100,20.06 -2003-06-27,25.95,26.34,25.53,25.63,76040300,20.06 -2003-06-26,25.39,26.51,25.21,25.75,51758100,20.15 -2003-06-25,25.64,25.99,25.14,25.26,60483500,19.77 -2003-06-24,25.65,26.04,25.52,25.70,51820300,20.11 -2003-06-23,26.14,26.24,25.49,25.78,52584500,20.17 -2003-06-20,26.34,26.38,26.01,26.33,86048900,20.60 -2003-06-19,26.09,26.39,26.01,26.07,63626900,20.40 -2003-06-18,25.98,26.43,25.71,26.07,89957700,20.40 -2003-06-17,25.64,26.14,25.53,25.96,122213900,20.31 -2003-06-16,24.80,25.42,24.67,25.39,69658600,19.87 -2003-06-13,25.20,25.25,24.49,24.65,55157500,19.29 -2003-06-12,24.97,25.14,24.74,24.99,66177700,19.55 -2003-06-11,24.67,24.96,24.42,24.88,75768600,19.47 -2003-06-10,23.94,24.75,23.85,24.68,80655300,19.31 -2003-06-09,23.72,23.98,23.60,23.75,73610000,18.58 -2003-06-06,24.44,24.56,23.65,23.67,119629400,18.52 -2003-06-05,24.47,24.52,24.01,24.09,115877900,18.85 -2003-06-04,24.99,25.22,24.74,24.87,83484600,19.46 -2003-06-03,24.75,24.92,24.57,24.88,61058200,19.47 -2003-06-02,24.98,25.03,24.57,24.64,66310800,19.28 -2003-05-30,24.73,24.91,24.51,24.61,85096700,19.26 -2003-05-29,24.47,24.67,24.23,24.40,75451300,19.09 -2003-05-28,24.78,24.87,24.30,24.41,91467000,19.10 -2003-05-27,24.25,24.89,24.22,24.79,68486800,19.40 -2003-05-23,24.20,24.54,24.03,24.22,76968000,18.95 -2003-05-22,24.20,24.27,24.04,24.16,93157100,18.90 -2003-05-21,24.63,24.71,23.89,24.03,108960900,18.80 -2003-05-20,24.86,25.00,24.50,24.63,52677600,19.27 -2003-05-19,25.40,25.54,24.74,24.76,55336300,19.37 -2003-05-16,25.88,26.05,25.41,25.57,60620900,20.01 -2003-05-15,25.85,26.01,25.57,25.79,45450200,20.18 -2003-05-14,26.08,26.18,25.54,25.62,45021000,20.05 -2003-05-13,26.04,26.20,25.89,25.99,44501900,20.34 -2003-05-12,26.15,26.47,26.06,26.20,53900800,20.50 -2003-05-09,25.90,26.50,25.89,26.36,58913600,20.63 -2003-05-08,25.75,26.14,25.71,25.74,46401400,20.14 -2003-05-07,26.11,26.35,25.84,25.99,49120000,20.34 -2003-05-06,25.86,26.50,25.82,26.37,54299500,20.63 -2003-05-05,26.25,26.39,25.84,25.86,50391500,20.24 -2003-05-02,25.65,26.29,25.56,26.10,52695400,20.42 -2003-05-01,25.54,25.95,25.34,25.72,42085800,20.13 -2003-04-30,25.73,25.88,25.25,25.57,55566800,20.01 -2003-04-29,25.95,26.25,25.68,25.80,65877300,20.19 -2003-04-28,25.39,25.94,25.32,25.74,56287600,20.14 -2003-04-25,25.33,25.64,25.17,25.22,53657400,19.73 -2003-04-24,25.48,25.72,25.32,25.49,51703600,19.95 -2003-04-23,25.75,25.99,25.47,25.72,55559300,20.13 -2003-04-22,25.06,25.80,25.03,25.76,58844000,20.16 -2003-04-21,25.61,25.61,25.08,25.21,41557800,19.73 -2003-04-17,24.77,25.54,24.74,25.50,58356600,19.95 -2003-04-16,25.60,25.74,24.60,24.92,86178700,19.50 -2003-04-15,24.68,24.79,24.10,24.60,63399000,19.25 -2003-04-14,24.27,24.88,24.00,24.76,51599600,19.37 -2003-04-11,24.89,25.18,23.95,24.20,71565500,18.94 -2003-04-10,24.71,24.79,24.28,24.59,51608900,19.24 -2003-04-09,25.61,25.67,24.54,24.57,76875800,19.23 -2003-04-08,25.31,25.83,25.20,25.58,54132100,20.02 -2003-04-07,26.23,26.43,25.17,25.17,65627100,19.70 -2003-04-04,25.76,25.80,24.93,25.09,55740600,19.63 -2003-04-03,25.99,26.09,25.60,25.73,57394300,20.13 -2003-04-02,25.10,26.00,25.10,25.72,68282500,20.13 -2003-04-01,24.46,24.70,24.25,24.35,49803200,19.05 -2003-03-31,24.25,24.71,24.01,24.21,71384000,18.94 -2003-03-28,24.67,25.10,24.60,24.67,39584600,19.30 -2003-03-27,24.94,25.26,24.59,25.04,60043300,19.59 -2003-03-26,25.46,25.62,25.24,25.25,51673600,19.76 -2003-03-25,25.60,25.75,25.03,25.49,63595100,19.95 -2003-03-24,25.55,25.93,25.18,25.29,61105200,19.79 -2003-03-21,26.75,26.80,26.03,26.57,85586800,20.79 -2003-03-20,26.02,26.52,25.67,26.25,71798500,20.54 -2003-03-19,25.98,26.43,25.74,26.32,73652100,20.60 -2003-03-18,25.89,26.04,25.50,26.04,78108800,20.38 -2003-03-17,24.52,25.95,24.33,25.93,100983800,20.29 -2003-03-14,24.68,24.96,24.26,24.86,75451400,19.45 -2003-03-13,23.72,24.74,23.44,24.67,80701300,19.30 -2003-03-12,22.81,23.44,22.55,23.39,72379500,18.30 -2003-03-11,23.06,23.26,22.76,22.80,53990700,17.84 -2003-03-10,23.31,23.46,22.89,22.95,48413600,17.96 -2003-03-07,22.95,23.79,22.90,23.56,66167600,18.44 -2003-03-06,23.17,23.50,23.13,23.27,54607600,18.21 -2003-03-05,23.07,23.55,23.05,23.44,55415900,18.34 -2003-03-04,23.58,23.66,23.06,23.07,56605700,18.05 -2003-03-03,24.02,24.12,23.40,23.54,50653500,18.42 -2003-02-28,23.74,24.07,23.55,23.70,56585400,18.54 -2003-02-27,23.90,24.21,23.30,23.58,75434300,18.45 -2003-02-26,24.07,24.47,23.58,23.61,57096000,18.47 -2003-02-25,23.54,24.27,23.38,24.19,68113000,18.93 -2003-02-24,24.44,24.50,23.84,24.07,62403700,18.83 -2003-02-21,24.29,24.80,23.70,24.63,56853200,19.27 -2003-02-20,24.77,24.87,24.10,24.14,50897200,18.89 -2003-02-19,24.82,24.88,24.17,24.53,46902700,19.19 -2003-02-18,24.62,24.99,24.40,24.96,57415500,19.47 -2003-02-14,47.25,48.50,46.77,48.30,90446400,18.84 -2003-02-13,46.41,47.12,46.13,46.99,73558200,18.33 -2003-02-12,46.55,47.10,46.26,46.44,71315200,18.11 -2003-02-11,47.30,47.67,46.00,46.44,84292000,18.11 -2003-02-10,46.80,47.52,46.54,47.38,74081400,18.48 -2003-02-07,47.88,47.95,46.41,46.58,75208000,18.17 -2003-02-06,46.86,47.62,46.56,47.42,83312000,18.49 -2003-02-05,47.83,48.53,46.73,46.96,101072000,18.31 -2003-02-04,47.80,47.94,46.88,47.32,81854800,18.45 -2003-02-03,47.93,49.10,47.46,48.56,80129800,18.94 -2003-01-31,47.45,48.35,47.03,47.46,106858400,18.51 -2003-01-30,50.16,50.17,48.19,48.24,87877400,18.81 -2003-01-29,48.73,50.04,47.93,49.91,106884000,19.46 -2003-01-28,49.69,49.70,48.56,48.82,86151200,19.04 -2003-01-27,49.32,50.60,48.41,49.17,114838600,19.18 -2003-01-24,52.03,52.05,49.70,49.85,103027000,19.44 -2003-01-23,51.95,52.54,51.46,52.28,71374800,20.39 -2003-01-22,51.59,52.40,50.91,51.00,86948000,19.89 -2003-01-21,51.87,52.15,51.29,51.33,86159200,20.02 -2003-01-17,52.94,53.00,51.31,51.46,155876000,20.07 -2003-01-16,56.32,56.65,55.11,55.35,81371000,21.59 -2003-01-15,57.00,57.32,56.19,56.27,59622600,21.94 -2003-01-14,56.33,57.00,56.19,56.97,54206400,22.22 -2003-01-13,56.52,56.75,55.77,56.39,60817800,21.99 -2003-01-10,55.10,56.30,54.90,55.92,67730200,21.81 -2003-01-09,54.72,55.92,54.53,55.81,61808000,21.77 -2003-01-08,55.37,55.55,54.11,54.24,64566000,21.15 -2003-01-07,54.92,56.01,54.68,55.80,80517400,21.76 -2003-01-06,54.02,55.23,53.80,54.77,59456200,21.36 -2003-01-03,53.59,53.80,52.88,53.79,55546800,20.98 -2003-01-02,52.30,53.75,51.71,53.72,67025200,20.95 -2002-12-31,52.74,52.99,51.26,51.70,58208800,20.16 -2002-12-30,53.01,53.24,52.27,52.75,48019600,20.57 -2002-12-27,53.28,54.00,52.90,52.97,40891600,20.66 -2002-12-26,54.03,54.69,53.17,53.39,37228000,20.82 -2002-12-24,53.54,54.23,53.52,53.82,18386000,20.99 -2002-12-23,53.05,54.28,52.90,54.00,48798400,21.06 -2002-12-20,53.49,53.72,52.95,53.04,98294600,20.69 -2002-12-19,53.25,54.75,52.88,53.11,82686600,20.71 -2002-12-18,53.84,54.40,52.79,53.53,62709400,20.88 -2002-12-17,54.42,54.99,53.78,54.36,49549800,21.20 -2002-12-16,53.00,54.55,52.67,54.48,60140400,21.25 -2002-12-13,53.68,53.75,52.49,52.50,65245400,20.47 -2002-12-12,55.00,55.06,53.69,54.17,55242000,21.13 -2002-12-11,53.85,55.01,53.58,54.66,69186200,21.32 -2002-12-10,53.56,54.48,53.48,54.01,63730200,21.06 -2002-12-09,55.00,55.22,53.51,53.53,63862800,20.88 -2002-12-06,54.87,55.74,54.22,55.47,71670200,21.63 -2002-12-05,56.95,57.09,55.30,55.34,68435800,21.58 -2002-12-04,56.13,57.44,55.82,56.54,83892000,22.05 -2002-12-03,57.28,57.35,56.41,56.71,58457400,22.12 -2002-12-02,58.65,58.96,57.01,57.69,63735000,22.50 -2002-11-29,58.43,58.63,57.68,57.68,28393000,22.49 -2002-11-27,57.60,58.61,57.40,58.08,55191800,22.65 -2002-11-26,57.64,58.25,56.78,56.90,68650400,22.19 -2002-11-25,58.06,58.64,57.57,58.23,61583000,22.71 -2002-11-22,57.45,58.30,57.05,58.22,70002000,22.71 -2002-11-21,56.98,58.00,56.78,57.84,82922200,22.56 -2002-11-20,55.01,56.90,54.93,56.62,76435400,22.08 -2002-11-19,55.55,55.80,54.31,54.86,76403400,21.39 -2002-11-18,56.95,57.03,55.74,55.85,58086400,21.78 -2002-11-15,56.60,56.92,55.67,56.69,77533600,22.11 -2002-11-14,55.99,57.00,55.87,56.99,78337000,22.23 -2002-11-13,54.24,55.93,54.11,55.36,107370200,21.59 -2002-11-12,54.10,55.43,53.90,54.51,81398600,21.26 -2002-11-11,55.07,55.10,53.82,53.86,58341200,21.00 -2002-11-08,56.00,56.55,55.01,55.10,64522200,21.49 -2002-11-07,56.20,56.62,55.50,56.01,73699600,21.84 -2002-11-06,56.99,57.10,55.53,57.03,115407000,22.24 -2002-11-05,55.78,56.80,55.58,56.68,76658200,22.10 -2002-11-04,56.75,57.25,55.52,56.10,139964200,21.88 -2002-11-01,52.43,53.24,51.90,53.00,105097800,20.67 -2002-10-31,53.19,54.07,52.85,53.47,105973800,20.85 -2002-10-30,52.20,53.39,51.63,53.11,94451200,20.71 -2002-10-29,52.15,52.49,50.85,52.07,90517200,20.31 -2002-10-28,53.40,53.50,51.51,51.95,79906600,20.26 -2002-10-25,51.25,52.80,51.16,52.68,75425800,20.54 -2002-10-24,53.36,53.37,50.90,51.23,95833400,19.98 -2002-10-23,51.43,53.26,51.43,53.20,110866600,20.75 -2002-10-22,51.43,51.93,51.03,51.67,87159000,20.15 -2002-10-21,51.97,52.99,51.36,52.51,112378600,20.48 -2002-10-18,52.60,53.20,51.14,53.15,152817200,20.73 -2002-10-17,52.28,52.50,50.05,50.77,182602400,19.80 -2002-10-16,50.39,51.26,50.28,50.41,95437400,19.66 -2002-10-15,51.26,52.37,50.65,52.29,133374200,20.39 -2002-10-14,48.25,49.33,47.84,49.29,76216200,19.22 -2002-10-11,47.36,48.90,47.01,48.87,108828800,19.06 -2002-10-10,44.00,46.62,43.25,46.38,118515000,18.09 -2002-10-09,44.23,45.45,43.81,43.99,123142600,17.16 -2002-10-08,44.75,45.98,44.13,44.99,115667600,17.55 -2002-10-07,43.81,45.06,43.69,44.05,89790000,17.18 -2002-10-04,45.39,45.57,43.69,43.77,107120400,17.07 -2002-10-03,45.30,46.59,44.60,44.80,105221400,17.47 -2002-10-02,46.10,46.81,45.16,45.61,103488600,17.79 -2002-10-01,44.32,46.25,43.19,46.23,110636600,18.03 -2002-09-30,44.87,45.04,43.11,43.74,115577000,17.06 -2002-09-27,46.04,47.10,45.19,45.25,81011600,17.65 -2002-09-26,47.11,47.50,45.95,46.20,100852200,18.02 -2002-09-25,46.40,46.96,45.05,46.51,107116600,18.14 -2002-09-24,44.83,46.48,44.63,45.64,104142200,17.80 -2002-09-23,46.60,46.71,44.81,45.23,89783800,17.64 -2002-09-20,47.71,48.00,47.30,47.46,130619200,18.51 -2002-09-19,46.68,47.82,46.59,47.20,77777600,18.41 -2002-09-18,46.72,48.24,46.66,47.75,83951800,18.62 -2002-09-17,48.67,48.90,47.21,47.29,73343400,18.44 -2002-09-16,47.60,48.13,47.05,47.78,50166200,18.63 -2002-09-13,46.90,48.26,46.85,47.91,59549200,18.68 -2002-09-12,48.15,48.30,47.02,47.15,63726800,18.39 -2002-09-11,50.23,51.10,48.53,48.58,77443200,18.95 -2002-09-10,48.54,49.82,48.35,49.79,83950000,19.42 -2002-09-09,47.25,48.95,46.63,48.70,81653200,18.99 -2002-09-06,47.75,48.27,47.47,47.82,69918400,18.65 -2002-09-05,47.50,47.52,45.88,45.91,90438800,17.90 -2002-09-04,47.45,48.60,47.15,48.21,80232000,18.80 -2002-09-03,48.52,48.52,47.00,47.02,74452600,18.34 -2002-08-30,50.14,50.48,49.00,49.08,58138400,19.14 -2002-08-29,48.89,51.00,48.52,50.58,94275600,19.73 -2002-08-28,50.48,50.66,49.30,49.38,68875000,19.26 -2002-08-27,52.33,52.45,50.65,50.84,65470200,19.83 -2002-08-26,52.50,52.65,51.18,52.10,55652400,20.32 -2002-08-23,52.66,52.85,51.84,52.22,57929200,20.37 -2002-08-22,52.85,53.45,52.60,53.23,72517600,20.76 -2002-08-21,51.56,52.38,51.15,52.28,81203400,20.39 -2002-08-20,51.38,51.70,50.75,51.04,70317600,19.91 -2002-08-19,50.04,52.05,49.85,52.00,79848200,20.28 -2002-08-16,49.43,50.23,48.92,50.00,69334000,19.50 -2002-08-15,49.96,50.74,48.75,49.77,98745600,19.41 -2002-08-14,47.25,49.73,47.21,49.71,96706000,19.39 -2002-08-13,47.99,49.70,46.92,47.06,100122800,18.35 -2002-08-12,47.61,48.75,47.60,48.47,56866600,18.90 -2002-08-09,48.15,49.15,47.66,48.12,69049400,18.77 -2002-08-08,47.11,49.00,46.41,48.91,88748000,19.07 -2002-08-07,47.00,47.30,45.16,47.09,86349400,18.36 -2002-08-06,44.90,47.25,44.84,45.67,88715800,17.81 -2002-08-05,44.29,45.17,43.81,43.99,78941600,17.16 -2002-08-02,45.51,45.85,43.80,44.41,85947600,17.32 -2002-08-01,47.58,48.09,45.50,45.75,92002800,17.84 -2002-07-31,47.61,48.00,46.36,47.98,93875600,18.71 -2002-07-30,47.55,48.83,47.33,48.10,122690600,18.76 -2002-07-29,46.85,48.30,46.55,48.25,112148600,18.82 -2002-07-26,43.74,45.41,43.68,45.35,123538000,17.69 -2002-07-25,45.45,45.71,42.44,42.83,163411400,16.70 -2002-07-24,41.75,46.36,41.41,46.23,202307800,18.03 -2002-07-23,46.49,46.80,42.97,43.01,168061600,16.77 -2002-07-22,48.95,49.99,45.90,47.51,180069800,18.53 -2002-07-19,49.87,50.89,48.81,49.56,112543400,19.33 -2002-07-18,52.06,52.74,50.66,51.11,91053600,19.93 -2002-07-17,52.52,53.30,51.17,52.00,98034800,20.28 -2002-07-16,51.31,52.80,50.64,51.25,97154600,19.99 -2002-07-15,51.39,51.86,48.00,51.80,136965600,20.20 -2002-07-12,53.37,53.73,51.48,51.86,95733800,20.22 -2002-07-11,52.04,53.07,51.25,52.91,129550600,20.63 -2002-07-10,53.69,54.20,52.13,52.24,90673400,20.37 -2002-07-09,53.31,54.73,52.97,53.21,85277200,20.75 -2002-07-08,54.41,54.93,52.58,52.92,63199400,20.64 -2002-07-05,53.09,54.90,53.05,54.85,35673600,21.39 -2002-07-03,51.24,52.52,50.45,51.84,80936600,20.22 -2002-07-02,52.38,52.92,51.33,51.44,82814200,20.06 -2002-07-01,54.12,54.39,52.58,52.66,66473800,20.54 -2002-06-28,54.55,55.79,54.00,54.70,89555600,21.33 -2002-06-27,54.60,54.94,52.86,54.92,95812400,21.42 -2002-06-26,51.05,54.39,51.05,54.13,112131400,21.11 -2002-06-25,54.70,55.00,52.80,52.95,84025200,20.65 -2002-06-24,52.09,54.64,51.85,54.16,104523200,21.12 -2002-06-21,53.40,54.55,52.28,52.28,116820000,20.39 -2002-06-20,54.37,55.10,53.90,54.10,86401200,21.10 -2002-06-19,55.47,55.94,54.32,54.36,81247000,21.20 -2002-06-18,55.53,56.29,55.35,55.99,77518400,21.84 -2002-06-17,55.66,56.44,55.37,55.68,94486600,21.71 -2002-06-14,53.15,55.55,53.00,55.25,109433600,21.55 -2002-06-13,54.84,55.48,54.20,54.22,79771600,21.15 -2002-06-12,52.58,55.78,52.50,55.54,136198600,21.66 -2002-06-11,53.24,54.18,52.42,52.57,74368200,20.50 -2002-06-10,51.65,53.30,51.46,52.82,71825400,20.60 -2002-06-07,49.89,52.60,49.86,51.98,97834400,20.27 -2002-06-06,51.50,52.14,50.00,51.90,78703400,20.24 -2002-06-05,50.43,51.75,50.33,51.66,66969400,20.15 -2002-06-04,49.50,51.23,49.24,49.98,88008400,19.49 -2002-06-03,50.99,51.64,49.17,49.42,88439000,19.27 -2002-05-31,52.90,53.42,50.88,50.91,66468000,19.85 -2002-05-30,51.64,53.36,51.43,52.64,63213000,20.53 -2002-05-29,51.65,52.72,51.55,52.05,45393200,20.30 -2002-05-28,53.59,53.69,51.75,52.32,49602000,20.40 -2002-05-24,54.14,54.52,53.04,53.26,35982000,20.77 -2002-05-23,53.70,54.84,53.01,54.82,51412800,21.38 -2002-05-22,51.87,53.72,51.85,53.69,54169400,20.94 -2002-05-21,53.95,54.60,52.13,52.19,63120000,20.35 -2002-05-20,55.50,55.55,53.50,54.01,52115800,21.06 -2002-05-17,56.21,56.40,55.27,56.03,54646200,21.85 -2002-05-16,54.71,56.03,54.65,55.74,53406400,21.74 -2002-05-15,54.49,56.44,53.86,54.75,70412000,21.35 -2002-05-14,54.40,55.10,53.98,54.88,64832400,21.40 -2002-05-13,50.45,52.91,49.75,52.69,64819000,20.55 -2002-05-10,52.53,52.67,49.99,50.05,64408800,19.52 -2002-05-09,54.40,55.00,51.90,52.12,83288200,20.33 -2002-05-08,51.27,54.97,51.22,54.97,101242000,21.44 -2002-05-07,49.18,50.29,48.35,49.47,88385400,19.29 -2002-05-06,49.44,50.54,48.37,48.62,66299400,18.96 -2002-05-03,51.26,51.68,49.51,49.56,71628000,19.33 -2002-05-02,52.64,54.07,51.15,51.21,79009200,19.97 -2002-05-01,52.16,53.19,50.66,52.75,76413000,20.57 -2002-04-30,52.10,53.30,51.92,52.26,77384000,20.38 -2002-04-29,51.47,52.91,51.44,52.24,70246000,20.37 -2002-04-26,54.07,54.45,51.46,51.50,62776600,20.08 -2002-04-25,52.90,54.45,52.88,53.73,57290400,20.95 -2002-04-24,53.85,54.43,53.00,53.02,61220400,20.68 -2002-04-23,55.70,55.82,53.30,53.99,68281400,21.06 -2002-04-22,56.52,56.70,55.00,55.59,51465200,21.68 -2002-04-19,57.44,57.98,56.86,57.20,104268600,22.31 -2002-04-18,56.79,57.31,52.68,56.37,74794800,21.98 -2002-04-17,57.95,58.28,56.42,56.63,55158600,22.09 -2002-04-16,56.40,58.10,56.36,57.81,51921600,22.55 -2002-04-15,56.00,56.75,55.40,55.69,47388800,21.72 -2002-04-12,55.15,56.26,54.86,55.93,52297600,21.81 -2002-04-11,55.89,56.45,54.50,54.79,58165800,21.37 -2002-04-10,55.12,57.11,55.06,56.30,75636400,21.96 -2002-04-09,57.33,57.43,54.80,54.87,63413000,21.40 -2002-04-08,54.30,57.31,54.26,57.22,73389600,22.32 -2002-04-05,56.89,57.30,55.84,55.87,50166000,21.79 -2002-04-04,55.98,56.97,55.42,56.45,61763800,22.01 -2002-04-03,57.44,57.61,55.50,56.33,76931400,21.97 -2002-04-02,58.90,59.09,57.11,57.28,76509400,22.34 -2002-04-01,59.83,60.40,59.20,60.38,47010000,23.55 -2002-03-28,59.95,60.65,59.66,60.31,43901200,23.52 -2002-03-27,58.80,59.88,58.59,59.44,47318400,23.18 -2002-03-26,59.10,60.92,58.31,59.08,69357200,23.04 -2002-03-25,60.48,60.78,59.15,59.23,47752400,23.10 -2002-03-22,61.05,61.14,60.22,60.45,41341400,23.57 -2002-03-21,60.21,61.59,59.83,61.36,46123400,23.93 -2002-03-20,61.40,62.02,60.10,60.10,55235200,23.44 -2002-03-19,62.18,63.00,61.50,62.23,36376400,24.27 -2002-03-18,62.74,62.99,61.20,62.14,52296800,24.23 -2002-03-15,61.00,62.51,60.97,62.49,69086800,24.37 -2002-03-14,62.14,62.24,61.05,61.22,51819600,23.88 -2002-03-13,62.08,63.02,61.95,62.10,44387400,24.22 -2002-03-12,62.52,62.80,61.67,62.54,66407200,24.39 -2002-03-11,63.51,65.00,63.00,64.34,43718200,25.09 -2002-03-08,63.63,64.70,63.17,63.95,57701800,24.94 -2002-03-07,63.67,63.88,61.86,62.72,58079200,24.46 -2002-03-06,62.91,63.70,62.19,63.63,49835400,24.82 -2002-03-05,63.00,63.88,62.34,63.08,55926400,24.60 -2002-03-04,61.24,63.50,60.87,63.30,74464200,24.69 -2002-03-01,59.05,61.42,58.85,61.37,62115600,23.93 -2002-02-28,58.78,59.70,58.14,58.34,68068000,22.75 -2002-02-27,59.07,60.15,57.99,58.39,65750000,22.77 -2002-02-26,59.10,60.00,57.90,58.55,63276200,22.83 -2002-02-25,57.94,59.89,57.89,59.08,51832200,23.04 -2002-02-22,58.05,58.75,57.15,57.99,71347800,22.62 -2002-02-21,59.72,60.27,58.01,58.05,59398400,22.64 -2002-02-20,59.40,60.36,58.80,59.90,50492000,23.36 -2002-02-19,59.91,60.14,58.60,58.93,52262600,22.98 -2002-02-15,61.70,62.06,60.20,60.23,50179800,23.49 -2002-02-14,62.00,62.99,61.32,61.68,57267000,24.05 -2002-02-13,60.26,61.88,59.95,61.82,54168600,24.11 -2002-02-12,60.49,60.85,60.02,60.14,44973800,23.45 -2002-02-11,60.01,61.24,59.59,61.13,50899600,23.84 -2002-02-08,60.12,60.66,58.83,60.65,61283000,23.65 -2002-02-07,60.30,61.61,59.75,59.80,63314000,23.32 -2002-02-06,61.61,61.89,60.25,60.40,66103000,23.56 -2002-02-05,60.80,62.23,60.50,61.15,66772600,23.85 -2002-02-04,62.40,62.69,60.75,61.12,70308400,23.84 -2002-02-01,64.15,64.50,62.47,62.66,63462200,24.44 -2002-01-31,63.06,63.81,62.12,63.71,69566200,24.85 -2002-01-30,62.45,62.90,61.33,62.85,66100000,24.51 -2002-01-29,63.90,64.50,61.99,62.32,58666000,24.30 -2002-01-28,64.23,64.40,62.91,63.82,41622000,24.89 -2002-01-25,64.19,64.85,63.51,63.80,48981200,24.88 -2002-01-24,64.10,65.18,63.80,64.60,83886000,25.19 -2002-01-23,64.05,64.71,63.24,63.74,80403000,24.86 -2002-01-22,66.61,66.63,64.25,64.46,76837200,25.14 -2002-01-18,67.10,67.85,65.42,66.10,107140400,25.78 -2002-01-17,68.53,70.00,68.40,69.86,78958000,27.24 -2002-01-16,68.85,69.84,67.85,67.87,61955400,26.47 -2002-01-15,68.66,69.62,68.50,69.55,60717400,27.12 -2002-01-14,68.30,69.04,67.74,68.47,50997800,26.70 -2002-01-11,69.52,70.32,68.10,68.61,72993200,26.76 -2002-01-10,68.48,69.80,68.13,69.28,50296600,27.02 -2002-01-09,69.72,70.62,68.55,68.71,76304000,26.80 -2002-01-08,68.69,69.86,68.00,69.38,47736400,27.06 -2002-01-07,69.75,70.02,68.35,68.56,58508800,26.74 -2002-01-04,69.25,69.91,68.67,68.90,52731400,26.87 -2002-01-03,67.11,69.25,67.09,69.23,67590800,27.00 -2002-01-02,66.65,67.11,65.51,67.04,48124000,26.14 -2001-12-31,67.84,68.48,66.25,66.25,43006200,25.84 -2001-12-28,68.23,68.85,67.70,67.87,28787200,26.47 -2001-12-27,67.98,68.71,67.26,67.85,32406600,26.46 -2001-12-26,67.42,69.07,67.39,67.68,29328000,26.39 -2001-12-24,67.72,68.03,67.20,67.27,11701600,26.23 -2001-12-21,68.01,68.02,67.00,67.54,84307600,26.34 -2001-12-20,69.15,69.25,66.62,66.76,78585000,26.04 -2001-12-19,68.62,69.89,68.45,69.49,56996200,27.10 -2001-12-18,68.92,69.40,68.60,69.27,47255200,27.01 -2001-12-17,67.17,69.11,67.16,68.98,57079800,26.90 -2001-12-14,66.02,67.95,65.93,67.44,43000600,26.30 -2001-12-13,67.13,68.24,66.07,66.27,53227800,25.84 -2001-12-12,67.16,67.98,66.25,67.95,47884200,26.50 -2001-12-11,67.66,68.13,67.07,67.32,54334000,26.25 -2001-12-10,67.52,68.45,66.86,67.06,38367400,26.15 -2001-12-07,68.25,68.84,66.55,67.83,42334800,26.45 -2001-12-06,67.98,69.00,67.55,68.65,56026200,26.77 -2001-12-05,66.49,68.17,65.20,68.10,74243000,26.56 -2001-12-04,65.00,66.08,64.10,66.00,51005800,25.74 -2001-12-03,63.83,65.23,63.80,64.77,47211800,25.26 -2001-11-30,64.66,65.08,63.93,64.21,48234200,25.04 -2001-11-29,63.12,64.90,62.95,64.84,54034400,25.29 -2001-11-28,63.17,64.12,62.73,62.80,54536600,24.49 -2001-11-27,64.79,65.07,62.75,63.74,90819000,24.86 -2001-11-26,64.99,65.71,64.40,65.14,41983600,25.40 -2001-11-23,64.38,64.81,63.62,64.71,15754600,25.24 -2001-11-21,64.36,64.60,63.48,64.05,50785200,24.98 -2001-11-20,66.45,67.80,65.03,65.40,65921800,25.51 -2001-11-19,66.25,66.97,65.70,66.54,56005000,25.95 -2001-11-16,66.36,66.61,64.95,65.75,59249000,25.64 -2001-11-15,66.10,67.05,65.45,66.12,77922000,25.79 -2001-11-14,68.23,68.34,65.79,65.95,88625600,25.72 -2001-11-13,66.80,67.95,66.60,67.90,60159600,26.48 -2001-11-12,64.70,66.44,63.65,65.79,57752800,25.66 -2001-11-09,64.34,65.65,63.91,65.21,48013600,25.43 -2001-11-08,64.46,66.06,63.66,64.42,74227800,25.12 -2001-11-07,64.22,65.05,64.03,64.25,58899000,25.06 -2001-11-06,62.70,64.94,62.16,64.78,68612000,25.26 -2001-11-05,61.86,64.03,61.75,63.27,66401600,24.67 -2001-11-02,61.93,63.02,60.51,61.40,83360000,23.95 -2001-11-01,60.08,62.25,59.60,61.84,109671200,24.12 -2001-10-31,59.30,60.73,58.10,58.15,64700000,22.68 -2001-10-30,58.92,59.54,58.19,58.88,57395600,22.96 -2001-10-29,62.10,62.20,59.54,59.64,55129400,23.26 -2001-10-26,62.32,63.63,62.08,62.20,64509400,24.26 -2001-10-25,60.61,62.60,59.57,62.56,75318200,24.40 -2001-10-24,60.50,61.62,59.62,61.32,79141400,23.91 -2001-10-23,60.47,61.44,59.40,60.43,80325000,23.57 -2001-10-22,57.90,60.18,57.47,60.16,72323600,23.46 -2001-10-19,57.40,58.01,55.63,57.90,91219600,22.58 -2001-10-18,56.34,57.58,55.50,56.75,78348000,22.13 -2001-10-17,59.12,59.30,55.98,56.03,73710600,21.85 -2001-10-16,57.87,58.91,57.21,58.45,66169000,22.79 -2001-10-15,55.90,58.50,55.85,58.06,68437000,22.64 -2001-10-12,55.70,56.64,54.55,56.38,63307000,21.99 -2001-10-11,55.76,56.84,54.59,56.32,83742600,21.96 -2001-10-10,53.60,55.75,53.00,55.51,86349200,21.65 -2001-10-09,57.50,57.57,54.19,54.56,99477600,21.28 -2001-10-08,56.80,58.65,56.74,58.04,60605800,22.64 -2001-10-05,56.16,58.00,54.94,57.72,80844400,22.51 -2001-10-04,56.92,58.40,56.21,56.44,101778000,22.01 -2001-10-03,52.48,56.93,52.40,56.23,97199200,21.93 -2001-10-02,51.63,53.55,51.56,53.05,80860800,20.69 -2001-10-01,50.94,52.50,50.41,51.79,69999600,20.20 -2001-09-28,49.62,51.59,48.98,51.17,116641200,19.96 -2001-09-27,50.10,50.68,48.00,49.96,81191200,19.48 -2001-09-26,51.51,51.80,49.55,50.27,58524400,19.60 -2001-09-25,52.27,53.00,50.16,51.30,84940600,20.01 -2001-09-24,50.65,52.45,49.87,52.01,85580200,20.28 -2001-09-21,47.92,50.60,47.50,49.71,184976600,19.39 -2001-09-20,52.35,52.61,50.67,50.76,117983200,19.80 -2001-09-19,54.46,54.70,50.60,53.87,126950200,21.01 -2001-09-18,53.41,55.00,53.17,54.32,83182600,21.18 -2001-09-17,54.02,55.10,52.80,52.91,127502000,20.63 -2001-09-10,54.92,57.95,54.70,57.58,84471800,22.46 -2001-09-07,56.11,57.36,55.31,55.40,89863800,21.61 -2001-09-06,56.56,58.39,55.90,56.02,112356800,21.85 -2001-09-05,56.18,58.39,55.39,57.74,89470600,22.52 -2001-09-04,57.19,59.08,56.07,56.10,67189200,21.88 -2001-08-31,56.85,58.06,56.30,57.05,57900800,22.25 -2001-08-30,59.04,59.66,56.52,56.94,97632000,22.21 -2001-08-29,61.05,61.30,59.54,60.25,48170000,23.50 -2001-08-28,62.34,62.95,60.58,60.74,47422800,23.69 -2001-08-27,61.90,63.36,61.57,62.31,44562800,24.30 -2001-08-24,59.60,62.28,59.23,62.05,63399000,24.20 -2001-08-23,60.67,61.53,59.00,59.12,51813200,23.06 -2001-08-22,61.13,61.15,59.08,60.66,78107200,23.66 -2001-08-21,62.70,63.20,60.71,60.78,47111800,23.70 -2001-08-20,61.66,62.75,61.10,62.70,48371200,24.45 -2001-08-17,63.78,64.13,61.50,61.88,52234200,24.13 -2001-08-16,62.84,64.71,62.70,64.62,43905600,25.20 -2001-08-15,64.71,65.05,63.20,63.20,39503000,24.65 -2001-08-14,65.75,66.09,64.45,64.69,36481200,25.23 -2001-08-13,65.24,65.99,64.75,65.83,32675400,25.67 -2001-08-10,64.77,65.86,62.90,65.52,51756400,25.55 -2001-08-09,64.98,65.55,64.30,65.01,45536200,25.35 -2001-08-08,66.51,67.24,64.49,64.86,54996400,25.29 -2001-08-07,66.04,67.05,65.99,66.35,31347800,25.88 -2001-08-06,66.53,67.12,65.68,66.13,27831600,25.79 -2001-08-03,67.30,67.36,66.00,66.89,43260400,26.09 -2001-08-02,67.21,67.54,66.26,67.45,54198400,26.30 -2001-08-01,66.80,66.81,65.76,66.47,55679000,25.92 -2001-07-31,66.01,67.39,65.85,66.19,59031600,25.81 -2001-07-30,65.65,66.88,65.54,65.80,42196400,25.66 -2001-07-27,66.05,66.25,65.05,65.47,65396000,25.53 -2001-07-26,67.12,67.32,65.50,66.59,77974000,25.97 -2001-07-25,66.26,67.52,65.61,67.48,74065400,26.32 -2001-07-24,67.00,67.99,65.70,66.32,67530200,25.86 -2001-07-23,69.24,69.24,66.35,67.09,79999400,26.16 -2001-07-20,68.03,69.40,67.94,69.18,124203600,26.98 -2001-07-19,71.22,73.00,71.22,72.57,76549400,28.30 -2001-07-18,70.60,71.50,69.87,70.57,57590800,27.52 -2001-07-17,70.66,72.01,70.14,71.82,63241000,28.01 -2001-07-16,71.45,72.16,70.15,71.18,55990800,27.76 -2001-07-13,71.40,72.00,70.94,71.34,58934600,27.82 -2001-07-12,70.70,72.05,70.33,71.60,128078000,27.92 -2001-07-11,64.21,66.75,64.20,66.50,73822600,25.93 -2001-07-10,65.90,66.25,64.35,64.48,66562600,25.15 -2001-07-09,66.20,66.91,65.04,65.69,66476600,25.62 -2001-07-06,68.30,68.40,65.67,66.06,67467800,25.76 -2001-07-05,70.22,70.72,68.44,68.51,49242600,26.72 -2001-07-03,70.30,70.80,69.93,70.47,28037400,27.48 -2001-07-02,72.05,73.15,70.15,70.60,72810200,27.53 -2001-06-29,72.60,73.41,71.40,73.00,94283800,28.47 -2001-06-28,71.55,76.15,70.53,72.74,128975600,28.37 -2001-06-27,69.86,71.53,69.36,71.14,69199800,27.74 -2001-06-26,67.82,70.21,67.70,70.14,63077000,27.35 -2001-06-25,69.10,69.81,67.77,68.85,49215600,26.85 -2001-06-22,70.00,70.61,68.58,68.83,51092000,26.84 -2001-06-21,69.15,70.55,68.92,69.84,69603800,27.24 -2001-06-20,67.14,69.59,67.10,69.41,64108400,27.07 -2001-06-19,68.21,68.85,66.85,67.32,63457400,26.25 -2001-06-18,67.95,67.96,66.01,66.88,56846800,26.08 -2001-06-15,67.51,68.30,66.40,68.02,108354400,26.53 -2001-06-14,70.22,70.55,68.40,68.90,71972400,26.87 -2001-06-13,72.05,72.30,70.64,70.69,55302400,27.57 -2001-06-12,71.02,72.41,70.81,72.08,66714600,28.11 -2001-06-11,72.85,72.85,71.51,72.12,47345600,28.13 -2001-06-08,73.70,73.75,72.05,73.19,51867000,28.54 -2001-06-07,72.12,73.73,72.08,73.68,66960000,28.73 -2001-06-06,72.89,73.48,71.55,72.36,80022800,28.22 -2001-06-05,70.76,73.08,70.50,72.60,89454200,28.31 -2001-06-04,70.55,71.02,69.80,70.78,43736600,27.60 -2001-06-01,69.60,70.70,68.70,70.34,57587600,27.43 -2001-05-31,69.49,70.38,68.40,69.18,70682600,26.98 -2001-05-30,69.56,70.58,68.65,69.19,86501800,26.98 -2001-05-29,70.80,71.75,70.05,70.34,71210800,27.43 -2001-05-25,71.66,71.90,70.36,70.91,52747600,27.65 -2001-05-24,69.94,71.78,69.27,71.72,80781600,27.97 -2001-05-23,70.39,71.60,69.51,69.70,93637400,27.18 -2001-05-22,69.45,70.35,69.18,70.31,83455600,27.42 -2001-05-21,68.05,69.99,67.75,68.79,103491600,26.83 -2001-05-18,67.69,69.20,67.25,68.09,90605400,26.55 -2001-05-17,69.10,70.14,67.55,68.17,106984800,26.59 -2001-05-16,67.70,69.88,67.33,69.16,91893800,26.97 -2001-05-15,68.74,69.30,68.00,68.27,61385600,26.62 -2001-05-14,69.13,69.20,68.30,68.72,44968000,26.80 -2001-05-11,69.96,70.00,68.65,69.40,51128800,27.07 -2001-05-10,71.13,71.24,69.96,70.00,64334600,27.30 -2001-05-09,71.24,71.30,69.86,70.40,76676600,27.46 -2001-05-08,71.75,72.10,70.75,72.06,75084000,28.10 -2001-05-07,70.83,72.15,70.70,71.38,109356200,27.84 -2001-05-04,68.00,71.05,67.96,70.75,119538400,27.59 -2001-05-03,69.25,70.18,68.14,68.53,66273400,26.73 -2001-05-02,71.00,71.15,69.35,69.76,92864400,27.21 -2001-05-01,67.66,70.30,67.60,70.17,83702800,27.37 -2001-04-30,68.53,69.06,67.68,67.75,74368200,26.42 -2001-04-27,69.53,69.68,66.21,67.12,121572400,26.18 -2001-04-26,70.07,71.00,68.25,69.13,118737600,26.96 -2001-04-25,67.57,69.79,67.25,69.69,76744000,27.18 -2001-04-24,68.20,69.93,67.14,67.55,89176600,26.34 -2001-04-23,68.11,68.47,66.90,68.25,92171200,26.62 -2001-04-20,70.30,71.10,68.50,69.00,192919600,26.91 -2001-04-19,65.81,69.00,65.75,68.04,159375600,26.53 -2001-04-18,63.39,66.31,63.00,65.43,156696400,25.52 -2001-04-17,60.52,62.11,60.04,61.48,85149200,23.98 -2001-04-16,61.40,61.58,60.12,60.79,65857400,23.71 -2001-04-12,59.56,62.31,59.35,62.18,87520000,24.25 -2001-04-11,60.65,61.50,59.70,60.04,109879600,23.41 -2001-04-10,57.95,60.09,57.78,59.68,109199400,23.27 -2001-04-09,56.57,57.42,55.66,57.15,56295600,22.29 -2001-04-06,56.38,57.19,55.06,56.19,92622000,21.91 -2001-04-05,53.75,57.38,53.50,56.75,113364000,22.13 -2001-04-04,53.38,55.00,51.06,51.94,104046600,20.26 -2001-04-03,55.31,55.31,52.75,53.38,94187600,20.82 -2001-04-02,54.81,56.94,54.63,55.81,75924000,21.77 -2001-03-30,55.75,56.19,53.88,54.69,91201600,21.33 -2001-03-29,55.38,57.19,54.56,55.38,86985000,21.60 -2001-03-28,57.38,57.94,55.38,55.56,78681600,21.67 -2001-03-27,56.06,58.56,55.88,58.25,95135600,22.72 -2001-03-26,57.13,57.50,55.56,56.06,63118600,21.86 -2001-03-23,54.94,57.00,54.38,56.56,99519600,22.06 -2001-03-22,50.56,54.06,50.50,54.00,126363200,21.06 -2001-03-21,52.25,53.25,49.75,50.06,124988600,19.52 -2001-03-20,54.56,56.13,52.63,52.69,91822800,20.55 -2001-03-19,54.50,55.50,53.13,54.31,61036400,21.18 -2001-03-16,52.50,55.13,52.48,54.56,112848800,21.28 -2001-03-15,55.31,56.08,53.50,53.69,71638400,20.94 -2001-03-14,52.50,55.25,52.19,54.00,90686200,21.06 -2001-03-13,52.19,54.75,52.00,54.19,91035600,21.13 -2001-03-12,54.69,55.00,51.63,51.94,114376000,20.26 -2001-03-09,57.94,58.19,54.88,56.69,103794400,22.11 -2001-03-08,60.31,60.59,58.44,59.25,54626000,23.11 -2001-03-07,59.88,61.13,59.31,60.69,59743600,23.67 -2001-03-06,58.63,60.00,58.38,59.44,66781800,23.18 -2001-03-05,57.25,58.63,56.56,57.44,49383600,22.40 -2001-03-02,57.50,58.13,56.44,56.69,79800800,22.11 -2001-03-01,58.56,59.50,56.25,59.36,81781600,23.15 -2001-02-28,59.56,60.08,58.19,59.00,84608400,23.01 -2001-02-27,59.38,61.19,58.67,59.38,99148600,23.16 -2001-02-26,57.63,59.94,57.38,59.56,87936800,23.23 -2001-02-23,54.44,57.50,54.31,56.75,92620600,22.13 -2001-02-22,56.31,56.81,53.88,55.19,100816400,21.52 -2001-02-21,55.25,58.06,55.19,56.25,63947200,21.94 -2001-02-20,57.38,58.25,55.38,55.88,60730800,21.79 -2001-02-16,57.00,58.25,56.13,57.31,66958400,22.35 -2001-02-15,59.00,60.19,57.88,58.81,65627800,22.94 -2001-02-14,57.63,59.00,56.38,58.38,61728400,22.77 -2001-02-13,59.63,61.06,58.13,58.19,76070600,22.69 -2001-02-12,58.81,59.44,57.19,58.75,71289400,22.91 -2001-02-09,61.31,61.56,58.50,59.13,100575200,23.06 -2001-02-08,63.75,64.50,62.00,62.25,88041200,24.28 -2001-02-07,62.00,65.06,61.81,64.69,126061800,25.23 -2001-02-06,62.06,63.81,61.69,62.56,96442000,24.40 -2001-02-05,60.75,62.06,60.25,61.94,51399200,24.16 -2001-02-02,62.50,63.38,60.75,60.81,71100000,23.72 -2001-02-01,60.81,62.63,60.38,62.38,71792800,24.33 -2001-01-31,63.00,63.75,61.00,61.06,81898800,23.81 -2001-01-30,64.50,64.75,62.88,63.38,57276800,24.72 -2001-01-29,63.56,64.62,63.50,64.50,84983800,25.15 -2001-01-26,61.00,64.31,61.00,64.00,93080000,24.96 -2001-01-25,62.75,64.00,61.56,61.81,85657400,24.11 -2001-01-24,61.00,63.44,60.75,62.94,110455000,24.55 -2001-01-23,59.75,60.94,58.94,60.56,70295200,23.62 -2001-01-22,60.75,61.00,59.00,60.13,76673000,23.45 -2001-01-19,60.00,61.44,58.88,61.00,209348800,23.79 -2001-01-18,53.69,56.19,52.63,55.50,109788800,21.64 -2001-01-17,53.63,54.88,52.56,52.94,72844200,20.65 -2001-01-16,53.38,53.50,51.13,52.56,68462400,20.50 -2001-01-12,54.88,55.00,52.50,53.50,73712000,20.86 -2001-01-11,53.00,55.75,52.31,55.00,101854800,21.45 -2001-01-10,51.00,53.81,50.75,52.88,90230200,20.62 -2001-01-09,50.00,52.63,49.75,51.81,114965400,20.21 -2001-01-08,48.94,49.75,46.69,48.94,79817600,19.09 -2001-01-05,48.50,49.88,47.56,49.13,93414600,19.16 -2001-01-04,47.81,50.50,46.88,48.44,112397000,18.89 -2001-01-03,43.19,48.88,43.13,47.94,135962200,18.70 -2001-01-02,44.13,45.00,42.88,43.38,82413200,16.92 -2000-12-29,43.94,45.81,43.00,43.38,99977600,16.92 -2000-12-28,45.13,46.25,43.88,44.56,77619200,17.38 -2000-12-27,46.13,46.81,45.00,46.44,69003800,18.11 -2000-12-26,46.88,48.56,45.88,46.88,66941600,18.28 -2000-12-22,44.75,47.13,44.75,46.44,109551800,18.11 -2000-12-21,40.75,45.13,40.31,43.44,163173000,16.94 -2000-12-20,42.81,44.00,41.38,41.50,149037800,16.18 -2000-12-19,47.44,48.00,44.50,44.81,120271800,17.48 -2000-12-18,49.00,50.00,47.00,47.81,107187400,18.65 -2000-12-15,51.05,52.00,47.75,49.19,116899800,19.18 -2000-12-14,57.94,58.73,55.38,55.50,71201400,21.64 -2000-12-13,60.50,60.50,56.81,57.25,98360400,22.33 -2000-12-12,57.81,60.00,56.75,58.38,63106000,22.77 -2000-12-11,55.50,58.75,55.00,58.06,95576200,22.64 -2000-12-08,54.63,55.88,53.44,54.44,120939800,21.23 -2000-12-07,53.44,54.00,52.25,53.13,145308400,20.72 -2000-12-06,60.00,60.06,56.06,56.69,90560800,22.11 -2000-12-05,59.19,60.50,58.25,59.88,101734400,23.35 -2000-12-04,57.25,59.00,55.19,56.44,80407200,22.01 -2000-12-01,58.06,60.63,56.06,56.63,109809800,22.09 -2000-11-30,62.00,62.06,57.00,57.38,197200800,22.38 -2000-11-29,66.81,67.12,63.25,65.06,98280400,25.37 -2000-11-28,69.37,69.75,66.81,67.00,127446200,26.13 -2000-11-27,71.44,72.25,70.62,70.69,85307600,27.57 -2000-11-24,69.00,70.44,68.50,69.94,34439200,27.28 -2000-11-22,66.06,69.50,66.00,68.25,76343200,26.62 -2000-11-21,67.37,69.25,67.37,67.75,59487600,26.42 -2000-11-20,68.12,68.50,65.56,67.19,80157200,26.20 -2000-11-17,69.44,70.00,67.80,69.06,106525600,26.93 -2000-11-16,69.44,71.50,68.94,68.94,92128600,26.89 -2000-11-15,69.06,70.87,68.69,70.06,60422200,27.32 -2000-11-14,68.00,69.81,67.31,68.81,84218600,26.84 -2000-11-13,66.69,68.12,64.41,66.44,83364800,25.91 -2000-11-10,69.94,70.31,66.81,67.37,93744400,26.27 -2000-11-09,68.50,71.31,68.44,70.87,91058600,27.64 -2000-11-08,71.12,72.37,68.00,69.44,206149400,27.08 -2000-11-07,69.75,71.87,69.50,70.50,104331200,27.49 -2000-11-06,68.69,70.12,68.25,69.50,74851400,27.10 -2000-11-03,69.25,69.62,68.06,68.25,68711000,26.62 -2000-11-02,70.37,70.84,69.62,70.31,77985200,27.42 -2000-11-01,68.50,70.06,68.44,69.62,81309400,27.15 -2000-10-31,69.00,69.50,68.00,68.87,104474000,26.86 -2000-10-30,67.50,70.12,67.37,69.06,110057600,26.93 -2000-10-27,64.69,69.19,64.62,67.69,124292400,26.40 -2000-10-26,61.00,65.06,60.81,64.44,114826600,25.13 -2000-10-25,61.94,63.44,60.44,61.25,167603800,23.89 -2000-10-24,62.63,62.94,60.19,61.50,94427400,23.98 -2000-10-23,64.62,66.25,60.69,62.13,185170400,24.23 -2000-10-20,61.31,66.12,61.13,65.19,160378600,25.42 -2000-10-19,58.44,62.19,58.00,61.88,256993200,24.13 -2000-10-18,49.63,53.25,48.44,51.75,110536400,20.18 -2000-10-17,51.88,52.44,50.25,50.44,81276600,19.67 -2000-10-16,53.50,53.81,49.56,50.38,119759000,19.65 -2000-10-13,53.88,54.88,52.13,53.75,104521200,20.96 -2000-10-12,56.31,56.88,53.81,54.38,90219600,21.21 -2000-10-11,54.00,56.94,54.00,55.75,101205800,21.74 -2000-10-10,53.94,55.56,53.81,54.56,62066200,21.28 -2000-10-09,55.63,55.75,53.00,54.19,58323600,21.13 -2000-10-06,55.81,56.75,54.75,55.56,61794000,21.67 -2000-10-05,55.50,57.25,55.25,55.38,81099400,21.60 -2000-10-04,56.38,56.56,54.50,55.44,136453400,21.62 -2000-10-03,59.56,59.81,56.50,56.56,85374000,22.06 -2000-10-02,60.50,60.81,58.25,59.13,58562400,23.06 -2000-09-29,61.00,61.31,58.63,60.31,74053600,23.52 -2000-09-28,60.81,61.88,60.63,61.31,52360400,23.91 -2000-09-27,63.44,63.56,59.81,60.63,106155600,23.65 -2000-09-26,60.94,65.87,60.44,62.69,155704800,24.45 -2000-09-25,63.25,63.50,60.44,61.25,53484200,23.89 -2000-09-22,61.13,63.50,61.00,63.25,84476600,24.67 -2000-09-21,64.00,65.12,63.56,64.19,48952200,25.03 -2000-09-20,64.87,65.00,63.19,64.25,67791400,25.06 -2000-09-19,63.63,65.75,63.38,65.00,79311200,25.35 -2000-09-18,64.25,64.62,62.19,63.00,69037800,24.57 -2000-09-15,65.44,65.62,63.31,64.19,99915200,25.03 -2000-09-14,68.69,68.75,65.69,65.81,78503000,25.67 -2000-09-13,67.56,68.75,67.19,68.25,40744800,26.62 -2000-09-12,68.75,69.31,67.62,68.12,46781200,26.57 -2000-09-11,69.12,69.69,68.06,68.81,48495200,26.84 -2000-09-08,70.37,70.87,69.19,69.31,56709600,27.03 -2000-09-07,70.00,72.06,69.44,70.06,111711200,27.32 -2000-09-06,70.06,70.69,69.31,69.44,62960800,27.08 -2000-09-05,70.00,70.69,69.81,70.12,50755200,27.35 -2000-09-01,70.00,70.62,69.69,70.19,37629800,27.37 -2000-08-31,70.87,72.00,69.69,69.81,72575400,27.23 -2000-08-30,70.69,70.94,69.69,70.00,53498800,27.30 -2000-08-29,71.19,72.75,70.87,70.94,59400200,27.67 -2000-08-28,70.19,72.12,70.12,71.31,56421600,27.81 -2000-08-25,70.69,71.69,70.56,70.62,52729400,27.54 -2000-08-24,70.62,71.19,69.94,71.12,42405400,27.74 -2000-08-23,70.81,71.12,70.37,70.75,36726800,27.59 -2000-08-22,70.81,72.44,70.22,71.25,54428200,27.79 -2000-08-21,70.69,70.81,70.06,70.62,34119600,27.54 -2000-08-18,71.12,71.44,70.00,71.00,54438800,27.69 -2000-08-17,71.12,72.00,70.56,71.56,36112800,27.91 -2000-08-16,71.87,72.25,70.56,71.00,44976200,27.69 -2000-08-15,72.00,73.00,71.50,71.62,40714200,27.93 -2000-08-14,72.31,73.37,71.37,72.19,53427000,28.15 -2000-08-11,72.44,72.69,71.62,72.44,35629600,28.25 -2000-08-10,73.81,74.06,71.75,72.62,48986000,28.32 -2000-08-09,73.75,74.87,73.12,74.25,63945600,28.96 -2000-08-08,70.06,74.69,70.00,74.12,138038800,28.91 -2000-08-07,70.19,71.12,69.75,70.00,52741800,27.30 -2000-08-04,69.44,69.87,68.19,69.12,38107400,26.96 -2000-08-03,68.19,70.37,68.12,70.25,54543400,27.40 -2000-08-02,68.56,70.44,68.50,69.37,48269200,27.05 -2000-08-01,69.94,70.06,68.19,68.69,47163600,26.79 -2000-07-31,70.19,71.12,69.25,69.81,70283800,27.23 -2000-07-28,70.94,71.81,69.62,69.69,75645600,27.18 -2000-07-27,67.87,70.12,67.50,69.37,74337600,27.05 -2000-07-26,69.06,69.50,67.25,67.81,85404600,26.45 -2000-07-25,70.81,71.00,68.37,69.00,64188600,26.91 -2000-07-24,72.06,72.12,70.00,70.56,56165600,27.52 -2000-07-21,74.75,75.00,71.87,72.31,56100600,28.20 -2000-07-20,73.44,75.25,73.12,74.81,54690600,29.18 -2000-07-19,76.06,77.50,72.81,73.12,139924600,28.52 -2000-07-18,77.62,79.50,77.44,78.50,70617200,30.61 -2000-07-17,78.25,79.56,77.50,78.19,53992800,30.49 -2000-07-14,79.50,79.75,78.44,78.94,51180600,30.79 -2000-07-13,78.81,80.00,77.37,79.94,80843200,31.18 -2000-07-12,78.25,81.00,77.19,80.31,58370200,31.32 -2000-07-11,78.81,80.50,78.50,79.12,37164800,30.86 -2000-07-10,80.69,81.31,79.37,79.44,52689800,30.98 -2000-07-07,81.27,82.87,80.56,82.00,54153200,31.98 -2000-07-06,78.87,81.69,78.50,80.94,47873200,31.57 -2000-07-05,79.87,79.87,78.25,78.50,34824400,30.61 -2000-07-03,79.69,80.06,79.37,80.00,15734800,31.20 -2000-06-30,77.06,80.00,76.69,80.00,52356400,31.20 -2000-06-29,78.25,78.94,77.06,77.19,38449000,30.10 -2000-06-28,79.00,80.06,78.62,78.94,37459200,30.79 -2000-06-27,79.25,80.12,78.37,78.81,31071200,30.74 -2000-06-26,77.50,80.12,77.50,79.50,48287000,31.00 -2000-06-23,79.94,80.06,77.00,77.69,49811600,30.30 -2000-06-22,81.37,82.00,79.31,79.87,87315200,31.15 -2000-06-21,77.00,82.19,76.94,80.69,160399600,31.47 -2000-06-20,73.87,75.25,73.75,74.94,62275000,29.23 -2000-06-19,72.56,73.81,72.00,73.69,46604800,28.74 -2000-06-16,72.62,73.12,71.50,72.56,68710600,28.30 -2000-06-15,70.81,72.69,70.62,72.37,65592600,28.22 -2000-06-14,69.81,71.00,69.50,70.50,79992400,27.49 -2000-06-13,66.75,68.00,66.12,67.87,44289200,26.47 -2000-06-12,69.00,69.00,66.37,66.87,49260600,26.08 -2000-06-09,69.62,69.69,68.31,68.81,35710200,26.84 -2000-06-08,71.56,72.12,68.25,68.81,94765600,26.84 -2000-06-07,69.25,70.75,67.12,70.50,76310600,27.49 -2000-06-06,68.19,69.87,67.81,69.62,99019000,27.15 -2000-06-05,66.02,68.37,66.00,66.87,64400000,26.08 -2000-06-02,66.00,66.75,65.00,66.31,80463200,25.86 -2000-06-01,64.37,66.00,63.81,64.56,94507200,25.18 -2000-05-31,63.64,63.70,62.06,62.56,54968200,24.40 -2000-05-30,62.44,64.12,62.00,63.38,68536400,24.72 -2000-05-26,62.06,62.63,60.38,61.44,55822000,23.96 -2000-05-25,64.56,64.75,61.13,61.50,94348800,23.98 -2000-05-24,63.13,66.56,63.00,65.56,85482400,25.57 -2000-05-23,63.88,65.56,63.06,63.19,57963200,24.64 -2000-05-22,65.12,65.25,62.44,64.19,69955000,25.03 -2000-05-19,65.37,65.94,64.50,65.06,66578000,25.37 -2000-05-18,68.06,68.06,65.87,66.19,53640400,25.81 -2000-05-17,68.87,69.12,67.25,67.69,53242000,26.40 -2000-05-16,69.56,70.62,69.06,69.50,48410600,27.10 -2000-05-15,69.00,69.44,68.00,69.37,33899600,27.05 -2000-05-12,68.44,69.75,68.25,68.81,37886000,26.84 -2000-05-11,66.62,68.12,65.75,67.87,58390800,26.47 -2000-05-10,67.75,67.87,65.75,66.19,67740000,25.81 -2000-05-09,70.19,70.44,67.50,67.81,60778400,26.45 -2000-05-08,70.94,71.37,69.69,69.81,36187600,27.23 -2000-05-05,70.25,71.81,69.87,71.12,36402200,27.74 -2000-05-04,70.31,71.25,69.31,70.44,43317200,27.47 -2000-05-03,70.37,70.81,68.81,70.56,55354800,27.52 -2000-05-02,72.81,73.50,69.50,69.87,97716200,27.25 -2000-05-01,72.87,74.00,71.69,73.44,107811000,28.64 -2000-04-28,70.75,71.00,68.25,69.75,78082600,27.20 -2000-04-27,67.44,69.94,67.37,69.81,77669800,27.23 -2000-04-26,70.00,71.12,67.37,68.00,107091200,26.52 -2000-04-25,68.75,69.50,67.62,69.37,159517400,27.05 -2000-04-24,67.25,68.00,65.00,66.62,313645800,25.98 -2000-04-20,78.62,79.87,77.50,78.94,52387400,30.79 -2000-04-19,81.44,81.50,78.12,78.69,53715400,30.69 -2000-04-18,76.50,81.94,75.87,80.56,91794600,31.42 -2000-04-17,74.25,76.00,73.00,75.87,119772200,29.59 -2000-04-14,79.12,79.50,73.25,74.12,151217800,28.91 -2000-04-13,80.87,82.25,79.00,79.25,94316200,30.91 -2000-04-12,82.12,82.25,78.75,79.37,153003800,30.95 -2000-04-11,85.12,86.06,83.50,83.87,71961800,32.71 -2000-04-10,88.62,88.62,86.00,86.06,60685400,33.56 -2000-04-07,87.00,89.37,85.00,89.06,82613600,34.73 -2000-04-06,87.87,88.00,85.27,86.00,66421400,33.54 -2000-04-05,88.25,88.50,85.87,86.37,82887600,33.68 -2000-04-04,91.56,92.00,84.94,88.56,181244400,34.54 -2000-04-03,94.44,96.50,90.00,90.87,260118200,35.44 -2000-03-31,106.00,108.25,104.12,106.25,64281400,41.44 -2000-03-30,106.19,108.62,102.50,103.37,64178400,40.31 -2000-03-29,105.19,108.94,105.12,107.19,64363800,41.80 -2000-03-28,103.62,107.44,102.37,104.31,81114400,40.68 -2000-03-27,107.77,108.25,103.94,104.06,111434000,40.58 -2000-03-24,112.62,115.00,109.56,111.69,112196800,43.56 -2000-03-23,106.81,112.87,106.62,111.87,148224000,43.63 -2000-03-22,102.81,105.62,101.12,103.25,93975800,40.27 -2000-03-21,96.75,103.12,96.50,102.75,81648800,40.07 -2000-03-20,98.75,99.75,96.50,97.37,47773000,37.97 -2000-03-17,95.25,99.50,94.50,99.37,81161600,38.75 -2000-03-16,95.94,96.69,93.25,95.37,77300800,37.19 -2000-03-15,94.56,96.62,93.69,95.37,53208000,37.19 -2000-03-14,98.62,99.25,95.12,95.12,73489200,37.10 -2000-03-13,97.62,100.25,97.50,98.00,61831800,38.22 -2000-03-10,99.56,102.50,99.50,101.00,85589000,39.39 -2000-03-09,95.31,100.00,95.00,100.00,88198800,39.00 -2000-03-08,93.81,96.19,91.00,95.56,94290000,37.27 -2000-03-07,96.12,97.50,91.94,92.87,135061000,36.22 -2000-03-06,96.00,97.37,90.12,90.62,93609400,35.34 -2000-03-03,94.75,98.87,93.87,96.12,101435200,37.49 -2000-03-02,91.81,95.37,91.12,93.37,106932600,36.41 -2000-03-01,89.62,94.09,88.94,90.81,106889800,35.41 -2000-02-29,91.75,91.75,88.87,89.37,58437400,34.85 -2000-02-28,90.25,92.12,88.12,91.56,76131800,35.71 -2000-02-25,94.69,94.70,90.50,91.31,65301400,35.61 -2000-02-24,94.25,95.87,92.00,94.75,69733200,36.95 -2000-02-23,93.50,95.75,92.06,94.25,75847200,36.76 -2000-02-22,95.12,97.12,92.81,93.81,66296200,36.58 -2000-02-18,100.00,100.06,94.87,95.06,79063000,37.07 -2000-02-17,98.50,99.69,97.14,99.62,80343400,38.85 -2000-02-16,99.25,100.19,97.12,97.62,65202600,38.07 -2000-02-15,99.75,100.00,98.12,98.56,71027600,38.44 -2000-02-14,101.23,101.75,99.06,99.62,81028600,38.85 -2000-02-11,104.87,104.87,99.12,99.94,115559000,38.98 -2000-02-10,103.89,106.56,102.50,106.00,54527800,41.34 -2000-02-09,109.44,109.44,103.87,104.00,55090000,40.56 -2000-02-08,106.44,110.00,106.44,109.94,56229000,42.88 -2000-02-07,106.81,106.87,104.25,106.62,40005800,41.58 -2000-02-04,104.37,108.00,104.14,106.56,55365400,41.56 -2000-02-03,102.06,104.19,100.12,103.62,49186000,40.41 -2000-02-02,102.44,103.94,100.50,100.81,49915600,39.31 -2000-02-01,98.50,103.25,97.69,102.94,70196600,40.15 -2000-01-31,97.62,98.19,94.87,97.87,73194200,38.17 -2000-01-28,98.12,100.25,97.25,98.25,58225400,38.32 -2000-01-27,99.89,101.19,97.25,98.75,63654800,38.51 -2000-01-26,102.44,103.50,99.12,99.37,49365000,38.75 -2000-01-25,101.00,103.87,99.56,102.81,59823200,40.09 -2000-01-24,103.80,105.69,100.81,101.25,63597600,39.49 -2000-01-21,107.00,107.25,103.25,103.75,68416200,40.46 -2000-01-20,107.06,109.69,105.87,106.00,56349800,41.34 -2000-01-19,110.50,111.50,106.00,107.00,97568200,41.73 -2000-01-18,111.81,116.50,111.75,115.31,81483600,44.97 -2000-01-14,107.19,113.94,105.75,112.25,73416400,43.78 -2000-01-13,104.37,108.62,101.50,107.81,83144000,42.04 -2000-01-12,108.50,108.87,104.44,105.81,66532400,41.26 -2000-01-11,111.50,114.25,108.69,109.37,46743600,42.65 -2000-01-10,113.44,113.69,111.37,112.25,44963600,43.78 -2000-01-07,108.62,112.25,107.31,111.44,62013600,43.46 -2000-01-06,112.19,113.87,108.37,110.00,54976600,42.90 -2000-01-05,111.12,116.37,109.37,113.81,64059600,44.38 -2000-01-04,113.56,117.12,112.25,112.62,54119000,43.92 -2000-01-03,117.37,118.62,112.00,116.56,53228400,45.46 -1999-12-31,117.50,117.75,116.25,116.75,12517600,45.53 -1999-12-30,117.87,119.94,117.12,117.62,22360000,45.87 -1999-12-29,116.94,118.37,116.81,117.94,17449200,46.00 -1999-12-28,118.75,118.81,117.06,117.50,24591000,45.82 -1999-12-27,118.44,119.25,116.12,119.12,32202200,46.46 -1999-12-23,117.25,119.25,116.75,117.44,31028400,45.80 -1999-12-22,116.30,118.00,115.12,117.56,38565200,45.85 -1999-12-21,112.37,116.62,110.62,115.87,57446000,45.19 -1999-12-20,114.81,115.00,111.19,112.75,39433800,43.97 -1999-12-17,116.62,117.12,113.62,115.25,105898800,44.95 -1999-12-16,109.25,115.00,108.94,113.69,128660200,44.34 -1999-12-15,98.56,108.75,98.50,108.44,155571600,42.29 -1999-12-14,96.19,101.12,95.31,98.69,144116200,38.49 -1999-12-13,93.61,96.94,92.75,96.62,52691600,37.68 -1999-12-10,93.37,94.12,92.25,93.87,36836000,36.61 -1999-12-09,92.00,93.31,91.44,92.75,46258200,36.17 -1999-12-08,93.12,94.31,91.69,91.75,40955800,35.78 -1999-12-07,94.75,94.87,92.87,93.00,56859200,36.27 -1999-12-06,95.25,97.19,94.75,95.44,49098200,37.22 -1999-12-03,95.81,97.12,95.73,96.12,64100600,37.49 -1999-12-02,93.06,95.25,92.87,94.81,55473800,36.97 -1999-12-01,91.06,93.94,90.87,93.19,48864200,36.34 -1999-11-30,89.75,92.87,89.56,91.05,64145600,35.51 -1999-11-29,90.12,92.06,89.50,90.19,51460200,35.17 -1999-11-26,91.62,93.37,91.00,91.12,28514200,35.54 -1999-11-24,89.56,92.25,89.50,91.69,53771000,35.76 -1999-11-23,89.25,91.37,88.37,89.62,70787400,34.95 -1999-11-22,89.62,90.37,88.44,89.81,90596600,35.02 -1999-11-19,84.44,86.56,84.37,86.00,58226000,33.54 -1999-11-18,84.94,85.81,84.50,84.94,64493200,33.13 -1999-11-17,86.44,87.06,85.00,85.00,66819000,33.15 -1999-11-16,86.94,87.75,85.87,87.31,59165200,34.05 -1999-11-15,88.25,88.50,86.94,87.00,47080400,33.93 -1999-11-12,89.75,90.00,87.06,89.19,49414200,34.78 -1999-11-11,88.25,90.44,88.25,89.62,69274600,34.95 -1999-11-10,88.12,89.12,86.44,87.12,69385400,33.98 -1999-11-09,89.75,89.87,86.44,88.87,109769800,34.66 -1999-11-08,84.81,90.75,84.37,89.94,243819200,35.08 -1999-11-05,91.81,92.87,90.50,91.56,70167400,35.71 -1999-11-04,92.31,92.75,90.31,91.75,54239400,35.78 -1999-11-03,92.94,93.50,91.50,92.00,44517000,35.88 -1999-11-02,92.75,94.50,91.94,92.56,46349000,36.10 -1999-11-01,93.25,94.19,92.12,92.37,53261200,36.02 -1999-10-29,91.44,94.00,91.25,92.56,79452600,36.10 -1999-10-28,90.00,90.87,89.31,89.87,70570400,35.05 -1999-10-27,91.50,91.62,89.69,90.87,54416600,35.44 -1999-10-26,94.37,95.25,92.27,92.37,52467600,36.02 -1999-10-25,92.00,93.56,91.12,92.44,30492200,36.05 -1999-10-22,93.56,93.87,91.75,92.69,43650600,36.15 -1999-10-21,90.56,93.12,90.50,93.06,60801200,36.29 -1999-10-20,91.56,92.37,90.25,92.25,88090600,35.98 -1999-10-19,88.25,89.25,85.25,86.31,69945600,33.66 -1999-10-18,87.19,88.00,85.06,87.87,75312800,34.27 -1999-10-15,89.50,89.81,87.31,88.06,73788000,34.34 -1999-10-14,90.87,92.23,89.69,90.69,42737800,35.37 -1999-10-13,92.00,93.12,90.31,91.06,38098400,35.51 -1999-10-12,94.00,94.31,92.37,92.56,27668600,36.10 -1999-10-11,94.62,95.00,94.12,94.31,19943800,36.78 -1999-10-08,93.50,95.19,92.12,94.94,35697000,37.03 -1999-10-07,93.69,95.06,92.69,93.75,46036400,36.56 -1999-10-06,92.31,94.00,92.06,93.69,35500200,36.54 -1999-10-05,92.75,93.87,89.50,91.81,43397000,35.80 -1999-10-04,90.50,92.62,90.25,92.56,29998000,36.10 -1999-10-01,90.19,90.62,88.31,89.98,44239000,35.09 -1999-09-30,90.00,91.69,88.81,90.56,47455400,35.32 -1999-09-29,91.56,92.12,89.12,89.50,37484400,34.90 -1999-09-28,91.25,92.69,89.06,92.12,46000600,35.93 -1999-09-27,92.00,92.94,90.87,91.44,34132200,35.66 -1999-09-24,90.19,91.37,88.87,90.94,70277000,35.47 -1999-09-23,96.87,96.87,90.02,91.19,71073600,35.56 -1999-09-22,94.75,96.62,93.69,96.06,48531600,37.46 -1999-09-21,96.56,96.56,94.12,94.62,47082800,36.90 -1999-09-20,96.00,97.87,95.00,97.56,48601800,38.05 -1999-09-17,94.37,96.50,93.81,96.44,79773400,37.61 -1999-09-16,92.87,94.06,90.62,94.00,45796000,36.66 -1999-09-15,95.50,95.75,92.37,92.62,48413800,36.12 -1999-09-14,93.69,95.56,93.62,95.06,40207800,37.07 -1999-09-13,94.50,94.81,93.37,93.87,27870800,36.61 -1999-09-10,95.06,95.31,94.00,95.00,34455000,37.05 -1999-09-09,92.44,94.14,91.80,94.06,38475200,36.68 -1999-09-08,93.69,94.69,92.06,92.25,42568200,35.98 -1999-09-07,94.87,96.69,93.75,94.25,47028000,36.76 -1999-09-03,93.75,96.44,93.50,95.87,52098000,37.39 -1999-09-02,91.50,92.56,90.69,91.81,33340800,35.80 -1999-09-01,92.31,93.44,91.62,92.37,36607200,36.02 -1999-08-31,91.81,93.12,90.12,92.56,46882800,36.10 -1999-08-30,92.87,93.44,91.56,92.25,33300800,35.98 -1999-08-27,95.06,95.12,92.37,93.25,41948400,36.37 -1999-08-26,95.37,96.37,93.69,94.62,61246000,36.90 -1999-08-25,93.62,96.00,93.19,95.31,81877600,37.17 -1999-08-24,87.06,93.50,87.06,92.19,120450000,35.95 -1999-08-23,84.31,86.62,83.87,86.44,60447000,33.71 -1999-08-20,84.00,84.78,83.06,83.37,46072800,32.51 -1999-08-19,84.56,85.12,83.12,83.81,71478200,32.69 -1999-08-18,84.44,86.19,84.06,85.00,58361200,33.15 -1999-08-17,85.44,85.50,82.94,84.56,51749000,32.98 -1999-08-16,85.06,85.89,82.31,84.31,57321800,32.88 -1999-08-13,82.94,85.62,82.75,84.69,65099800,33.03 -1999-08-12,83.94,84.19,81.62,81.75,61062000,31.88 -1999-08-11,84.00,84.69,82.31,84.19,66105200,32.83 -1999-08-10,83.56,84.06,81.62,82.94,62743000,32.35 -1999-08-09,85.62,85.81,83.69,83.81,39333600,32.69 -1999-08-06,86.06,86.44,84.94,85.12,67205800,33.20 -1999-08-05,85.37,86.37,84.75,85.75,76634000,33.44 -1999-08-04,85.12,87.19,84.75,84.94,75573400,33.13 -1999-08-03,85.87,86.06,84.37,84.75,55051200,33.05 -1999-08-02,85.69,86.94,84.37,84.81,48050600,33.08 -1999-07-30,87.62,88.62,85.50,85.81,51127400,33.47 -1999-07-29,88.69,88.81,86.31,86.94,57968200,33.91 -1999-07-28,89.19,90.50,88.37,90.00,62215200,35.10 -1999-07-27,88.81,89.75,88.00,88.81,65513000,34.63 -1999-07-26,88.87,89.81,87.62,87.62,50885000,34.17 -1999-07-23,91.56,91.75,89.69,90.25,68833200,35.20 -1999-07-22,94.37,94.50,90.00,91.06,60904200,35.51 -1999-07-21,93.62,95.31,93.00,94.69,54050800,36.93 -1999-07-20,96.44,96.75,92.31,93.31,92287400,36.39 -1999-07-19,100.00,100.75,97.81,98.37,81181600,38.36 -1999-07-16,95.50,99.87,95.00,99.44,115369800,38.78 -1999-07-15,95.00,95.25,93.75,94.37,40926200,36.80 -1999-07-14,93.75,95.00,92.50,94.94,37985200,37.03 -1999-07-13,93.12,94.06,92.81,93.62,30845000,36.51 -1999-07-12,93.19,94.75,92.37,94.19,43847800,36.73 -1999-07-09,92.37,93.31,92.25,93.25,33884200,36.37 -1999-07-08,91.81,93.00,90.69,92.56,37790400,36.10 -1999-07-07,90.06,92.31,89.87,92.31,33834600,36.00 -1999-07-06,92.25,92.94,89.25,89.56,45419400,34.93 -1999-07-02,90.87,92.12,90.31,92.00,32094800,35.88 -1999-07-01,89.87,91.50,88.37,91.19,47737800,35.56 -1999-06-30,87.75,90.25,86.75,90.19,57610200,35.17 -1999-06-29,86.69,88.06,86.00,88.00,38973200,34.32 -1999-06-28,85.50,86.81,84.94,86.75,31701000,33.83 -1999-06-25,85.37,86.44,84.37,84.94,24933000,33.13 -1999-06-24,85.75,86.25,84.00,84.62,33559000,33.00 -1999-06-23,85.94,87.37,85.06,86.00,33942000,33.54 -1999-06-22,88.44,88.44,86.25,86.50,38751000,33.73 -1999-06-21,84.87,89.00,84.87,88.94,56194400,34.69 -1999-06-18,82.31,85.00,82.12,85.00,69116200,33.15 -1999-06-17,80.69,83.00,80.50,82.87,44475200,32.32 -1999-06-16,79.06,81.62,78.94,81.00,48325200,31.59 -1999-06-15,78.06,78.87,76.69,77.69,36981000,30.30 -1999-06-14,78.75,79.69,77.44,77.56,28369800,30.25 -1999-06-11,80.00,80.50,77.56,78.12,34543000,30.47 -1999-06-10,81.87,82.31,79.06,79.87,35277400,31.15 -1999-06-09,80.12,82.62,80.00,82.31,53310800,32.10 -1999-06-08,79.87,82.12,79.00,79.37,41516400,30.95 -1999-06-07,79.94,81.06,79.19,80.25,32392200,31.30 -1999-06-04,76.94,79.69,76.75,79.56,35668200,31.03 -1999-06-03,78.37,78.94,76.12,76.37,32934400,29.78 -1999-06-02,78.06,78.62,76.25,78.44,42812600,30.59 -1999-06-01,80.62,80.75,78.44,78.50,36046400,30.61 -1999-05-28,78.75,80.87,78.12,80.69,41548000,31.47 -1999-05-27,78.25,79.44,77.50,78.37,56702200,30.56 -1999-05-26,77.19,78.50,75.50,78.50,52022800,30.61 -1999-05-25,76.75,79.25,76.12,76.25,50791600,29.74 -1999-05-24,77.87,77.87,76.06,77.25,38990000,30.13 -1999-05-21,78.50,79.00,77.00,77.56,56568800,30.25 -1999-05-20,79.56,80.00,78.37,78.44,42386200,30.59 -1999-05-19,79.87,79.87,77.25,79.31,46510800,30.93 -1999-05-18,79.81,80.25,77.94,78.69,63858400,30.69 -1999-05-17,77.37,79.56,77.00,79.12,66850200,30.86 -1999-05-14,78.87,79.94,76.62,76.87,84401000,29.98 -1999-05-13,81.12,81.75,79.12,79.12,51737200,30.86 -1999-05-12,80.75,81.00,79.25,80.50,60142600,31.39 -1999-05-11,80.75,81.02,79.44,79.87,42786200,31.15 -1999-05-10,79.87,80.50,78.25,79.69,46218000,31.08 -1999-05-07,79.62,80.37,78.00,79.06,48011600,30.83 -1999-05-06,80.69,81.12,77.50,77.94,74021000,30.40 -1999-05-05,79.12,79.87,76.44,79.12,67028200,30.86 -1999-05-04,80.50,81.81,77.75,78.06,66502200,30.44 -1999-05-03,81.44,81.50,78.56,79.87,67180000,31.15 -1999-04-30,82.75,83.75,79.87,81.31,58558600,31.71 -1999-04-29,82.37,83.69,80.41,82.06,60880600,32.00 -1999-04-28,85.31,86.50,81.72,82.12,55963400,32.03 -1999-04-27,88.75,88.75,83.94,84.00,58665800,32.76 -1999-04-26,87.19,88.94,86.75,88.00,48349800,34.32 -1999-04-23,85.00,87.00,83.00,86.00,56592000,33.54 -1999-04-22,85.00,85.25,83.37,84.94,55096400,33.13 -1999-04-21,82.12,82.50,80.00,82.00,92732800,31.98 -1999-04-20,82.25,84.00,80.00,83.12,108459400,32.42 -1999-04-19,86.87,88.12,80.37,81.00,75389000,31.59 -1999-04-16,89.06,89.12,85.87,86.62,44774000,33.78 -1999-04-15,87.31,89.87,83.87,88.87,72594600,34.66 -1999-04-14,90.81,91.12,85.87,85.87,52944000,33.49 -1999-04-13,93.12,93.12,89.19,90.12,46746800,35.15 -1999-04-12,91.62,93.62,91.37,93.00,37858800,36.27 -1999-04-09,94.25,95.00,93.00,94.25,31816800,36.76 -1999-04-08,93.25,94.62,91.00,94.56,38637000,36.88 -1999-04-07,94.87,95.00,91.25,93.31,46910200,36.39 -1999-04-06,95.19,95.62,93.25,94.06,39674800,36.68 -1999-04-05,94.31,95.02,93.50,94.94,39848600,37.03 -1999-04-01,91.25,92.87,90.27,92.69,41106000,36.15 -1999-03-31,94.50,94.62,89.12,89.62,58752600,34.95 -1999-03-30,93.37,93.50,92.25,93.00,67502400,36.27 -1999-03-29,90.12,92.62,87.87,92.37,79777000,36.02 -1999-03-26,178.94,180.38,175.75,178.13,94687600,34.73 -1999-03-25,173.06,180.06,172.50,179.94,109447600,35.09 -1999-03-24,167.00,171.81,163.13,171.25,82634400,33.39 -1999-03-23,172.69,174.13,166.25,166.56,69581200,32.48 -1999-03-22,172.94,174.94,172.00,172.81,55719200,33.70 -1999-03-19,173.88,174.13,169.88,171.19,91980400,33.38 -1999-03-18,166.44,172.56,166.19,172.44,56231200,33.62 -1999-03-17,169.06,169.44,166.75,167.13,44919600,32.59 -1999-03-16,165.50,170.00,164.25,169.06,68554000,32.97 -1999-03-15,160.56,166.00,157.88,165.88,60609600,32.35 -1999-03-12,162.63,162.75,156.81,160.19,73395200,31.24 -1999-03-11,161.00,164.56,159.31,161.44,62948400,31.48 -1999-03-10,162.31,162.50,159.19,161.38,53114800,31.47 -1999-03-09,159.88,164.75,159.75,161.81,90129600,31.55 -1999-03-08,155.50,159.23,155.00,159.00,46726000,31.00 -1999-03-05,154.75,155.38,153.13,154.94,47302800,30.21 -1999-03-04,151.13,153.50,148.13,152.25,61696400,29.69 -1999-03-03,149.00,150.69,147.06,149.63,76798400,29.18 -1999-03-02,151.88,154.13,147.63,148.56,58569600,28.97 -1999-03-01,149.56,152.56,149.50,151.75,58332000,29.59 -1999-02-26,152.38,152.50,149.50,150.13,59273200,29.27 -1999-02-25,152.38,153.75,149.63,153.50,70817200,29.93 -1999-02-24,156.44,159.38,152.75,152.88,67696800,29.81 -1999-02-23,152.94,155.63,150.50,155.44,95106800,30.31 -1999-02-22,148.25,149.00,144.75,148.81,92514400,29.02 -1999-02-19,147.44,149.25,145.75,147.75,73085600,28.81 -1999-02-18,150.94,151.38,143.98,145.75,117035200,28.42 -1999-02-17,152.94,154.13,148.50,150.00,101215600,29.25 -1999-02-16,159.75,159.88,154.56,156.25,73666800,30.47 -1999-02-12,161.69,163.69,157.13,157.75,62930400,30.76 -1999-02-11,162.75,163.88,160.38,162.75,60366000,31.74 -1999-02-10,159.88,164.38,158.63,160.63,73694000,31.32 -1999-02-09,164.94,166.75,159.75,160.06,77293600,31.21 -1999-02-08,162.56,165.56,161.63,165.25,109866800,32.22 -1999-02-05,160.25,161.63,154.88,160.00,127945200,31.20 -1999-02-04,168.13,168.38,158.88,159.06,89151600,31.02 -1999-02-03,166.38,169.88,166.00,166.81,73749200,32.53 -1999-02-02,172.50,172.56,166.25,167.63,91965600,32.69 -1999-02-01,175.44,175.94,170.81,172.94,81729200,33.72 -1999-01-29,174.75,175.13,170.88,175.00,79571600,34.12 -1999-01-28,171.75,174.06,169.81,174.00,78838400,33.93 -1999-01-27,172.50,174.44,168.50,168.63,98048000,32.88 -1999-01-26,165.50,171.75,164.50,171.56,120203200,33.45 -1999-01-25,161.69,163.31,159.13,161.88,103076400,31.57 -1999-01-22,155.63,160.23,155.25,156.25,82160000,30.47 -1999-01-21,161.75,163.31,157.75,158.31,80077200,30.87 -1999-01-20,166.94,167.75,162.48,162.63,125481200,31.71 -1999-01-19,151.38,158.38,150.88,155.63,102741600,30.35 -1999-01-15,142.94,150.00,141.38,149.75,59344000,29.20 -1999-01-14,145.25,145.56,141.50,141.75,59214000,27.64 -1999-01-13,136.00,147.75,136.00,143.81,75346000,28.04 -1999-01-12,148.13,148.13,141.00,142.19,57907200,27.73 -1999-01-11,150.88,150.94,144.25,147.50,46463200,28.76 -1999-01-08,152.19,152.50,147.00,149.88,50244800,29.23 -1999-01-07,149.75,150.63,148.25,150.50,51150400,29.35 -1999-01-06,149.50,151.50,146.75,151.25,69064800,29.49 -1999-01-05,141.88,148.00,141.44,146.50,64281600,28.57 -1999-01-04,139.61,145.25,139.38,141.00,69305200,27.49 -1998-12-31,139.19,140.00,138.00,138.69,23834400,27.04 -1998-12-30,140.88,143.36,138.88,139.00,34942800,27.10 -1998-12-29,142.56,142.56,139.63,140.50,29651600,27.40 -1998-12-28,143.00,143.63,141.50,142.38,23636400,27.76 -1998-12-24,143.63,144.00,141.50,141.75,13832400,27.64 -1998-12-23,140.38,143.81,139.38,143.56,34940000,27.99 -1998-12-22,140.50,140.50,137.38,138.44,41350000,27.00 -1998-12-21,138.63,142.19,137.75,140.44,48112000,27.39 -1998-12-18,135.00,138.25,134.13,137.81,59648000,26.87 -1998-12-17,134.19,134.88,132.25,134.38,46963600,26.20 -1998-12-16,132.50,135.13,129.13,133.75,60024000,26.08 -1998-12-15,129.31,132.00,129.25,131.88,51719600,25.72 -1998-12-14,132.75,133.75,127.69,127.94,64077600,24.95 -1998-12-11,131.00,134.69,130.75,134.00,51728800,26.13 -1998-12-10,133.13,134.63,131.38,131.56,57015600,25.65 -1998-12-09,132.13,133.81,130.00,133.63,44781600,26.06 -1998-12-08,132.88,134.25,129.75,131.19,77585200,25.58 -1998-12-07,127.69,133.75,126.75,133.56,89809200,26.04 -1998-12-04,124.94,127.37,124.00,127.37,44352000,24.84 -1998-12-03,126.87,128.94,122.00,122.12,51426800,23.81 -1998-12-02,129.19,129.75,125.50,126.75,65759600,24.72 -1998-12-01,120.25,129.75,120.12,129.50,86330800,25.25 -1998-11-30,129.38,130.27,121.94,122.00,70900000,23.79 -1998-11-27,125.12,128.13,124.31,128.06,26335600,24.97 -1998-11-25,122.69,124.37,120.75,124.25,41394000,24.23 -1998-11-24,118.69,125.06,118.62,121.69,101114800,23.73 -1998-11-23,112.50,120.19,112.50,119.19,110870400,23.24 -1998-11-20,112.75,113.75,111.25,113.62,48405200,22.16 -1998-11-19,109.06,112.50,109.06,111.75,45220800,21.79 -1998-11-18,109.56,111.06,109.12,109.75,41691200,21.40 -1998-11-17,109.00,112.37,108.94,111.87,58744000,21.81 -1998-11-16,111.31,111.75,107.50,108.81,42620400,21.22 -1998-11-13,108.44,110.50,108.37,110.00,28368800,21.45 -1998-11-12,110.25,111.12,108.50,108.75,38526800,21.21 -1998-11-11,113.44,114.75,110.87,111.06,63899200,21.66 -1998-11-10,110.12,113.44,110.06,112.06,72075600,21.85 -1998-11-09,109.19,111.37,108.81,110.69,68956800,21.58 -1998-11-06,106.06,109.75,105.94,109.31,74461200,21.31 -1998-11-05,105.31,107.62,105.25,106.37,76727200,20.74 -1998-11-04,105.81,107.31,104.87,105.50,67459600,20.57 -1998-11-03,105.50,106.56,104.75,105.19,36546800,20.51 -1998-11-02,106.37,106.87,105.00,105.81,48388400,20.63 -1998-10-30,107.25,108.19,105.12,105.87,59322800,20.64 -1998-10-29,105.44,107.50,105.44,106.62,52402800,20.79 -1998-10-28,104.87,106.62,104.87,105.69,56808400,20.61 -1998-10-27,107.75,107.87,105.00,105.44,65434800,20.56 -1998-10-26,106.81,108.00,105.69,107.06,59678400,20.88 -1998-10-23,109.00,110.00,106.19,106.37,59882000,20.74 -1998-10-22,106.00,110.12,105.25,110.00,81910800,21.45 -1998-10-21,104.87,106.87,103.06,106.44,125377200,20.76 -1998-10-20,103.25,103.37,99.62,100.25,94368400,19.55 -1998-10-19,104.12,104.19,101.12,102.94,60177600,20.07 -1998-10-16,106.00,106.50,104.00,105.06,68620000,20.49 -1998-10-15,100.12,105.62,99.62,105.44,66253600,20.56 -1998-10-14,95.87,101.37,95.87,100.19,62403200,19.54 -1998-10-13,99.50,99.75,95.75,96.44,47995600,18.81 -1998-10-12,99.25,101.00,98.50,99.75,51502800,19.45 -1998-10-09,93.19,97.00,92.25,96.87,72661600,18.89 -1998-10-08,90.56,91.87,87.75,91.19,144719200,17.78 -1998-10-07,97.37,99.75,93.37,94.12,90710400,18.35 -1998-10-06,102.50,103.62,97.37,97.62,76550000,19.04 -1998-10-05,102.50,102.87,96.50,101.19,114937600,19.73 -1998-10-02,103.37,105.19,101.00,104.12,65889600,20.30 -1998-10-01,108.06,109.50,104.00,104.06,65442400,20.29 -1998-09-30,112.31,113.56,110.03,110.06,38875600,21.46 -1998-09-29,111.81,114.00,111.37,112.87,48743200,22.01 -1998-09-28,113.00,114.37,109.75,111.31,41405200,21.70 -1998-09-25,109.12,113.12,108.62,113.06,47878400,22.05 -1998-09-24,113.12,114.62,109.00,110.12,63521600,21.47 -1998-09-23,109.62,113.87,108.50,113.62,65263600,22.16 -1998-09-22,108.44,109.87,106.75,109.19,43082000,21.29 -1998-09-21,102.50,108.06,102.37,107.87,45872000,21.03 -1998-09-18,105.75,106.25,104.31,105.37,47361600,20.55 -1998-09-17,105.31,106.50,104.81,104.94,45178400,20.46 -1998-09-16,107.87,108.50,106.12,108.19,42886800,21.10 -1998-09-15,105.87,108.44,105.12,108.31,49367600,21.12 -1998-09-14,104.94,107.06,104.87,106.00,45086800,20.67 -1998-09-11,101.12,104.62,100.12,104.25,58989200,20.33 -1998-09-10,100.00,101.12,98.69,100.75,60758000,19.65 -1998-09-09,102.25,104.44,101.62,102.25,65480800,19.94 -1998-09-08,100.00,102.06,99.06,101.97,60625600,19.88 -1998-09-04,99.69,100.25,96.12,96.62,50890400,18.84 -1998-09-03,98.75,100.75,98.37,99.25,67506800,19.35 -1998-09-02,101.81,104.25,100.25,100.56,63438400,19.61 -1998-09-01,95.25,101.75,94.50,101.25,140112400,19.74 -1998-08-31,104.87,106.50,95.75,95.94,132690400,18.71 -1998-08-28,108.25,109.62,104.75,105.25,72730000,20.52 -1998-08-27,110.56,112.75,108.50,109.25,74874000,21.30 -1998-08-26,111.25,113.75,110.87,112.56,44804400,21.95 -1998-08-25,111.37,113.69,111.12,112.81,58026800,22.00 -1998-08-24,110.31,112.00,110.00,110.37,26319200,21.52 -1998-08-21,111.12,111.87,108.75,110.62,59523600,21.57 -1998-08-20,110.12,112.75,109.69,112.56,49970400,21.95 -1998-08-19,112.25,112.75,110.25,110.56,55709600,21.56 -1998-08-18,107.87,111.81,107.37,111.25,70591200,21.69 -1998-08-17,103.50,107.37,103.00,107.31,54073200,20.92 -1998-08-14,104.69,105.06,103.50,104.25,29566400,20.33 -1998-08-13,104.12,106.00,103.75,103.94,51193200,20.27 -1998-08-12,104.31,105.19,103.00,105.06,53760000,20.49 -1998-08-11,102.87,104.37,102.00,103.44,60976400,20.17 -1998-08-10,105.81,106.31,104.44,104.44,46763200,20.37 -1998-08-07,107.44,107.50,105.06,105.87,54972400,20.64 -1998-08-06,103.75,106.94,103.62,106.87,68308000,20.84 -1998-08-05,104.12,106.25,101.50,104.31,120208800,20.34 -1998-08-04,108.62,109.62,104.19,104.50,91412000,20.38 -1998-08-03,109.12,110.87,107.37,108.44,73566400,21.15 -1998-07-31,112.94,113.52,109.94,109.94,53705200,21.44 -1998-07-30,111.94,113.62,110.75,113.44,72746400,22.12 -1998-07-29,113.25,114.25,110.06,110.69,59738000,21.58 -1998-07-28,116.00,116.87,112.00,112.25,78378400,21.89 -1998-07-27,113.12,116.75,110.69,116.75,58998000,22.77 -1998-07-24,113.75,115.62,112.50,113.81,60366400,22.19 -1998-07-23,116.31,117.50,113.00,113.00,51029600,22.03 -1998-07-22,112.00,117.25,111.87,116.75,71654400,22.77 -1998-07-21,116.87,119.00,112.50,112.81,74605200,22.00 -1998-07-20,118.19,119.50,116.81,117.00,45794800,22.81 -1998-07-17,117.50,119.62,115.94,117.94,83108400,23.00 -1998-07-16,118.06,118.87,116.62,117.37,65125200,22.89 -1998-07-15,116.00,118.00,115.62,117.37,48690000,22.89 -1998-07-14,118.25,118.75,115.50,116.50,56972400,22.72 -1998-07-13,114.12,118.25,113.62,117.56,69223200,22.92 -1998-07-10,111.12,113.25,109.87,113.19,45396800,22.07 -1998-07-09,110.00,112.00,109.75,111.00,43690000,21.64 -1998-07-08,108.12,110.12,106.75,109.87,41553600,21.42 -1998-07-07,107.81,108.56,106.50,107.94,32422800,21.05 -1998-07-06,106.87,108.06,105.37,107.81,35307600,21.02 -1998-07-02,108.81,109.12,107.12,107.25,27321200,20.91 -1998-07-01,109.12,110.12,107.19,109.37,53470400,21.33 -1998-06-30,105.25,108.56,104.62,108.37,77010000,21.13 -1998-06-29,105.50,107.69,105.25,107.44,65906000,20.95 -1998-06-26,102.25,104.62,102.00,104.44,55680400,20.37 -1998-06-25,105.87,106.87,101.37,101.56,88969600,19.80 -1998-06-24,101.69,105.12,99.94,104.94,105724800,20.46 -1998-06-23,95.81,100.87,95.25,100.75,124675200,19.65 -1998-06-22,94.75,95.94,93.69,95.81,48969600,18.68 -1998-06-19,92.87,94.75,92.50,94.69,91226800,18.46 -1998-06-18,90.81,91.75,90.37,91.19,39228400,17.78 -1998-06-17,89.94,92.37,89.75,91.06,76147600,17.76 -1998-06-16,86.31,89.94,85.50,89.87,61138400,17.52 -1998-06-15,84.69,87.31,84.56,85.94,42846000,16.76 -1998-06-12,84.87,86.12,84.00,85.75,41323600,16.72 -1998-06-11,86.44,87.12,85.12,85.31,41271200,16.64 -1998-06-10,86.62,88.37,85.87,86.00,33290400,16.77 -1998-06-09,85.31,87.56,85.25,87.06,35690400,16.98 -1998-06-08,85.62,86.31,85.00,85.69,18886400,16.71 -1998-06-05,85.87,86.50,84.75,86.25,34431600,16.82 -1998-06-04,84.69,86.12,83.62,86.06,33717600,16.78 -1998-06-03,85.87,86.44,84.12,84.31,36010800,16.44 -1998-06-02,84.06,85.94,83.87,85.50,38570800,16.67 -1998-06-01,83.87,84.61,83.12,83.75,42436800,16.33 -1998-05-29,86.37,86.50,84.75,84.81,34091200,16.54 -1998-05-28,85.75,86.37,85.06,86.31,30746800,16.83 -1998-05-27,82.87,86.12,82.87,86.00,58574400,16.77 -1998-05-26,85.31,86.19,83.50,83.62,44473600,16.31 -1998-05-22,86.62,86.75,85.44,85.56,36129200,16.68 -1998-05-21,85.81,87.37,85.50,86.37,36680000,16.84 -1998-05-20,86.12,86.87,85.37,85.75,35698800,16.72 -1998-05-19,85.81,86.94,85.56,86.50,52234400,16.87 -1998-05-18,84.50,86.50,84.50,86.06,80395600,16.78 -1998-05-15,90.12,90.19,88.75,89.44,48150800,17.44 -1998-05-14,85.87,91.00,85.81,88.94,94774400,17.34 -1998-05-13,88.69,88.75,86.50,86.94,80680400,16.95 -1998-05-12,83.25,85.75,83.25,85.69,64147200,16.71 -1998-05-11,86.12,86.19,84.06,84.25,51474400,16.43 -1998-05-08,81.87,86.12,81.87,85.75,96274800,16.72 -1998-05-07,86.19,86.25,83.19,83.37,78022000,16.26 -1998-05-06,87.50,87.50,86.00,86.37,48110800,16.84 -1998-05-05,87.62,89.56,87.00,87.75,50828000,17.11 -1998-05-04,89.19,89.87,87.94,88.06,37899600,17.17 -1998-05-01,90.19,90.50,88.12,89.62,35996000,17.48 -1998-04-30,91.50,91.62,89.69,90.12,54473600,17.57 -1998-04-29,90.06,91.50,89.62,90.50,50061600,17.65 -1998-04-28,92.12,92.25,89.02,89.87,56668000,17.52 -1998-04-27,89.50,90.53,88.50,90.31,58752000,17.61 -1998-04-24,93.50,94.75,91.87,92.12,51436000,17.96 -1998-04-23,97.25,97.37,94.14,94.50,64215200,18.43 -1998-04-22,96.00,99.12,95.62,98.87,80154000,19.28 -1998-04-21,94.69,95.00,93.12,94.87,51938400,18.50 -1998-04-20,92.37,95.00,92.19,94.62,45535200,18.45 -1998-04-17,91.50,92.25,90.31,92.12,37402800,17.96 -1998-04-16,90.37,92.06,90.19,91.69,39695600,17.88 -1998-04-15,89.25,91.37,88.87,91.37,40498400,17.82 -1998-04-14,88.69,89.56,87.50,88.44,28476800,17.25 -1998-04-13,88.81,89.00,86.75,88.62,33156400,17.28 -1998-04-09,87.94,89.62,87.50,89.00,33619200,17.35 -1998-04-08,86.75,89.00,86.62,88.94,36793200,17.34 -1998-04-07,89.31,90.62,86.75,87.25,62630800,17.01 -1998-04-06,92.62,92.62,89.06,89.94,74232000,17.54 -1998-04-03,92.00,93.06,91.50,93.00,40987600,18.13 -1998-04-02,90.69,91.94,89.87,91.31,41414800,17.80 -1998-04-01,89.81,90.62,88.50,90.37,36835600,17.62 -1998-03-31,88.62,89.75,88.50,89.50,38177200,17.45 -1998-03-30,88.06,88.62,87.12,87.94,27463200,17.15 -1998-03-27,89.37,89.37,87.56,87.81,38924000,17.12 -1998-03-26,88.50,89.56,87.50,88.25,45441200,17.21 -1998-03-25,90.50,90.94,87.25,88.81,124244800,17.32 -1998-03-24,84.19,85.06,83.44,84.94,32281600,16.56 -1998-03-23,81.19,84.62,81.06,83.87,55050000,16.35 -1998-03-20,82.12,83.00,80.50,81.81,56310000,15.95 -1998-03-19,81.50,82.31,81.25,82.00,30299200,15.99 -1998-03-18,80.06,81.81,79.87,81.75,33887600,15.94 -1998-03-17,81.69,81.69,79.69,80.37,53842400,15.67 -1998-03-16,82.44,82.75,81.37,82.00,27979600,15.99 -1998-03-13,82.44,83.00,81.56,82.37,32542400,16.06 -1998-03-12,82.50,82.62,80.81,81.87,47962000,15.96 -1998-03-11,82.00,82.00,79.75,80.69,39838800,15.73 -1998-03-10,81.19,81.50,79.94,81.50,47406400,15.89 -1998-03-09,82.50,82.50,79.50,79.59,52256000,15.52 -1998-03-06,80.31,82.75,80.25,82.75,51404800,16.14 -1998-03-05,79.25,81.44,79.25,80.06,92255600,15.61 -1998-03-04,82.44,83.81,81.56,82.31,71513600,16.05 -1998-03-03,82.62,84.56,82.56,84.50,50753600,16.48 -1998-03-02,85.87,85.87,83.06,83.31,50093600,16.25 -1998-02-27,85.56,86.00,84.56,84.75,47532400,16.53 -1998-02-26,85.50,85.69,84.44,85.50,61388000,16.67 -1998-02-25,83.44,85.00,83.06,84.94,94944400,16.56 -1998-02-24,83.37,84.94,81.87,82.12,118302000,16.01 -1998-02-23,80.94,81.69,79.37,81.62,120803600,15.92 -1998-02-20,155.50,155.75,152.88,155.13,86092000,15.12 -1998-02-19,155.50,156.06,154.25,154.88,73773600,15.10 -1998-02-18,154.63,156.00,153.75,154.63,76608800,15.08 -1998-02-17,158.50,158.50,153.88,154.38,85673600,15.05 -1998-02-13,158.63,158.75,157.38,157.50,42203200,15.36 -1998-02-12,158.06,158.94,156.44,158.75,76658400,15.48 -1998-02-11,159.38,160.06,157.06,158.94,76460000,15.50 -1998-02-10,157.25,159.50,156.75,159.25,48099200,15.53 -1998-02-09,158.75,158.88,155.63,157.19,54681600,15.33 -1998-02-06,155.38,158.25,155.13,158.13,50070400,15.42 -1998-02-05,158.13,158.75,154.75,155.44,67014400,15.16 -1998-02-04,155.88,158.00,155.06,156.81,61940800,15.29 -1998-02-03,155.13,156.13,153.81,155.88,61374400,15.20 -1998-02-02,151.75,155.13,150.50,154.88,98397600,15.10 -1998-01-30,148.63,150.00,147.63,149.19,50071200,14.55 -1998-01-29,148.94,150.13,147.50,148.25,73571200,14.45 -1998-01-28,146.25,149.50,145.50,149.00,79387200,14.53 -1998-01-27,142.38,145.88,141.56,145.19,97540800,14.16 -1998-01-26,139.88,141.88,138.45,141.75,74277600,13.82 -1998-01-23,138.75,139.44,136.70,138.25,63312000,13.48 -1998-01-22,135.56,139.88,135.31,138.63,159139200,13.52 -1998-01-21,137.25,138.44,135.63,137.00,85567200,13.36 -1998-01-20,134.13,138.00,134.00,137.81,64956000,13.44 -1998-01-16,132.38,135.38,132.31,135.25,72943200,13.19 -1998-01-15,130.38,133.00,129.88,132.31,50622400,12.90 -1998-01-14,132.13,132.50,129.25,131.13,54774400,12.78 -1998-01-13,129.50,132.25,128.13,132.13,66945600,12.88 -1998-01-12,124.62,130.00,124.37,129.50,78393600,12.63 -1998-01-09,130.06,131.50,125.87,127.00,87534400,12.38 -1998-01-08,128.63,132.13,127.50,130.50,77619200,12.72 -1998-01-07,129.88,131.19,127.50,129.56,61492800,12.63 -1998-01-06,129.75,133.00,129.25,131.13,67834400,12.78 -1998-01-05,131.25,133.63,127.87,130.38,80377600,12.71 -1998-01-02,129.63,131.50,129.50,131.13,39748000,12.78 -1997-12-31,131.00,131.50,129.00,129.25,46147200,12.60 -1997-12-30,126.44,131.00,126.25,130.25,77864800,12.70 -1997-12-29,122.37,126.75,122.12,126.31,67815200,12.31 -1997-12-26,118.87,120.75,118.75,120.75,32388800,11.77 -1997-12-24,123.75,123.87,118.00,118.94,88411200,11.60 -1997-12-23,127.06,128.25,123.00,123.31,67195200,12.02 -1997-12-22,129.13,130.00,125.87,127.00,59063200,12.38 -1997-12-19,128.75,130.19,126.25,128.69,138065600,12.55 -1997-12-18,134.50,134.75,130.38,130.88,98774400,12.76 -1997-12-17,139.88,140.38,135.50,135.63,51472000,13.22 -1997-12-16,135.88,140.38,135.00,139.06,65401600,13.56 -1997-12-15,136.44,137.00,133.00,136.13,84305600,13.27 -1997-12-12,137.75,138.50,136.00,136.75,54308000,13.33 -1997-12-11,140.38,141.00,138.88,139.06,70189600,13.56 -1997-12-10,142.25,143.25,141.00,142.25,66434400,13.87 -1997-12-09,145.00,145.38,143.50,144.31,51782400,14.07 -1997-12-08,143.50,146.63,143.13,146.13,49952800,14.25 -1997-12-05,142.13,144.75,142.13,143.13,48136000,13.95 -1997-12-04,144.75,145.88,142.25,142.56,62630400,13.90 -1997-12-03,141.69,145.06,141.00,144.69,57712000,14.11 -1997-12-02,143.56,144.88,142.00,142.25,50167200,13.87 -1997-12-01,141.94,144.00,141.63,143.81,49006400,14.02 -1997-11-28,141.25,142.25,141.13,141.50,17392800,13.80 -1997-11-26,139.00,141.88,138.25,141.56,63053600,13.80 -1997-11-25,135.88,139.25,135.75,139.00,56463200,13.55 -1997-11-24,137.13,138.13,135.50,135.50,39084000,13.21 -1997-11-21,137.81,138.00,136.38,137.88,68220800,13.44 -1997-11-20,135.25,137.13,134.88,136.88,53680800,13.35 -1997-11-19,133.63,135.13,133.38,135.06,31720800,13.17 -1997-11-18,134.94,135.50,133.75,134.00,36683200,13.06 -1997-11-17,134.50,135.81,133.44,134.88,60094400,13.15 -1997-11-14,131.63,133.88,131.38,133.31,46663200,13.00 -1997-11-13,130.06,131.63,129.19,131.56,60094400,12.83 -1997-11-12,130.13,131.00,129.00,129.19,45784000,12.60 -1997-11-11,130.44,131.44,129.38,130.63,37013600,12.74 -1997-11-10,131.63,132.50,129.75,130.19,36764800,12.69 -1997-11-07,130.06,132.00,129.88,131.56,63628800,12.83 -1997-11-06,133.25,133.50,131.75,132.06,40266400,12.88 -1997-11-05,134.50,134.63,132.50,133.56,42512800,13.02 -1997-11-04,134.00,134.94,133.19,134.25,49134400,13.09 -1997-11-03,131.63,134.25,131.31,134.13,67714400,13.08 -1997-10-31,131.00,131.50,129.63,130.00,46808800,12.67 -1997-10-30,129.50,131.38,128.50,128.63,72097600,12.54 -1997-10-29,133.75,135.06,130.13,130.88,85532800,12.76 -1997-10-28,132.25,135.00,123.50,133.38,160057600,13.00 -1997-10-27,134.88,136.25,128.63,128.88,96795200,12.57 -1997-10-24,136.88,137.25,133.25,135.38,70030400,13.20 -1997-10-23,132.00,137.25,132.00,135.63,66413600,13.22 -1997-10-22,138.38,138.50,135.38,135.69,55775200,13.23 -1997-10-21,136.13,139.23,135.31,138.50,115682400,13.50 -1997-10-20,133.00,135.25,127.50,132.63,154052800,12.93 -1997-10-17,133.13,134.63,130.38,132.25,87720000,12.89 -1997-10-16,136.13,136.63,132.25,133.91,47327200,13.06 -1997-10-15,135.75,136.00,134.88,135.75,45003200,13.24 -1997-10-14,137.13,137.38,135.38,136.69,33361600,13.33 -1997-10-13,137.00,137.88,136.56,136.75,19051200,13.33 -1997-10-10,138.31,138.75,136.25,136.50,24893600,13.31 -1997-10-09,138.50,139.63,138.13,138.94,34672800,13.55 -1997-10-08,136.63,139.06,136.25,139.00,71196800,13.55 -1997-10-07,135.00,137.69,134.63,136.56,54548800,13.31 -1997-10-06,135.88,136.25,134.25,135.13,41776800,13.17 -1997-10-03,134.94,136.25,133.38,134.94,60284800,13.16 -1997-10-02,133.75,134.63,132.75,133.19,28831200,12.99 -1997-10-01,132.50,134.50,131.38,133.88,61466400,13.05 -1997-09-30,134.44,135.75,132.25,132.31,43892800,12.90 -1997-09-29,133.50,134.75,132.88,134.50,27505600,13.11 -1997-09-26,133.63,133.75,131.63,133.38,36652000,13.00 -1997-09-25,132.88,134.13,132.06,132.75,39272000,12.94 -1997-09-24,135.63,136.06,132.13,132.44,60040000,12.91 -1997-09-23,133.56,135.50,133.13,135.50,39946400,13.21 -1997-09-22,135.00,135.88,133.19,133.31,43251200,13.00 -1997-09-19,132.25,135.25,132.00,135.19,77435200,13.18 -1997-09-18,134.25,135.13,131.44,132.25,61077600,12.89 -1997-09-17,136.63,136.75,132.63,133.19,61609600,12.99 -1997-09-16,131.75,137.00,131.00,136.38,102538400,13.30 -1997-09-15,135.63,137.25,130.63,130.69,129003200,12.74 -1997-09-12,136.88,138.38,135.63,137.94,48576000,13.45 -1997-09-11,135.00,137.38,132.88,136.81,61779200,13.34 -1997-09-10,138.88,139.13,135.06,135.13,53294400,13.17 -1997-09-09,139.25,140.25,138.38,139.50,39465600,13.60 -1997-09-08,137.75,139.81,137.75,139.31,42416000,13.58 -1997-09-05,139.06,139.69,136.25,137.31,48398400,13.39 -1997-09-04,136.00,138.50,135.75,138.19,44476000,13.47 -1997-09-03,137.63,138.88,136.19,136.56,42872800,13.31 -1997-09-02,133.13,137.50,133.00,137.19,50112800,13.38 -1997-08-29,132.06,133.88,131.75,132.19,37857600,12.89 -1997-08-28,133.50,133.75,132.00,132.06,43641600,12.88 -1997-08-27,135.25,135.31,133.00,134.56,49371200,13.12 -1997-08-26,136.00,136.88,134.75,135.00,34327200,13.16 -1997-08-25,137.88,139.00,135.63,136.50,38856800,13.31 -1997-08-22,135.25,137.50,134.13,137.25,72161600,13.38 -1997-08-21,141.63,142.38,137.50,137.88,64412000,13.44 -1997-08-20,139.00,140.69,137.00,140.56,51433600,13.70 -1997-08-19,134.75,139.00,134.63,138.81,91013600,13.53 -1997-08-18,133.00,133.88,131.00,133.88,69969600,13.05 -1997-08-15,135.50,136.00,132.75,132.88,51078400,12.96 -1997-08-14,136.00,136.75,134.13,136.25,45900800,13.28 -1997-08-13,138.13,138.25,134.75,136.06,66731200,13.27 -1997-08-12,139.38,139.75,135.81,136.00,60887200,13.26 -1997-08-11,140.00,140.25,136.38,138.25,72696000,13.48 -1997-08-08,142.81,143.13,140.00,140.00,66815200,13.65 -1997-08-07,144.31,144.38,142.00,143.94,43947200,14.03 -1997-08-06,143.31,144.63,142.25,143.44,43410400,13.99 -1997-08-05,142.25,144.38,142.00,143.31,59333600,13.97 -1997-08-04,140.25,142.00,139.44,141.56,46312800,13.80 -1997-08-01,141.38,141.81,139.19,140.63,58912800,13.71 -1997-07-31,142.00,142.13,140.88,141.38,42240800,13.78 -1997-07-30,140.75,142.00,139.63,141.13,78324000,13.76 -1997-07-29,136.75,140.06,136.13,139.94,79061600,13.64 -1997-07-28,139.25,139.38,135.75,137.00,56404000,13.36 -1997-07-25,138.50,142.25,137.25,138.50,90308800,13.50 -1997-07-24,138.38,140.38,135.63,138.00,141855200,13.45 -1997-07-23,145.25,146.88,141.00,141.44,95556000,13.79 -1997-07-22,136.88,144.81,136.75,144.13,101384000,14.05 -1997-07-21,140.88,141.00,133.75,135.94,127223200,13.25 -1997-07-18,145.00,147.38,140.00,140.50,158927200,13.70 -1997-07-17,150.50,150.75,146.50,149.50,131668000,14.58 -1997-07-16,142.38,149.50,140.00,148.44,111217600,14.47 -1997-07-15,138.06,139.25,136.63,138.47,75503200,13.50 -1997-07-14,130.81,136.00,130.50,135.94,57424000,13.25 -1997-07-11,130.25,131.06,128.44,129.75,38094400,12.65 -1997-07-10,130.50,131.25,128.88,129.88,43780800,12.66 -1997-07-09,132.50,132.63,129.50,130.75,48266400,12.75 -1997-07-08,129.38,131.31,128.94,131.25,36007200,12.80 -1997-07-07,130.63,131.75,129.38,129.50,39320000,12.63 -1997-07-03,130.06,130.06,128.50,129.56,28764000,12.63 -1997-07-02,125.62,128.50,124.06,128.38,53237600,12.52 -1997-07-01,126.44,126.87,123.25,124.94,59377600,12.18 -1997-06-30,127.87,128.75,126.19,126.37,38286400,12.32 -1997-06-27,129.13,130.00,127.25,127.50,38198400,12.43 -1997-06-26,130.13,130.81,127.87,128.25,37312000,12.50 -1997-06-25,132.88,133.25,129.81,130.44,49576000,12.72 -1997-06-24,129.50,132.13,128.38,132.06,39319200,12.88 -1997-06-23,129.88,131.50,128.00,128.06,35724800,12.49 -1997-06-20,129.38,131.38,128.50,129.88,64240000,12.66 -1997-06-19,128.38,130.75,128.00,129.31,65519200,12.61 -1997-06-18,133.25,133.50,130.06,130.19,55657600,12.69 -1997-06-17,131.50,134.94,130.88,134.19,53191200,13.08 -1997-06-16,129.63,131.38,128.88,131.38,40612800,12.81 -1997-06-13,126.75,130.06,126.56,129.63,50116000,12.64 -1997-06-12,126.75,128.13,125.37,127.00,44614400,12.38 -1997-06-11,124.81,127.37,123.56,127.00,49056800,12.38 -1997-06-10,125.12,127.06,123.75,124.81,53135200,12.17 -1997-06-09,124.87,126.12,122.50,125.12,48200000,12.20 -1997-06-06,121.37,124.31,121.00,124.06,35964000,12.10 -1997-06-05,120.27,121.50,119.50,120.56,35892000,11.75 -1997-06-04,120.62,122.25,118.25,119.19,54639200,11.62 -1997-06-03,123.37,123.50,120.62,120.75,41995200,11.77 -1997-06-02,125.00,125.50,123.12,124.37,38939200,12.13 -1997-05-30,117.50,125.62,117.50,124.00,83337600,12.09 -1997-05-29,127.25,129.06,125.00,125.87,51111200,12.27 -1997-05-28,127.25,127.25,124.87,125.87,52241600,12.27 -1997-05-27,122.75,127.37,122.37,126.62,69036000,12.35 -1997-05-23,121.37,123.00,120.87,122.87,28904800,11.98 -1997-05-22,121.00,121.62,119.75,120.62,33655200,11.76 -1997-05-21,120.62,122.94,119.75,120.37,76620000,11.74 -1997-05-20,115.87,119.25,115.25,119.12,64876800,11.61 -1997-05-19,116.12,117.12,115.12,115.12,45632000,11.22 -1997-05-16,116.37,117.00,114.87,115.44,59913600,11.26 -1997-05-15,116.00,117.87,115.87,117.12,41861600,11.42 -1997-05-14,118.37,118.62,115.62,115.87,60744800,11.30 -1997-05-13,118.37,119.25,116.87,117.75,49813600,11.48 -1997-05-12,117.50,118.50,117.00,118.12,42976000,11.52 -1997-05-09,118.00,118.50,115.75,116.75,58392000,11.38 -1997-05-08,115.25,118.12,115.12,116.37,53834400,11.35 -1997-05-07,116.37,119.00,115.12,115.50,70532800,11.26 -1997-05-06,119.37,119.75,116.37,117.31,74770400,11.44 -1997-05-05,119.62,120.75,115.50,120.19,111063200,11.72 -1997-05-02,122.00,123.50,118.94,120.75,96192000,11.77 -1997-05-01,122.00,123.25,119.25,121.00,72325600,11.80 -1997-04-30,118.62,122.62,118.37,121.50,90204000,11.85 -1997-04-29,117.37,119.12,116.50,119.00,73953600,11.60 -1997-04-28,113.75,115.06,111.62,114.87,67224000,11.20 -1997-04-25,113.50,115.37,113.25,113.62,58566400,11.08 -1997-04-24,116.62,117.87,112.75,114.12,118163200,11.13 -1997-04-23,110.62,115.75,110.37,115.12,102814400,11.22 -1997-04-22,107.62,110.81,107.50,110.62,82300000,10.79 -1997-04-21,107.00,111.87,106.12,107.62,155695200,10.49 -1997-04-18,104.00,107.62,103.00,107.62,231764000,10.49 -1997-04-17,98.50,100.00,97.50,98.12,71720800,9.57 -1997-04-16,96.62,98.50,96.25,98.25,42710400,9.58 -1997-04-15,97.87,99.00,95.87,97.12,84440000,9.47 -1997-04-14,94.75,97.37,93.37,97.37,59107200,9.49 -1997-04-11,95.50,97.25,94.94,95.00,60033600,9.26 -1997-04-10,97.75,97.75,95.50,96.75,67913600,9.43 -1997-04-09,99.12,99.25,97.75,98.00,73762400,9.55 -1997-04-08,96.62,98.25,95.50,98.25,53339200,9.58 -1997-04-07,95.62,97.62,95.00,95.87,76511200,9.35 -1997-04-04,93.75,96.75,93.75,94.19,94964000,9.18 -1997-04-03,91.00,95.37,90.62,95.12,92252800,9.27 -1997-04-02,92.87,93.62,91.00,92.00,63331200,8.97 -1997-04-01,90.12,93.75,89.75,93.25,86680800,9.09 -1997-03-31,93.12,94.50,91.25,91.69,93825600,8.94 -1997-03-27,95.12,96.12,91.00,93.75,93919200,9.14 -1997-03-26,90.75,94.62,90.62,94.25,81270400,9.19 -1997-03-25,90.62,91.37,88.87,90.31,89701600,8.80 -1997-03-24,93.12,93.50,87.62,90.12,186269600,8.79 -1997-03-21,96.50,97.12,92.87,94.00,85829600,9.16 -1997-03-20,96.62,97.75,95.37,96.00,81410400,9.36 -1997-03-19,97.75,98.25,94.94,96.75,111560000,9.43 -1997-03-18,100.62,100.81,98.87,99.62,59012000,9.71 -1997-03-17,98.50,100.75,98.00,100.50,83958400,9.80 -1997-03-14,99.75,100.25,98.87,99.00,61327200,9.65 -1997-03-13,98.25,100.12,98.00,99.62,45505600,9.71 -1997-03-12,97.75,99.50,97.75,98.75,43234400,9.63 -1997-03-11,99.62,100.56,98.37,98.37,47577600,9.59 -1997-03-10,97.12,100.12,95.94,100.00,45997600,9.75 -1997-03-07,98.37,99.50,96.50,96.75,46032000,9.43 -1997-03-06,100.75,100.87,97.73,97.75,57018400,9.53 -1997-03-05,99.50,101.00,99.25,100.87,46393600,9.83 -1997-03-04,99.25,100.12,98.62,99.12,63920800,9.66 -1997-03-03,97.00,100.12,96.62,99.50,53874400,9.70 -1997-02-28,96.12,98.37,95.44,97.50,78412000,9.51 -1997-02-27,100.25,100.25,96.00,96.12,56628800,9.37 -1997-02-26,99.50,100.37,98.37,100.25,48849600,9.77 -1997-02-25,100.00,101.02,98.87,99.50,63941600,9.70 -1997-02-24,94.25,100.25,94.00,100.12,68599200,9.76 -1997-02-21,94.87,95.37,94.00,95.00,61131200,9.26 -1997-02-20,96.87,97.50,95.12,95.25,75395200,9.29 -1997-02-19,97.37,98.12,96.50,97.50,56383200,9.51 -1997-02-18,97.62,97.87,96.25,97.37,52545600,9.49 -1997-02-14,99.37,100.50,97.62,97.87,57395200,9.54 -1997-02-13,100.50,101.12,99.37,100.00,58292000,9.75 -1997-02-12,98.37,100.00,97.50,99.87,72001600,9.74 -1997-02-11,98.25,98.62,95.12,98.50,88834400,9.60 -1997-02-10,100.75,101.50,97.62,97.75,66804800,9.53 -1997-02-07,98.37,100.50,97.50,100.37,62448000,9.79 -1997-02-06,98.25,98.37,96.00,97.12,102122400,9.47 -1997-02-05,103.12,103.50,96.87,98.37,110099200,9.59 -1997-02-04,102.37,103.25,100.50,103.12,56464000,10.05 -1997-02-03,102.62,103.39,101.12,102.37,60804800,9.98 -1997-01-31,101.87,103.25,100.87,102.00,86516000,9.94 -1997-01-30,98.25,101.25,98.00,101.12,79937600,9.86 -1997-01-29,96.75,97.37,95.75,97.25,48933600,9.48 -1997-01-28,98.37,98.75,94.75,95.62,64656800,9.32 -1997-01-27,96.50,97.39,95.50,96.12,53263200,9.37 -1997-01-24,95.12,97.75,94.37,95.94,89817600,9.35 -1997-01-23,98.12,99.75,94.50,94.75,105048000,9.24 -1997-01-22,95.12,98.50,94.62,97.37,129236800,9.49 -1997-01-21,90.62,95.06,89.62,95.00,114592000,9.26 -1997-01-20,87.00,92.87,86.62,90.75,146220800,8.85 -1997-01-17,85.62,87.75,85.50,87.12,65368800,8.49 -1997-01-16,85.00,87.12,85.00,86.00,58688000,8.38 -1997-01-15,85.62,86.25,84.37,84.62,53058400,8.25 -1997-01-14,84.25,86.62,84.25,85.37,63728000,8.32 -1997-01-13,85.12,85.50,83.50,83.75,50361600,8.17 -1997-01-10,82.00,84.37,81.62,84.25,66556800,8.21 -1997-01-09,83.75,83.75,82.25,82.37,47763200,8.03 -1997-01-08,85.00,85.23,83.12,83.37,50593600,8.13 -1997-01-07,84.50,85.12,83.37,85.00,36880800,8.29 -1997-01-06,84.62,85.25,83.12,84.37,55948000,8.23 -1997-01-03,82.25,84.75,82.00,84.62,44131200,8.25 -1997-01-02,83.12,83.12,80.75,81.62,54480800,7.96 -1996-12-31,84.00,84.25,82.50,82.62,34367200,8.06 -1996-12-30,85.37,85.62,83.50,83.50,27279200,8.14 -1996-12-27,85.50,85.75,84.02,84.25,19079200,8.21 -1996-12-26,85.25,86.12,85.12,85.50,27905600,8.34 -1996-12-24,84.12,85.12,83.12,84.87,16246400,8.27 -1996-12-23,84.12,84.75,82.87,83.75,36892800,8.17 -1996-12-20,85.50,85.62,83.37,83.62,90414400,8.15 -1996-12-19,84.00,85.12,83.00,84.87,94609600,8.27 -1996-12-18,81.37,82.75,80.00,82.62,61796800,8.06 -1996-12-17,76.62,80.12,76.37,79.87,68944800,7.79 -1996-12-16,80.25,80.75,76.50,76.75,64883200,7.48 -1996-12-13,81.12,82.00,79.23,80.00,74532000,7.80 -1996-12-12,85.00,85.25,81.00,81.00,78272800,7.90 -1996-12-11,81.00,83.62,80.12,83.37,113558400,8.13 -1996-12-10,84.37,84.56,81.75,81.87,125725600,7.98 -1996-12-09,78.37,81.87,78.00,81.75,94718400,7.97 -1996-12-06,149.00,154.50,148.27,152.88,110238400,7.45 -1996-12-05,153.38,155.38,151.88,153.00,74950400,7.46 -1996-12-04,155.13,155.25,152.13,153.25,102542400,7.47 -1996-12-03,158.38,159.50,154.63,154.69,77563200,7.54 -1996-12-02,157.50,157.75,155.25,157.75,64502400,7.69 -1996-11-29,155.50,157.13,155.50,156.88,17152000,7.65 -1996-11-27,154.13,155.75,153.75,155.50,44446400,7.58 -1996-11-26,154.00,155.38,152.38,153.75,108238400,7.50 -1996-11-25,151.13,153.63,150.50,153.50,75129600,7.48 -1996-11-22,150.75,152.50,149.38,150.50,94424000,7.34 -1996-11-21,154.50,154.63,150.00,150.38,130718400,7.33 -1996-11-20,156.00,158.00,153.25,153.25,123857600,7.47 -1996-11-19,150.50,155.88,150.25,155.88,104739200,7.60 -1996-11-18,149.38,151.75,148.63,150.38,98585600,7.33 -1996-11-15,150.75,150.88,147.38,149.00,104041600,7.26 -1996-11-14,145.25,149.63,145.25,149.63,114969600,7.29 -1996-11-13,143.63,145.75,143.13,145.00,90409600,7.07 -1996-11-12,144.00,145.88,141.50,141.75,81156800,6.91 -1996-11-11,143.38,144.75,143.00,143.63,38593600,7.00 -1996-11-08,143.38,143.50,141.50,143.50,67369600,7.00 -1996-11-07,144.75,146.13,143.13,143.50,76742400,7.00 -1996-11-06,141.38,144.50,141.00,144.50,71438400,7.04 -1996-11-05,138.50,141.50,138.31,141.50,86417600,6.90 -1996-11-04,137.25,138.38,136.75,138.00,36006400,6.73 -1996-11-01,137.25,138.75,136.50,137.38,56531200,6.70 -1996-10-31,136.38,137.38,136.13,137.25,37028800,6.69 -1996-10-30,135.38,137.00,134.88,136.25,60526400,6.64 -1996-10-29,136.88,137.38,134.88,135.38,66756800,6.60 -1996-10-28,136.69,137.63,136.25,136.63,51240000,6.66 -1996-10-25,136.63,137.88,136.13,136.44,53084800,6.65 -1996-10-24,134.88,137.38,133.88,136.63,81417600,6.66 -1996-10-23,132.63,134.75,131.75,134.50,67443200,6.56 -1996-10-22,133.13,133.38,131.25,132.50,113806400,6.46 -1996-10-21,134.75,136.00,133.50,134.00,71401600,6.53 -1996-10-18,134.00,135.00,133.56,134.75,69646400,6.57 -1996-10-17,138.25,139.00,135.50,135.50,49097600,6.61 -1996-10-16,138.75,138.94,137.00,138.00,36427200,6.73 -1996-10-15,138.75,139.13,137.38,138.88,61206400,6.77 -1996-10-14,137.38,138.13,136.38,136.63,36091200,6.66 -1996-10-11,134.63,137.25,134.25,137.13,36523200,6.68 -1996-10-10,133.75,136.13,133.38,133.75,51739200,6.52 -1996-10-09,136.00,136.13,133.25,134.50,64955200,6.56 -1996-10-08,137.75,137.75,135.00,135.38,48465600,6.60 -1996-10-07,136.38,138.13,135.88,137.50,42432000,6.70 -1996-10-04,134.63,136.63,134.25,136.38,45166400,6.65 -1996-10-03,134.75,135.13,133.63,134.00,58294400,6.53 -1996-10-02,132.88,135.75,132.38,134.75,68760000,6.57 -1996-10-01,131.75,133.88,130.88,132.13,69124800,6.44 -1996-09-30,133.50,134.88,131.75,131.88,89574400,6.43 -1996-09-27,132.50,135.25,131.25,134.38,98372800,6.55 -1996-09-26,135.75,136.13,131.75,132.00,92604800,6.43 -1996-09-25,137.50,137.88,135.38,135.63,44067200,6.61 -1996-09-24,137.50,138.38,136.13,136.88,72520000,6.67 -1996-09-23,137.63,138.13,136.25,137.75,46385600,6.72 -1996-09-20,137.00,138.63,135.88,138.13,104849600,6.73 -1996-09-19,136.50,138.25,135.75,137.75,75912000,6.72 -1996-09-18,134.00,137.88,133.25,136.50,86049600,6.65 -1996-09-17,132.88,134.63,132.25,133.88,75624000,6.53 -1996-09-16,131.13,133.13,131.00,131.50,62409600,6.41 -1996-09-13,129.63,131.38,128.88,131.00,80137600,6.39 -1996-09-12,125.50,129.50,125.19,128.63,95944000,6.27 -1996-09-11,123.94,125.50,123.62,125.12,36387200,6.10 -1996-09-10,124.75,125.12,123.62,124.37,38904000,6.06 -1996-09-09,122.50,125.00,122.25,124.87,41747200,6.09 -1996-09-06,122.00,122.75,121.62,122.50,41921600,5.97 -1996-09-05,122.75,122.75,121.50,121.50,40372800,5.92 -1996-09-04,123.37,123.62,122.94,123.37,27126400,6.01 -1996-09-03,122.00,123.37,120.62,123.37,48524800,6.01 -1996-08-30,124.25,124.25,122.50,122.50,28088000,5.97 -1996-08-29,125.25,125.25,123.62,124.12,34182400,6.05 -1996-08-28,125.00,125.75,124.87,125.62,32070400,6.12 -1996-08-27,123.12,124.75,123.00,124.75,28038400,6.08 -1996-08-26,123.37,123.75,122.75,122.87,31944000,5.99 -1996-08-23,124.87,125.00,123.25,123.25,44006400,6.01 -1996-08-22,124.12,125.12,123.50,125.00,50236800,6.09 -1996-08-21,122.50,123.50,121.75,123.50,49345600,6.02 -1996-08-20,123.75,124.12,123.25,123.37,25678400,6.01 -1996-08-19,123.87,124.12,122.25,123.50,43131200,6.02 -1996-08-16,125.12,125.25,123.75,124.25,47598400,6.06 -1996-08-15,124.75,125.75,124.37,125.12,35556800,6.10 -1996-08-14,123.87,125.12,123.75,124.87,52032000,6.09 -1996-08-13,125.00,125.87,123.37,123.50,72508800,6.02 -1996-08-12,124.25,126.12,124.00,125.25,66187200,6.11 -1996-08-09,124.75,125.50,123.87,124.50,44313600,6.07 -1996-08-08,124.12,125.87,123.75,125.25,54379200,6.11 -1996-08-07,124.37,125.12,122.87,124.75,76790400,6.08 -1996-08-06,121.62,124.12,120.87,124.00,67388800,6.04 -1996-08-05,123.50,123.75,121.25,121.75,55072000,5.94 -1996-08-02,122.12,123.87,120.62,123.37,109289600,6.01 -1996-08-01,117.87,120.87,117.37,120.62,96025600,5.88 -1996-07-31,119.00,119.62,117.62,117.87,56320000,5.75 -1996-07-30,117.87,118.75,116.12,118.62,66976000,5.78 -1996-07-29,119.25,119.87,116.75,116.87,56748800,5.70 -1996-07-26,119.50,119.50,118.25,119.12,59304000,5.81 -1996-07-25,116.00,118.75,115.12,118.50,100920000,5.78 -1996-07-24,109.50,115.75,109.50,114.75,192225600,5.59 -1996-07-23,120.00,120.00,110.25,112.12,257678400,5.47 -1996-07-22,121.02,121.50,117.87,119.75,144475200,5.84 -1996-07-19,117.75,121.62,117.75,120.98,99208000,5.90 -1996-07-18,117.25,120.00,115.87,119.87,98537600,5.84 -1996-07-17,117.75,118.12,115.62,117.12,126208000,5.71 -1996-07-16,110.25,115.62,107.50,115.37,182100800,5.62 -1996-07-15,112.37,113.75,109.87,110.62,111832000,5.39 -1996-07-12,115.19,115.19,110.48,112.37,139478400,5.48 -1996-07-11,118.25,118.37,113.75,114.50,140915200,5.58 -1996-07-10,120.00,120.00,118.12,119.50,77980800,5.83 -1996-07-09,120.87,121.37,120.00,120.00,35571200,5.85 -1996-07-08,118.50,120.75,118.12,120.31,64432000,5.86 -1996-07-05,120.12,120.12,118.37,118.37,35331200,5.77 -1996-07-03,121.62,122.87,120.62,121.12,44243200,5.90 -1996-07-02,122.37,122.62,121.25,121.62,38548800,5.93 -1996-07-01,120.25,122.50,120.12,122.31,47862400,5.96 -1996-06-28,120.50,121.00,119.12,120.12,52000000,5.86 -1996-06-27,120.50,121.00,119.00,119.94,77582400,5.85 -1996-06-26,121.87,122.00,119.00,120.50,71457600,5.87 -1996-06-25,124.25,124.25,121.37,122.00,41145600,5.95 -1996-06-24,124.00,125.12,123.00,124.12,48102400,6.05 -1996-06-21,122.37,124.12,121.50,123.87,56806400,6.04 -1996-06-20,122.00,122.48,119.00,121.75,102228800,5.94 -1996-06-19,122.50,123.12,121.37,121.75,73409600,5.94 -1996-06-18,124.50,124.50,122.00,122.37,74585600,5.97 -1996-06-17,123.12,125.00,122.37,124.62,57499200,6.08 -1996-06-14,124.75,125.00,122.87,123.00,55944000,6.00 -1996-06-13,125.12,125.87,123.75,124.62,62577600,6.08 -1996-06-12,122.87,125.37,122.75,125.00,88844800,6.09 -1996-06-11,120.75,123.25,120.62,122.12,65259200,5.95 -1996-06-10,121.00,121.25,119.98,120.62,45819200,5.88 -1996-06-07,117.62,121.25,117.62,121.25,70198400,5.91 -1996-06-06,121.75,123.00,119.75,119.81,88136000,5.84 -1996-06-05,118.00,121.25,117.87,120.87,50968000,5.89 -1996-06-04,118.62,118.87,116.25,117.87,65852800,5.75 -1996-06-03,118.75,119.50,118.12,118.37,31684800,5.77 -1996-05-31,118.56,119.37,118.00,118.75,40259200,5.79 -1996-05-30,117.25,118.25,116.62,118.25,33824000,5.76 -1996-05-29,117.37,118.25,116.62,117.12,33569600,5.71 -1996-05-28,118.75,119.14,117.12,117.25,43376000,5.72 -1996-05-24,118.50,119.00,118.25,118.50,26443200,5.78 -1996-05-23,116.87,119.12,116.87,118.50,51976000,5.78 -1996-05-22,115.00,117.25,114.62,116.87,45646400,5.70 -1996-05-21,116.75,116.87,115.12,115.12,42113600,5.61 -1996-05-20,117.37,117.87,116.62,116.75,38457600,5.69 -1996-05-17,117.87,118.00,116.37,117.00,35392000,5.70 -1996-05-16,116.00,117.37,115.62,117.12,67092800,5.71 -1996-05-15,119.00,119.75,117.37,117.62,56323200,5.73 -1996-05-14,119.25,120.00,118.23,119.00,76832000,5.80 -1996-05-13,115.00,118.87,115.00,118.62,95606400,5.78 -1996-05-10,114.37,115.14,114.12,114.87,43913600,5.60 -1996-05-09,114.25,115.12,113.25,113.50,47776000,5.53 -1996-05-08,112.87,114.37,110.75,114.25,77851200,5.57 -1996-05-07,111.62,113.50,111.62,113.12,47366400,5.51 -1996-05-06,111.00,112.37,109.62,111.75,75852800,5.45 -1996-05-03,112.50,114.50,110.12,110.87,75300800,5.40 -1996-05-02,115.12,115.25,111.12,111.62,87340800,5.44 -1996-05-01,112.87,115.25,112.62,115.12,65014400,5.61 -1996-04-30,112.62,113.25,111.87,113.25,28441600,5.52 -1996-04-29,113.37,113.50,112.00,112.62,34267200,5.49 -1996-04-26,112.75,113.87,112.37,113.50,54296000,5.53 -1996-04-25,111.50,113.75,110.25,112.75,63896000,5.50 -1996-04-24,113.00,113.12,111.25,111.50,69251200,5.44 -1996-04-23,112.75,113.25,111.37,112.62,57139200,5.49 -1996-04-22,110.50,113.37,110.25,112.75,92758400,5.50 -1996-04-19,111.62,112.12,109.50,109.75,169492800,5.35 -1996-04-18,106.00,109.25,105.50,109.00,133958400,5.31 -1996-04-17,105.25,106.00,104.31,105.94,62630400,5.16 -1996-04-16,104.25,105.50,104.00,105.25,80116800,5.13 -1996-04-15,101.00,103.62,101.00,103.52,50102400,5.05 -1996-04-12,101.12,101.62,100.50,101.12,33737600,4.93 -1996-04-11,101.50,102.37,99.62,101.12,62465600,4.93 -1996-04-10,101.50,103.00,101.25,101.62,51910400,4.95 -1996-04-09,104.00,104.00,101.50,101.62,66942400,4.95 -1996-04-08,102.50,103.87,101.87,103.75,73753600,5.06 -1996-04-04,104.62,104.87,103.50,104.37,28961600,5.09 -1996-04-03,104.12,105.12,103.37,104.50,46072000,5.09 -1996-04-02,102.75,105.00,102.62,104.62,54396800,5.10 -1996-04-01,103.14,103.50,102.12,102.75,31692800,5.01 -1996-03-29,102.37,104.12,102.12,103.12,53508800,5.03 -1996-03-28,101.87,103.50,101.12,102.25,54955200,4.98 -1996-03-27,103.25,104.00,101.12,102.50,52729600,5.00 -1996-03-26,99.37,102.87,98.75,102.75,79899200,5.01 -1996-03-25,101.50,102.37,98.81,99.87,63379200,4.87 -1996-03-22,101.12,101.44,99.75,101.12,48046400,4.93 -1996-03-21,104.25,104.37,100.50,100.75,66313600,4.91 -1996-03-20,106.25,106.62,103.73,104.62,92944000,5.10 -1996-03-19,106.37,107.06,104.75,106.87,92491200,5.21 -1996-03-18,102.37,105.87,102.37,105.25,119472000,5.13 -1996-03-15,100.00,103.12,99.62,102.37,121721600,4.99 -1996-03-14,101.12,101.87,99.62,99.62,60640000,4.86 -1996-03-13,98.23,101.00,97.75,100.87,156710400,4.92 -1996-03-12,96.25,96.62,94.75,95.75,76888000,4.67 -1996-03-11,95.12,96.62,95.12,96.50,74592000,4.70 -1996-03-08,95.50,97.50,94.75,95.12,108524800,4.64 -1996-03-07,97.12,97.62,96.62,97.31,44291200,4.74 -1996-03-06,98.25,98.87,97.00,97.00,44256000,4.73 -1996-03-05,96.00,98.27,95.75,98.12,57369600,4.78 -1996-03-04,96.00,97.37,95.50,96.25,72564800,4.69 -1996-03-01,98.37,98.62,94.62,95.50,157652800,4.66 -1996-02-29,99.00,100.12,98.56,98.69,61723200,4.81 -1996-02-28,100.75,102.00,99.87,100.12,60051200,4.88 -1996-02-27,100.75,100.81,99.73,100.12,60958400,4.88 -1996-02-26,103.00,103.25,100.50,100.62,63696000,4.91 -1996-02-23,102.62,103.62,101.87,103.50,102640000,5.05 -1996-02-22,100.00,102.62,100.00,102.50,106500800,5.00 -1996-02-21,97.75,100.12,97.50,99.87,80046400,4.87 -1996-02-20,97.25,98.50,96.87,97.75,64182400,4.77 -1996-02-16,98.75,99.25,97.87,97.87,62206400,4.77 -1996-02-15,98.50,99.12,97.75,98.50,52195200,4.80 -1996-02-14,100.12,100.12,98.37,98.75,80212800,4.81 -1996-02-13,97.75,100.25,97.50,99.62,114513600,4.86 -1996-02-12,99.75,101.12,99.12,99.50,87779200,4.85 -1996-02-09,98.75,100.25,98.50,100.12,122832000,4.88 -1996-02-08,96.62,99.50,95.50,98.87,103924800,4.82 -1996-02-07,96.00,97.12,95.48,96.87,65555200,4.72 -1996-02-06,96.50,97.50,95.62,96.50,98158400,4.70 -1996-02-05,92.75,97.25,92.75,97.12,126480000,4.73 -1996-02-02,94.00,94.12,92.12,93.00,44686400,4.53 -1996-02-01,92.25,94.25,92.00,94.12,78587200,4.59 -1996-01-31,90.75,92.62,90.12,92.50,68774400,4.51 -1996-01-30,90.87,91.37,90.62,90.81,45120000,4.43 -1996-01-29,90.75,91.25,89.36,90.37,39587200,4.41 -1996-01-26,89.12,90.87,89.00,90.50,50881600,4.41 -1996-01-25,91.37,91.62,89.00,89.37,59881600,4.36 -1996-01-24,89.87,92.50,89.50,91.25,92217600,4.45 -1996-01-23,91.37,91.75,89.25,89.50,66473600,4.36 -1996-01-22,91.62,92.75,90.87,92.00,82643200,4.48 -1996-01-19,90.25,93.25,89.62,91.87,227440000,4.48 -1996-01-18,85.50,88.87,85.00,87.62,121331200,4.27 -1996-01-17,84.75,87.50,84.62,84.87,143078400,4.14 -1996-01-16,83.62,86.48,83.25,86.37,122006400,4.21 -1996-01-15,85.87,85.87,81.87,82.50,84572800,4.02 -1996-01-12,86.50,86.87,83.87,85.75,80544000,4.18 -1996-01-11,83.50,86.87,83.12,86.62,116617600,4.22 -1996-01-10,80.50,83.25,80.48,82.37,181571200,4.02 -1996-01-09,86.00,86.00,79.87,80.19,177424000,3.91 -1996-01-08,86.50,87.62,86.12,86.25,11377600,4.20 -1996-01-05,86.25,87.62,86.12,86.37,62083200,4.21 -1996-01-04,87.25,87.50,84.87,87.37,102353600,4.26 -1996-01-03,89.12,90.12,86.75,86.87,62857600,4.23 -1996-01-02,87.87,89.75,87.37,89.75,57779200,4.38 -1995-12-29,87.25,88.75,86.25,87.75,52342400,4.28 -1995-12-28,88.25,88.50,87.25,87.37,49777600,4.26 -1995-12-27,90.37,90.62,88.37,88.87,40539200,4.33 -1995-12-26,90.25,91.25,89.87,90.25,34707200,4.40 -1995-12-22,90.12,90.87,89.12,90.50,36057600,4.41 -1995-12-21,87.75,90.00,87.37,90.00,60593600,4.39 -1995-12-20,91.12,91.37,87.00,87.12,84980800,4.25 -1995-12-19,87.37,91.02,87.37,90.87,84340800,4.43 -1995-12-18,88.37,89.00,85.37,87.00,99460800,4.24 -1995-12-15,89.12,89.75,87.25,88.37,115470400,4.31 -1995-12-14,92.25,93.50,88.62,88.75,92822400,4.33 -1995-12-13,91.12,92.12,90.50,91.75,39577600,4.47 -1995-12-12,93.00,93.12,91.12,91.37,44739200,4.45 -1995-12-11,94.50,94.75,93.00,93.12,61924800,4.54 -1995-12-08,92.62,94.62,92.23,94.50,147041600,4.61 -1995-12-07,91.12,92.00,88.86,90.50,132876800,4.41 -1995-12-06,86.12,91.00,86.00,90.62,145272000,4.42 -1995-12-05,87.87,88.12,85.12,86.00,104528000,4.19 -1995-12-04,86.12,89.62,85.25,87.87,130436800,4.28 -1995-12-01,87.12,87.87,85.87,86.25,96124800,4.20 -1995-11-30,89.50,89.75,86.87,87.12,93512000,4.25 -1995-11-29,91.87,92.50,89.25,89.75,91067200,4.38 -1995-11-28,87.00,91.50,86.50,91.50,86537600,4.46 -1995-11-27,88.62,89.50,87.14,87.25,79100800,4.25 -1995-11-24,87.62,88.25,87.37,88.00,15014400,4.29 -1995-11-22,88.37,89.50,87.25,87.37,65428800,4.26 -1995-11-21,85.87,88.75,84.25,88.00,130163200,4.29 -1995-11-20,88.37,89.37,85.75,86.00,115296000,4.19 -1995-11-17,90.00,90.62,87.37,87.37,143803200,4.26 -1995-11-16,90.50,91.84,89.62,89.87,195126400,4.38 -1995-11-15,94.37,94.62,91.87,94.00,108686400,4.58 -1995-11-14,95.87,96.00,93.87,94.00,75657600,4.58 -1995-11-13,96.62,97.25,96.06,96.31,59003200,4.69 -1995-11-10,98.50,99.00,96.61,96.87,60819200,4.72 -1995-11-09,96.50,99.02,96.00,99.00,99814400,4.83 -1995-11-08,93.87,95.50,93.37,95.25,71280000,4.64 -1995-11-07,96.50,97.37,92.87,93.00,115921600,4.53 -1995-11-06,97.00,98.87,96.87,97.37,87729600,4.75 -1995-11-03,100.00,100.12,98.75,99.50,40635200,4.85 -1995-11-02,98.62,100.37,98.25,100.00,63504000,4.87 -1995-11-01,100.12,101.00,98.25,98.37,72819200,4.80 -1995-10-31,103.00,103.37,99.75,100.00,91958400,4.87 -1995-10-30,99.25,103.37,98.50,102.75,125464000,5.01 -1995-10-27,97.50,100.14,97.37,100.00,130683200,4.87 -1995-10-26,95.75,98.12,95.37,98.00,82841600,4.78 -1995-10-25,97.62,97.75,95.87,95.87,60211200,4.67 -1995-10-24,96.37,98.12,96.37,97.50,68681600,4.75 -1995-10-23,95.00,97.12,94.50,96.37,93473600,4.70 -1995-10-20,96.50,96.87,94.87,95.50,79984000,4.66 -1995-10-19,95.25,97.00,94.75,96.75,95840000,4.72 -1995-10-18,98.25,98.62,94.87,95.62,294329600,4.66 -1995-10-17,87.25,91.50,86.75,91.12,123140800,4.44 -1995-10-16,85.75,87.37,85.50,86.75,61067200,4.23 -1995-10-13,88.50,88.75,86.00,86.25,68644800,4.20 -1995-10-12,87.00,88.12,86.62,87.62,78700800,4.27 -1995-10-11,85.87,87.37,85.00,86.62,107009600,4.22 -1995-10-10,81.25,84.12,80.37,83.75,157644800,4.08 -1995-10-09,84.87,85.75,82.75,83.12,108614400,4.05 -1995-10-06,87.50,89.00,85.50,85.87,76616000,4.19 -1995-10-05,86.00,87.50,85.00,87.50,101289600,4.27 -1995-10-04,88.12,88.12,85.50,86.12,73473600,4.20 -1995-10-03,88.12,89.25,87.25,88.87,80736000,4.33 -1995-10-02,90.50,90.87,88.12,88.25,67731200,4.30 -1995-09-29,91.62,92.75,90.06,90.50,95158400,4.41 -1995-09-28,89.00,91.50,88.87,91.50,105510400,4.46 -1995-09-27,88.00,88.75,83.37,88.62,140756800,4.32 -1995-09-26,90.37,91.87,88.12,88.25,76548800,4.30 -1995-09-25,90.50,90.62,88.50,90.23,57878400,4.40 -1995-09-22,89.87,90.75,89.00,89.75,99899200,4.38 -1995-09-21,91.25,93.06,90.50,90.62,83836800,4.42 -1995-09-20,93.50,94.62,92.62,93.12,44652800,4.54 -1995-09-19,92.00,94.50,91.50,93.31,58011200,4.55 -1995-09-18,93.25,93.37,90.87,92.00,76827200,4.48 -1995-09-15,94.75,95.37,92.50,93.44,88316800,4.56 -1995-09-14,96.12,96.50,94.75,94.87,54230400,4.62 -1995-09-13,96.12,97.00,95.12,96.12,61208000,4.69 -1995-09-12,97.75,97.75,95.62,96.25,71155200,4.69 -1995-09-11,95.37,97.87,95.00,97.62,77408000,4.76 -1995-09-08,93.75,95.62,93.25,95.50,64417600,4.66 -1995-09-07,94.25,96.62,93.25,94.62,93932800,4.61 -1995-09-06,95.25,96.50,93.00,93.50,100265600,4.56 -1995-09-05,90.87,95.12,90.25,95.00,92052800,4.63 -1995-09-01,91.75,92.00,89.37,89.75,80262400,4.38 -1995-08-31,93.37,94.00,91.50,92.50,38764800,4.51 -1995-08-30,92.87,93.75,91.50,93.25,79499200,4.55 -1995-08-29,90.12,91.87,87.00,91.87,163929600,4.48 -1995-08-28,94.37,94.37,89.87,90.06,112622400,4.39 -1995-08-25,96.37,96.75,94.37,94.37,73489600,4.60 -1995-08-24,98.12,98.12,95.50,96.12,95275200,4.69 -1995-08-23,100.00,100.50,97.50,97.87,111188800,4.77 -1995-08-22,95.12,99.37,94.37,99.31,94320000,4.84 -1995-08-21,97.50,98.25,94.37,94.50,110491200,4.61 -1995-08-18,99.69,99.75,97.00,97.12,77502400,4.73 -1995-08-17,98.87,100.75,98.64,99.12,74564800,4.83 -1995-08-16,98.37,98.87,97.12,98.75,38118400,4.81 -1995-08-15,99.25,99.37,96.87,98.37,63267200,4.80 -1995-08-14,96.87,99.25,95.75,98.75,88872000,4.81 -1995-08-11,94.75,96.62,92.12,96.50,97195200,4.70 -1995-08-10,97.00,97.12,93.87,94.12,71883200,4.59 -1995-08-09,97.75,98.12,96.00,96.50,144384000,4.70 -1995-08-08,94.12,94.87,93.37,93.50,43913600,4.56 -1995-08-07,94.50,95.50,91.75,93.62,64273600,4.56 -1995-08-04,91.37,93.87,91.25,93.87,77705600,4.58 -1995-08-03,88.00,91.37,87.50,91.12,113536000,4.44 -1995-08-02,91.00,92.62,88.00,89.00,129804800,4.34 -1995-08-01,90.75,90.89,87.87,89.50,166144000,4.36 -1995-07-31,93.12,93.50,90.00,90.50,101435200,4.41 -1995-07-28,96.00,96.00,92.00,92.62,158468800,4.52 -1995-07-27,96.50,97.62,96.25,96.50,52916800,4.70 -1995-07-26,97.62,98.12,94.87,96.00,77470400,4.68 -1995-07-25,95.50,97.62,95.00,96.37,109422400,4.70 -1995-07-24,92.62,93.75,92.12,93.62,94811200,4.56 -1995-07-21,94.00,96.00,91.75,92.00,169257600,4.48 -1995-07-20,95.25,97.37,94.00,96.12,177848000,4.69 -1995-07-19,97.00,98.75,88.50,94.50,305092800,4.61 -1995-07-18,107.00,107.12,101.25,101.87,289624000,4.97 -1995-07-17,107.75,109.25,106.50,109.00,155830400,5.31 -1995-07-14,98.25,103.62,98.00,103.62,89905600,5.05 -1995-07-13,100.12,101.50,98.12,100.12,84811200,4.88 -1995-07-12,96.75,100.00,96.75,99.87,94675200,4.87 -1995-07-11,99.00,99.12,96.50,96.50,78227200,4.70 -1995-07-10,96.00,99.75,95.75,98.87,111982400,4.82 -1995-07-07,92.87,95.62,92.75,95.62,66699200,4.66 -1995-07-06,90.62,93.00,90.37,92.75,47070400,4.52 -1995-07-05,91.62,92.00,90.37,90.69,48547200,4.42 -1995-07-03,90.87,91.12,90.37,90.94,16763200,4.43 -1995-06-30,89.62,91.00,89.62,90.37,53342400,4.41 -1995-06-29,88.00,89.75,88.00,89.37,57643200,4.36 -1995-06-28,86.75,89.00,84.87,87.87,107286400,4.28 -1995-06-27,89.50,90.50,86.75,86.87,66004800,4.23 -1995-06-26,91.00,91.12,89.50,89.75,41048000,4.38 -1995-06-23,90.75,92.19,90.25,91.12,46356800,4.44 -1995-06-22,90.62,92.00,90.62,91.87,46296000,4.48 -1995-06-21,91.87,92.37,90.00,90.50,57224000,4.41 -1995-06-20,90.37,91.37,89.75,91.37,56670400,4.45 -1995-06-19,87.25,89.89,86.87,89.81,78982400,4.38 -1995-06-16,85.00,87.50,84.87,87.00,92278400,4.24 -1995-06-15,84.00,85.00,83.87,84.87,43912000,4.14 -1995-06-14,83.37,84.12,82.75,83.81,43096000,4.09 -1995-06-13,84.12,84.75,83.37,83.87,37691200,4.09 -1995-06-12,84.62,84.75,83.25,83.75,45832000,4.08 -1995-06-09,83.75,85.87,82.62,84.87,81214400,4.14 -1995-06-08,84.12,84.62,83.62,84.12,29320000,4.10 -1995-06-07,82.87,84.75,82.12,84.00,64590400,4.09 -1995-06-06,84.87,86.02,83.12,83.12,49036800,4.05 -1995-06-05,82.62,85.37,81.75,84.75,55852800,4.13 -1995-06-02,83.75,84.12,82.62,83.12,55556800,4.05 -1995-06-01,85.00,85.62,83.87,84.12,61153600,4.10 -1995-05-31,83.25,84.75,81.00,84.69,119756800,4.13 -1995-05-30,88.00,88.37,82.62,83.00,99612800,4.05 -1995-05-26,89.19,89.25,87.00,87.50,52934400,4.27 -1995-05-25,87.87,89.37,87.12,89.25,43440000,4.35 -1995-05-24,89.12,89.50,87.00,87.50,68684800,4.27 -1995-05-23,87.50,88.50,86.03,88.50,55516800,4.31 -1995-05-22,85.37,87.50,84.00,87.25,91382400,4.25 -1995-05-19,84.25,85.50,84.00,85.37,45190400,4.16 -1995-05-18,85.62,86.75,84.62,84.62,58326400,4.13 -1995-05-17,85.25,86.87,85.12,86.00,66515200,4.19 -1995-05-16,81.50,85.02,81.50,84.87,86708800,4.14 -1995-05-15,80.62,82.00,79.87,81.31,35232000,3.96 -1995-05-12,81.37,82.25,80.37,80.75,36192000,3.94 -1995-05-11,79.12,81.50,79.00,81.37,38673600,3.97 -1995-05-10,80.12,80.37,78.87,79.25,38688000,3.86 -1995-05-09,80.00,80.37,79.12,79.81,36748800,3.89 -1995-05-08,79.87,80.37,79.12,79.87,43988800,3.89 -1995-05-05,81.37,81.62,79.87,80.00,43707200,3.90 -1995-05-04,81.50,83.25,81.00,81.50,66524800,3.97 -1995-05-03,80.25,81.00,80.25,80.87,61566400,3.94 -1995-05-02,82.12,82.25,79.50,79.56,78099200,3.88 -1995-05-01,81.87,83.75,81.75,82.12,65550400,4.00 -1995-04-28,78.87,82.12,78.62,81.75,92104000,3.99 -1995-04-27,79.62,80.50,76.37,78.62,128844800,3.83 -1995-04-26,79.75,80.25,79.12,79.62,44305600,3.88 -1995-04-25,77.62,80.12,77.62,80.00,69371200,3.90 -1995-04-24,75.37,77.77,75.12,77.75,68089600,3.79 -1995-04-21,75.62,75.87,74.87,75.00,53555200,3.66 -1995-04-20,76.50,76.87,74.00,75.25,83913600,3.67 -1995-04-19,76.62,77.00,75.50,76.12,59163200,3.71 -1995-04-18,77.37,77.50,76.00,76.75,75609600,3.74 -1995-04-17,75.50,78.12,75.50,77.37,187913600,3.77 -1995-04-13,71.75,72.50,71.12,72.50,32814400,3.53 -1995-04-12,72.12,73.25,70.75,71.62,40430400,3.49 -1995-04-11,71.62,72.14,71.12,72.12,43624000,3.52 -1995-04-10,69.50,71.25,69.37,70.94,43169600,3.46 -1995-04-07,70.25,70.75,69.50,69.62,43148800,3.39 -1995-04-06,70.62,70.87,69.44,70.00,35414400,3.41 -1995-04-05,69.87,70.62,68.75,70.62,65792000,3.44 -1995-04-04,70.25,71.50,69.75,69.87,66689600,3.41 -1995-04-03,71.00,71.37,69.50,70.00,65617600,3.41 -1995-03-31,71.75,72.12,70.50,71.12,63080000,3.47 -1995-03-30,72.50,72.75,70.37,72.12,75011200,3.52 -1995-03-29,73.62,74.00,72.06,72.25,65763200,3.52 -1995-03-28,72.87,74.00,72.87,73.62,47603200,3.59 -1995-03-27,72.75,73.87,72.62,73.00,61008000,3.56 -1995-03-24,73.25,74.12,73.12,73.87,65683200,3.60 -1995-03-23,71.37,73.25,71.25,72.75,105286400,3.55 -1995-03-22,70.50,71.00,69.87,70.94,52464000,3.46 -1995-03-21,71.25,71.50,70.37,70.44,74772800,3.43 -1995-03-20,70.12,71.50,70.00,71.12,37772800,3.47 -1995-03-17,70.50,71.75,69.87,69.94,59868800,3.41 -1995-03-16,70.00,70.50,69.62,70.12,47510400,3.42 -1995-03-15,71.75,71.87,70.37,70.50,57294400,3.44 -1995-03-14,69.37,72.00,69.25,71.75,78643200,3.50 -1995-03-13,68.62,69.69,68.25,69.00,34550400,3.36 -1995-03-10,67.87,68.75,66.50,68.56,44324800,3.34 -1995-03-09,68.50,68.75,66.87,67.87,58238400,3.31 -1995-03-08,65.75,68.62,65.75,68.50,140096000,3.34 -1995-03-07,64.37,66.02,64.25,65.34,91750400,3.19 -1995-03-06,63.25,64.37,62.88,64.31,45156800,3.14 -1995-03-03,63.63,63.88,63.13,63.63,31776000,3.10 -1995-03-02,63.25,63.75,63.13,63.75,26038400,3.11 -1995-03-01,63.13,64.00,62.75,63.25,52032000,3.08 -1995-02-28,61.88,63.25,61.75,63.00,52544000,3.07 -1995-02-27,61.38,62.00,61.13,61.75,28592000,3.01 -1995-02-24,61.38,61.88,61.25,61.25,34177600,2.99 -1995-02-23,61.25,62.13,61.00,61.63,59939200,3.00 -1995-02-22,59.75,62.00,59.63,61.50,60902400,3.00 -1995-02-21,60.50,60.75,59.50,59.75,55392000,2.91 -1995-02-17,60.75,60.88,60.25,60.38,37824000,2.94 -1995-02-16,60.88,61.13,60.25,60.88,56744000,2.97 -1995-02-15,60.13,61.38,59.63,60.75,147001600,2.96 -1995-02-14,62.13,62.25,61.50,61.88,31121600,3.02 -1995-02-13,62.00,62.75,61.63,62.00,38160000,3.02 -1995-02-10,62.00,62.63,61.50,62.00,49862400,3.02 -1995-02-09,62.13,62.50,61.75,61.88,42398400,3.02 -1995-02-08,61.25,62.00,61.00,61.88,49150400,3.02 -1995-02-07,60.75,61.13,60.63,61.00,33152000,2.97 -1995-02-06,60.13,61.13,60.13,60.88,48345600,2.97 -1995-02-03,59.50,60.50,59.25,60.13,60332800,2.93 -1995-02-02,58.75,59.38,58.38,59.00,46312000,2.88 -1995-02-01,59.38,60.75,58.98,59.13,66705600,2.88 -1995-01-31,59.13,59.75,58.25,59.38,59945600,2.89 -1995-01-30,60.13,60.13,58.88,59.00,55164800,2.88 -1995-01-27,60.13,60.25,59.75,59.88,58376000,2.92 -1995-01-26,60.88,61.00,59.75,59.88,80836800,2.92 -1995-01-25,61.63,62.25,61.00,61.75,52459200,3.01 -1995-01-24,63.00,63.13,62.00,62.02,36739200,3.02 -1995-01-23,61.00,63.00,60.50,62.81,53843200,3.06 -1995-01-20,62.88,63.50,61.25,61.63,82388800,3.00 -1995-01-19,64.50,65.00,63.44,63.50,67108800,3.10 -1995-01-18,64.87,65.25,64.25,65.06,50504000,3.17 -1995-01-17,64.75,65.12,64.37,64.62,73932800,3.15 -1995-01-16,63.25,64.50,63.00,64.12,74648000,3.13 -1995-01-13,62.00,63.00,61.88,62.75,41307200,3.06 -1995-01-12,61.25,62.13,61.00,61.25,26996800,2.99 -1995-01-11,61.13,61.75,60.75,61.38,31512000,2.99 -1995-01-10,60.63,61.50,60.50,61.00,42184000,2.97 -1995-01-09,60.88,61.00,59.75,60.25,46000000,2.94 -1995-01-06,59.88,61.25,59.75,60.63,46681600,2.96 -1995-01-05,60.88,61.00,59.38,59.63,39824000,2.91 -1995-01-04,60.25,60.75,59.50,60.63,51611200,2.96 -1995-01-03,61.50,61.50,60.13,60.19,39545600,2.93 -1994-12-30,61.88,61.88,61.13,61.13,20686400,2.98 -1994-12-29,60.88,61.88,60.63,61.81,23446400,3.01 -1994-12-28,60.75,61.00,60.00,61.00,34961600,2.97 -1994-12-27,61.00,61.63,60.63,60.75,20566400,2.96 -1994-12-23,60.63,61.38,60.38,60.88,19486400,2.97 -1994-12-22,61.50,62.00,60.25,60.63,57355200,2.96 -1994-12-21,60.25,61.63,60.13,61.50,69395200,3.00 -1994-12-20,62.63,62.75,58.75,59.88,253456000,2.92 -1994-12-19,63.38,63.63,62.50,62.63,31507200,3.05 -1994-12-16,63.63,64.25,63.20,63.38,54020800,3.09 -1994-12-15,63.38,64.12,63.00,63.50,28854400,3.10 -1994-12-14,62.50,63.63,62.50,63.25,33641600,3.08 -1994-12-13,63.38,63.50,62.25,62.75,30219200,3.06 -1994-12-12,63.13,63.50,61.63,63.13,65313600,3.08 -1994-12-09,62.50,63.25,62.25,63.13,79956800,3.08 -1994-12-08,63.13,63.75,62.25,62.50,41934400,3.05 -1994-12-07,63.50,63.88,63.00,63.00,36744000,3.07 -1994-12-06,63.25,64.12,63.00,63.38,38830400,3.09 -1994-12-05,63.38,64.25,63.13,63.31,38166400,3.09 -1994-12-02,62.75,63.25,62.00,63.25,37715200,3.08 -1994-12-01,62.63,63.41,62.50,62.56,43096000,3.05 -1994-11-30,64.25,64.25,62.75,62.88,40934400,3.07 -1994-11-29,63.63,64.37,63.50,64.12,37673600,3.13 -1994-11-28,62.50,63.50,62.25,63.38,43449600,3.09 -1994-11-25,61.75,62.38,61.63,62.25,12563200,3.03 -1994-11-23,61.63,62.06,61.06,61.50,87507200,3.00 -1994-11-22,63.25,63.88,61.88,62.00,56358400,3.02 -1994-11-21,64.50,64.75,63.38,63.50,35560000,3.10 -1994-11-18,64.12,64.75,64.00,64.12,25694400,3.13 -1994-11-17,64.62,64.75,63.88,64.25,33232000,3.13 -1994-11-16,64.75,64.87,64.50,64.62,30196800,3.15 -1994-11-15,64.50,65.12,64.25,64.56,52544000,3.15 -1994-11-14,62.75,64.50,62.75,64.50,48934400,3.14 -1994-11-11,62.25,62.69,60.75,62.25,132899200,3.03 -1994-11-10,63.50,64.37,63.50,63.69,24689600,3.10 -1994-11-09,64.25,64.62,63.13,63.75,60206400,3.11 -1994-11-08,61.88,63.88,61.69,63.63,43328000,3.10 -1994-11-07,61.50,62.00,60.88,61.88,47094400,3.02 -1994-11-04,62.63,63.13,61.31,61.50,46947200,3.00 -1994-11-03,63.00,63.25,62.38,62.63,63441600,3.05 -1994-11-02,62.75,64.12,62.50,63.00,61408000,3.07 -1994-11-01,62.75,62.88,62.13,62.75,39624000,3.06 -1994-10-31,62.25,63.75,62.00,63.00,59932800,3.07 -1994-10-28,61.63,62.38,61.38,62.13,58414400,3.03 -1994-10-27,61.13,61.63,60.75,61.63,41238400,3.00 -1994-10-26,59.88,61.13,59.75,61.00,97904000,2.97 -1994-10-25,58.75,59.75,58.38,59.69,44780800,2.91 -1994-10-24,59.50,59.50,58.38,58.88,57145600,2.87 -1994-10-21,59.25,59.63,58.38,59.38,67099200,2.89 -1994-10-20,58.25,59.88,57.88,59.63,136558400,2.91 -1994-10-19,56.63,58.00,56.25,57.63,59488000,2.81 -1994-10-18,55.25,56.75,55.06,56.63,52686400,2.76 -1994-10-17,56.00,56.25,55.00,55.13,31160000,2.69 -1994-10-14,57.25,57.38,55.19,55.94,99878400,2.73 -1994-10-13,56.63,57.75,56.63,57.25,63033600,2.79 -1994-10-12,55.88,56.50,55.75,56.25,27912000,2.74 -1994-10-11,55.13,56.63,55.13,55.81,55692800,2.72 -1994-10-10,54.38,55.38,54.38,54.75,39480000,2.67 -1994-10-07,54.63,54.88,53.88,54.38,51518400,2.65 -1994-10-06,55.50,55.88,54.25,54.50,40790400,2.66 -1994-10-05,54.88,55.88,54.13,55.50,50985600,2.71 -1994-10-04,56.00,56.13,54.88,55.00,42622400,2.68 -1994-10-03,56.13,56.38,55.50,55.88,28833600,2.72 -1994-09-30,56.50,57.50,56.13,56.13,34608000,2.74 -1994-09-29,56.88,57.25,56.38,56.50,27105600,2.75 -1994-09-28,56.63,57.50,56.50,57.00,33355200,2.78 -1994-09-27,55.50,56.50,54.88,56.50,50585600,2.75 -1994-09-26,56.00,56.00,55.25,55.56,29921600,2.71 -1994-09-23,56.88,57.50,56.00,56.00,48371200,2.73 -1994-09-22,57.25,57.50,56.63,57.00,44320000,2.78 -1994-09-21,56.31,57.38,55.00,57.25,82948800,2.79 -1994-09-20,56.88,57.13,55.94,56.00,40276800,2.73 -1994-09-19,57.13,57.25,56.63,56.88,48350400,2.77 -1994-09-16,58.00,58.13,56.75,56.88,52921600,2.77 -1994-09-15,57.63,58.25,57.38,58.25,40640000,2.84 -1994-09-14,57.75,58.13,57.50,57.63,29968000,2.81 -1994-09-13,56.38,57.88,56.38,57.56,41134400,2.81 -1994-09-12,57.13,57.13,55.88,56.13,36238400,2.74 -1994-09-09,56.13,57.88,55.88,56.88,60800000,2.77 -1994-09-08,57.00,58.00,57.00,57.94,28377600,2.82 -1994-09-07,56.25,57.81,56.13,56.88,43588800,2.77 -1994-09-06,55.88,56.25,55.69,56.00,28804800,2.73 -1994-09-02,56.50,56.50,55.75,56.00,46964800,2.73 -1994-09-01,57.00,57.00,55.75,56.13,115568000,2.74 -1994-08-31,58.38,59.25,57.75,58.13,60968000,2.83 -1994-08-30,57.00,58.50,56.63,58.38,39851200,2.85 -1994-08-29,57.38,58.13,57.00,57.06,56625600,2.78 -1994-08-26,56.38,57.75,56.25,56.88,60961600,2.77 -1994-08-25,55.88,56.75,55.75,56.19,55174400,2.74 -1994-08-24,55.50,56.00,55.50,55.75,35246400,2.72 -1994-08-23,54.63,56.38,54.50,55.50,58363200,2.71 -1994-08-22,55.00,55.00,54.50,54.63,62835200,2.66 -1994-08-19,55.88,56.00,54.75,54.88,74761600,2.68 -1994-08-18,55.88,56.38,55.38,55.50,61276800,2.71 -1994-08-17,55.38,56.25,55.13,55.88,79790400,2.72 -1994-08-16,54.88,55.13,54.00,54.88,56779200,2.68 -1994-08-15,55.50,55.50,54.38,54.44,36113600,2.65 -1994-08-12,55.38,55.63,54.88,55.25,38088000,2.69 -1994-08-11,53.88,56.00,53.88,55.25,81428800,2.69 -1994-08-10,53.50,54.38,53.25,54.13,48646400,2.64 -1994-08-09,53.00,53.88,52.75,53.50,40198400,2.61 -1994-08-08,52.38,53.00,52.00,53.00,34537600,2.58 -1994-08-05,52.63,52.88,52.25,52.50,31204800,2.56 -1994-08-04,53.50,53.63,52.75,52.75,40192000,2.57 -1994-08-03,53.75,54.00,53.13,53.38,58771200,2.60 -1994-08-02,53.75,54.63,52.63,52.81,95249600,2.57 -1994-08-01,51.63,53.63,51.50,53.38,83934400,2.60 -1994-07-29,49.88,51.63,49.63,51.50,67064000,2.51 -1994-07-28,49.50,50.25,49.25,49.50,39899200,2.41 -1994-07-27,50.38,50.38,49.50,49.50,29291200,2.41 -1994-07-26,51.13,51.25,49.75,50.38,54308800,2.46 -1994-07-25,50.63,51.63,50.25,51.19,51513600,2.50 -1994-07-22,48.50,50.75,47.25,50.56,152916800,2.46 -1994-07-21,48.63,48.88,47.50,47.75,85740800,2.33 -1994-07-20,50.00,50.00,47.88,48.38,112604800,2.36 -1994-07-19,50.63,50.63,49.63,50.13,70126400,2.44 -1994-07-18,51.50,51.75,49.50,50.50,150499200,2.46 -1994-07-15,48.75,49.38,48.00,48.63,45520000,2.37 -1994-07-14,49.38,49.63,48.38,48.75,81446400,2.38 -1994-07-13,48.25,49.50,47.88,49.50,82956800,2.41 -1994-07-12,48.25,48.25,46.88,48.00,83752000,2.34 -1994-07-11,49.63,49.63,47.75,48.38,85406400,2.36 -1994-07-08,49.88,50.88,49.13,49.50,48945600,2.41 -1994-07-07,48.50,50.50,47.94,50.38,89667200,2.46 -1994-07-06,48.56,49.00,47.75,48.31,89254400,2.36 -1994-07-05,50.38,51.00,49.00,49.13,40430400,2.40 -1994-07-01,51.63,51.75,49.86,50.25,66622400,2.45 -1994-06-30,51.75,52.13,51.00,51.63,40827200,2.52 -1994-06-29,51.38,51.88,50.88,51.38,53435200,2.50 -1994-06-28,52.00,52.75,50.19,51.31,99417600,2.50 -1994-06-27,49.75,52.13,49.38,51.88,76161600,2.53 -1994-06-24,50.00,50.38,49.25,49.50,81454400,2.41 -1994-06-23,51.50,52.25,50.00,50.13,85979200,2.44 -1994-06-22,52.75,53.00,51.25,51.50,82924800,2.51 -1994-06-21,52.13,53.38,52.00,52.63,86995200,2.57 -1994-06-20,52.50,53.50,52.38,53.50,45668800,2.61 -1994-06-17,53.50,53.63,52.88,53.00,47622400,2.58 -1994-06-16,54.25,54.25,53.50,53.56,48478400,2.61 -1994-06-15,53.63,54.63,53.25,54.25,58860800,2.64 -1994-06-14,53.13,54.13,53.00,53.56,59249600,2.61 -1994-06-13,52.63,53.38,51.88,52.88,56628800,2.58 -1994-06-10,52.25,53.00,51.88,52.56,53726400,2.56 -1994-06-09,51.88,52.56,51.75,52.25,79356800,2.55 -1994-06-08,53.63,53.63,51.63,52.00,203835200,2.53 -1994-06-07,54.00,54.25,53.50,53.63,166171200,2.61 -1994-06-06,52.63,54.63,51.75,54.50,764504000,2.66 -1994-06-03,52.50,53.50,52.25,52.88,86841600,2.58 -1994-06-02,53.25,53.38,52.00,52.25,60291200,2.55 -1994-06-01,53.50,53.50,52.38,53.00,100764800,2.58 -1994-05-31,52.25,53.77,51.88,53.75,76000000,2.62 -1994-05-27,51.75,52.75,51.25,52.38,47544000,2.55 -1994-05-26,52.75,52.75,51.25,52.00,64296000,2.53 -1994-05-25,51.00,52.75,50.25,52.50,86003200,2.56 -1994-05-24,51.25,51.88,50.25,51.13,85144000,2.49 -1994-05-23,49.00,51.00,48.50,50.56,74947200,2.46 -1994-05-20,98.00,99.25,97.25,97.75,78140800,2.38 -1994-05-19,97.25,99.00,97.00,98.37,89651200,2.40 -1994-05-18,95.25,97.50,94.75,97.06,96953600,2.37 -1994-05-17,95.00,95.25,93.50,94.62,122464000,2.31 -1994-05-16,96.25,96.75,94.75,95.00,56633600,2.32 -1994-05-13,97.50,97.50,94.50,96.50,179920000,2.35 -1994-05-12,93.50,95.30,93.25,94.50,58998400,2.30 -1994-05-11,94.00,94.25,92.75,93.50,57433600,2.28 -1994-05-10,93.00,94.50,92.75,94.00,65305600,2.29 -1994-05-09,91.75,93.62,91.62,92.25,47600000,2.25 -1994-05-06,93.25,94.25,90.87,92.50,96403200,2.25 -1994-05-05,95.25,96.25,94.00,94.37,56374400,2.30 -1994-05-04,93.75,95.25,92.75,95.12,68889600,2.32 -1994-05-03,95.25,95.50,93.25,93.50,41929600,2.28 -1994-05-02,92.75,95.56,92.00,95.50,79260800,2.33 -1994-04-29,92.00,93.50,91.25,92.50,56803200,2.25 -1994-04-28,95.25,95.25,91.75,92.12,141382400,2.25 -1994-04-26,94.50,95.25,94.00,94.94,113193600,2.31 -1994-04-25,92.00,94.25,91.50,93.75,142745600,2.29 -1994-04-22,92.00,92.75,90.75,91.75,66060800,2.24 -1994-04-21,89.50,91.75,89.25,91.50,141980800,2.23 -1994-04-20,88.50,89.62,87.00,89.50,104732800,2.18 -1994-04-19,87.00,89.50,85.75,88.12,291273600,2.15 -1994-04-18,84.75,85.75,82.25,83.00,78006400,2.02 -1994-04-15,83.50,85.25,83.50,84.87,35241600,2.07 -1994-04-14,84.50,85.25,83.75,84.12,53088000,2.05 -1994-04-13,84.75,85.50,83.00,84.87,69644800,2.07 -1994-04-12,86.75,86.75,84.00,84.75,84969600,2.07 -1994-04-11,87.00,87.25,86.00,87.00,40400000,2.12 -1994-04-08,89.75,90.00,86.75,87.00,118710400,2.12 -1994-04-07,89.25,90.12,88.75,89.75,76630400,2.19 -1994-04-06,87.50,89.25,87.25,89.00,80780800,2.17 -1994-04-05,85.25,87.75,85.00,87.75,101878400,2.14 -1994-04-04,82.50,85.75,82.00,84.50,73996800,2.06 -1994-03-31,83.50,85.75,82.50,84.75,72297600,2.07 -1994-03-30,82.75,85.00,82.50,83.62,86860800,2.04 -1994-03-29,86.50,86.50,82.50,82.50,78339200,2.01 -1994-03-28,87.50,88.00,83.75,86.37,118403200,2.11 -1994-03-25,87.00,89.25,87.00,87.50,102051200,2.13 -1994-03-24,85.75,87.25,85.00,87.25,60166400,2.13 -1994-03-23,85.25,87.50,85.00,86.25,116441600,2.10 -1994-03-22,82.25,85.75,82.25,84.75,89024000,2.07 -1994-03-21,85.00,85.37,83.00,83.25,65078400,2.03 -1994-03-18,84.50,85.00,83.50,84.75,36857600,2.07 -1994-03-17,84.75,85.25,84.50,84.50,30992000,2.06 -1994-03-16,85.00,85.25,84.50,84.75,41286400,2.07 -1994-03-15,84.00,85.25,83.50,84.87,62934400,2.07 -1994-03-14,82.50,84.25,82.25,83.87,69203200,2.04 -1994-03-11,81.00,82.25,80.75,81.75,34857600,1.99 -1994-03-10,81.50,82.25,80.50,80.87,46588800,1.97 -1994-03-09,81.25,81.75,80.00,80.87,37024000,1.97 -1994-03-08,81.25,81.25,79.75,81.00,24723200,1.97 -1994-03-07,81.25,82.25,80.75,81.25,30540800,1.98 -1994-03-04,81.00,81.50,80.50,81.00,25705600,1.97 -1994-03-03,83.00,83.25,80.50,81.00,31564800,1.97 -1994-03-02,81.75,83.00,81.00,82.75,68499200,2.02 -1994-03-01,83.00,83.25,82.25,83.25,48070400,2.03 -1994-02-28,81.25,83.00,81.00,82.50,55494400,2.01 -1994-02-25,80.25,81.25,79.75,81.00,52995200,1.97 -1994-02-24,80.00,80.75,79.25,79.87,82553600,1.95 -1994-02-23,79.75,82.00,78.25,81.00,139462400,1.97 -1994-02-22,80.00,80.25,78.50,79.50,63235200,1.94 -1994-02-18,78.50,80.75,78.50,80.00,79465600,1.95 -1994-02-17,79.00,79.50,78.00,78.62,85017600,1.92 -1994-02-16,80.25,80.25,78.75,78.75,43731200,1.92 -1994-02-15,79.75,80.25,79.25,79.75,28876800,1.94 -1994-02-14,79.00,79.50,78.75,79.12,55270400,1.93 -1994-02-11,79.25,79.50,78.00,78.75,53747200,1.92 -1994-02-10,79.75,80.75,79.00,79.37,66620800,1.93 -1994-02-09,78.50,80.25,78.00,79.62,98585600,1.94 -1994-02-08,80.50,80.50,78.00,78.75,149875200,1.92 -1994-02-07,79.75,81.25,79.50,80.75,118851200,1.97 -1994-02-04,84.00,84.50,81.25,81.25,78217600,1.98 -1994-02-03,84.25,84.50,83.50,84.50,31792000,2.06 -1994-02-02,84.75,85.50,84.00,84.00,40924800,2.05 -1994-02-01,85.00,85.75,84.50,85.12,44003200,2.07 -1994-01-31,85.25,85.87,84.75,85.12,62566400,2.07 -1994-01-28,84.50,85.50,84.25,84.87,41875200,2.07 -1994-01-27,84.00,84.75,83.25,84.25,51129600,2.05 -1994-01-26,85.00,85.00,84.00,84.25,50489600,2.05 -1994-01-25,85.25,85.37,84.00,85.12,70361600,2.07 -1994-01-24,86.00,87.00,85.00,85.25,38374400,2.08 -1994-01-21,86.25,87.00,85.00,86.25,99078400,2.10 -1994-01-20,83.25,86.37,83.25,86.25,145004800,2.10 -1994-01-19,83.75,84.25,82.50,83.25,76563200,2.03 -1994-01-18,85.25,85.50,84.00,84.62,43686400,2.06 -1994-01-17,85.25,86.00,84.50,84.75,30755200,2.07 -1994-01-14,85.50,86.00,84.75,85.62,45216000,2.09 -1994-01-13,84.75,85.50,84.00,85.37,40755200,2.08 -1994-01-12,85.00,85.75,83.75,85.50,39488000,2.08 -1994-01-11,85.00,86.00,84.37,85.25,35360000,2.08 -1994-01-10,85.00,86.50,85.00,85.75,74185600,2.09 -1994-01-07,84.25,85.75,83.25,85.25,70832000,2.08 -1994-01-06,82.62,84.75,82.50,84.62,82006400,2.06 -1994-01-05,80.25,82.50,80.00,82.25,53974400,2.00 -1994-01-04,80.25,80.75,79.25,80.50,45302400,1.96 -1994-01-03,80.50,80.75,79.25,80.12,36646400,1.95 -1993-12-31,81.00,81.50,80.25,80.62,22995200,1.97 -1993-12-30,81.75,82.25,80.75,81.25,25328000,1.98 -1993-12-29,82.75,83.50,80.50,81.50,48988800,1.99 -1993-12-28,80.50,83.00,80.50,82.75,27776000,2.02 -1993-12-27,80.75,81.25,79.75,80.50,24537600,1.96 -1993-12-23,81.00,82.25,80.75,80.87,31820800,1.97 -1993-12-22,82.25,82.50,81.00,81.12,24169600,1.98 -1993-12-21,82.00,82.50,81.50,82.50,31008000,2.01 -1993-12-20,81.00,82.00,80.50,82.00,35462400,2.00 -1993-12-17,80.50,80.50,79.75,80.50,26112000,1.96 -1993-12-16,80.00,81.00,79.75,80.00,29113600,1.95 -1993-12-15,80.00,81.00,79.75,79.75,35219200,1.94 -1993-12-14,81.00,81.50,79.25,80.00,47414400,1.95 -1993-12-13,81.50,82.00,80.75,81.37,20112000,1.98 -1993-12-10,81.25,82.25,80.75,81.87,19916800,2.00 -1993-12-09,83.50,83.50,80.50,81.12,61465600,1.98 -1993-12-08,83.00,83.75,82.25,83.50,105900800,2.04 -1993-12-07,85.00,86.00,85.00,85.50,32780800,2.08 -1993-12-06,85.00,85.50,84.00,84.87,59337600,2.07 -1993-12-03,83.75,86.50,83.50,85.75,114502400,2.09 -1993-12-02,82.00,83.00,81.75,82.87,51936000,2.02 -1993-12-01,80.50,82.25,80.50,81.50,58886400,1.99 -1993-11-30,78.50,80.50,78.25,80.00,44153600,1.95 -1993-11-29,79.00,80.00,79.00,79.50,32105600,1.94 -1993-11-26,79.00,79.25,78.75,79.00,6403200,1.93 -1993-11-24,77.50,79.75,77.50,78.75,32467200,1.92 -1993-11-23,77.75,78.50,77.25,77.37,98256000,1.89 -1993-11-22,79.75,79.75,76.50,77.00,80355200,1.88 -1993-11-19,79.75,80.25,79.50,80.12,38403200,1.95 -1993-11-18,80.75,81.50,80.00,80.25,48438400,1.96 -1993-11-17,82.75,83.00,80.75,80.75,72217600,1.97 -1993-11-16,81.00,82.75,80.50,82.25,47664000,2.00 -1993-11-15,82.00,82.00,80.50,80.50,29244800,1.96 -1993-11-12,81.75,82.50,81.75,81.87,34339200,2.00 -1993-11-11,81.25,82.50,81.00,81.62,31158400,1.99 -1993-11-10,80.00,81.62,79.00,81.37,57177600,1.98 -1993-11-09,79.00,80.00,78.00,78.25,36320000,1.91 -1993-11-08,79.00,79.50,77.75,78.50,28819200,1.91 -1993-11-05,76.25,79.00,76.00,78.75,56432000,1.92 -1993-11-04,78.75,79.00,76.50,76.50,63177600,1.86 -1993-11-03,80.00,80.50,77.75,78.50,56796800,1.91 -1993-11-02,81.25,81.50,79.50,80.25,42422400,1.96 -1993-11-01,80.25,81.50,79.75,80.87,30163200,1.97 -1993-10-29,79.50,80.25,79.25,80.12,39843200,1.95 -1993-10-28,79.75,80.50,78.75,79.00,56009600,1.93 -1993-10-27,79.50,80.50,79.50,79.87,45564800,1.95 -1993-10-26,80.50,80.75,79.25,79.50,66944000,1.94 -1993-10-25,80.50,81.25,79.00,80.50,48553600,1.96 -1993-10-22,79.25,80.75,79.25,80.37,47625600,1.96 -1993-10-21,78.75,80.00,78.00,79.50,127142400,1.94 -1993-10-20,80.50,81.75,79.25,81.00,81590400,1.97 -1993-10-19,82.00,84.00,79.50,80.25,91392000,1.96 -1993-10-18,81.00,83.25,80.75,83.00,67750400,2.02 -1993-10-15,82.25,83.00,80.25,80.75,126425600,1.97 -1993-10-14,83.75,84.00,82.00,82.12,63257600,2.00 -1993-10-13,83.75,84.25,81.25,83.25,62409600,2.03 -1993-10-12,84.25,85.25,82.25,84.25,79296000,2.05 -1993-10-11,84.50,84.75,82.25,84.00,36457600,2.05 -1993-10-08,84.25,84.75,82.25,84.50,38086400,2.06 -1993-10-07,85.00,85.75,83.75,84.12,41596800,2.05 -1993-10-06,83.25,85.50,83.00,84.87,77321600,2.07 -1993-10-05,82.75,84.75,82.50,83.25,86931200,2.03 -1993-10-04,82.50,84.00,82.50,82.62,40505600,2.01 -1993-10-01,82.50,83.25,82.00,82.00,46048000,2.00 -1993-09-30,82.75,83.25,82.25,82.50,38400000,2.01 -1993-09-29,83.75,84.00,80.75,83.00,87529600,2.02 -1993-09-28,82.25,84.25,82.25,84.00,84012800,2.05 -1993-09-27,81.75,82.50,81.25,82.25,73472000,2.00 -1993-09-24,78.50,80.75,78.50,80.00,91481600,1.95 -1993-09-23,77.25,79.25,76.75,78.75,72214400,1.92 -1993-09-22,76.00,78.00,75.25,77.25,72051200,1.88 -1993-09-21,75.50,77.37,74.75,76.00,57846400,1.85 -1993-09-20,76.25,77.75,75.00,75.62,34691200,1.84 -1993-09-17,75.50,76.50,75.25,76.00,25286400,1.85 -1993-09-16,76.75,77.25,75.75,76.00,25641600,1.85 -1993-09-15,75.75,76.75,74.37,76.50,60428800,1.86 -1993-09-14,76.00,76.25,74.25,75.25,57756800,1.83 -1993-09-13,78.50,78.50,76.25,76.37,33481600,1.86 -1993-09-10,77.00,78.25,76.25,78.00,56540800,1.90 -1993-09-09,75.00,76.50,74.50,76.25,29856000,1.86 -1993-09-08,74.00,74.75,73.25,74.50,54777600,1.82 -1993-09-07,75.75,76.25,74.25,74.75,38659200,1.82 -1993-09-03,76.50,76.75,75.25,75.75,26800000,1.85 -1993-09-02,77.25,78.50,76.12,76.62,55497600,1.87 -1993-09-01,75.25,77.25,75.00,76.75,86035200,1.87 -1993-08-31,73.75,75.50,73.50,75.12,93020800,1.83 -1993-08-30,72.50,73.25,71.75,72.62,54012800,1.77 -1993-08-27,72.25,72.50,71.25,71.87,67763200,1.75 -1993-08-26,73.50,73.75,71.50,72.12,136256000,1.76 -1993-08-25,75.00,76.00,72.87,74.25,68800000,1.81 -1993-08-24,76.50,77.00,75.75,75.87,39417600,1.85 -1993-08-23,75.50,78.25,75.50,77.00,59472000,1.88 -1993-08-20,73.50,76.75,73.25,76.25,73683200,1.86 -1993-08-19,77.25,77.87,73.75,74.25,114742400,1.81 -1993-08-18,77.75,79.25,76.50,77.25,66012800,1.88 -1993-08-17,78.00,78.50,76.00,77.25,54272000,1.88 -1993-08-16,75.75,78.25,75.50,77.75,78451200,1.90 -1993-08-13,74.00,75.75,73.00,75.25,61900800,1.83 -1993-08-12,72.50,74.50,72.25,74.00,77366400,1.80 -1993-08-11,71.25,73.00,71.12,72.37,95974400,1.76 -1993-08-10,73.00,73.25,70.37,71.00,192028800,1.73 -1993-08-09,73.25,74.00,72.25,73.00,70876800,1.78 -1993-08-06,74.75,75.87,72.75,73.25,71760000,1.79 -1993-08-05,73.50,75.00,73.25,74.75,67910400,1.82 -1993-08-04,73.25,73.75,71.75,73.00,94416000,1.78 -1993-08-03,73.00,73.25,72.00,73.00,85136000,1.78 -1993-08-02,74.75,75.75,72.25,72.75,148208000,1.77 -1993-07-30,73.00,74.25,72.00,74.00,287936000,1.80 -1993-07-29,78.00,80.75,77.50,79.00,96534400,1.93 -1993-07-28,76.00,79.50,74.75,78.25,113459200,1.91 -1993-07-27,78.50,78.75,75.50,75.50,112220800,1.84 -1993-07-26,78.25,79.25,77.75,78.25,65801600,1.91 -1993-07-23,77.00,78.25,76.75,77.62,92790400,1.89 -1993-07-22,80.75,81.75,76.75,77.62,147584000,1.89 -1993-07-21,78.50,79.00,76.75,79.00,178963200,1.93 -1993-07-20,79.25,80.50,78.00,80.50,74822400,1.96 -1993-07-19,79.50,80.25,78.00,78.75,122435200,1.92 -1993-07-16,83.25,83.25,80.75,81.12,86217600,1.98 -1993-07-15,84.25,84.25,82.75,83.50,34432000,2.04 -1993-07-14,83.00,85.50,82.50,84.25,43491200,2.05 -1993-07-13,84.00,84.00,82.50,82.75,36476800,2.02 -1993-07-12,84.75,84.75,83.50,83.75,26540800,2.04 -1993-07-09,85.00,85.00,83.50,84.62,50000000,2.06 -1993-07-08,84.00,85.50,84.00,84.87,70105600,2.07 -1993-07-07,82.12,84.25,81.25,83.37,182569600,2.03 -1993-07-06,86.75,87.75,85.25,86.00,47721600,2.10 -1993-07-02,87.25,87.50,86.50,87.25,25404800,2.13 -1993-07-01,88.25,88.50,86.50,87.12,57907200,2.12 -1993-06-30,89.25,90.25,87.25,88.00,56422400,2.14 -1993-06-29,90.25,91.75,88.50,89.00,42361600,2.17 -1993-06-28,88.75,90.25,88.50,90.25,52224000,2.20 -1993-06-25,88.50,89.25,86.75,88.50,45484800,2.16 -1993-06-24,88.25,89.50,87.25,88.50,35782400,2.16 -1993-06-23,88.00,89.25,87.75,88.62,33129600,2.16 -1993-06-22,89.25,89.75,87.25,88.00,41062400,2.14 -1993-06-21,88.75,89.25,87.00,88.62,68102400,2.16 -1993-06-18,90.50,91.25,87.00,87.50,75910400,2.13 -1993-06-17,91.50,91.75,90.50,90.87,28083200,2.21 -1993-06-16,92.75,93.25,89.25,91.25,66966400,2.22 -1993-06-15,93.00,93.00,91.50,92.50,42345600,2.25 -1993-06-14,91.00,92.25,90.25,92.25,40489600,2.25 -1993-06-11,91.75,92.50,89.00,89.37,67542400,2.18 -1993-06-10,91.25,92.50,89.50,91.12,56544000,2.22 -1993-06-09,92.75,93.00,90.75,91.00,62480000,2.22 -1993-06-08,93.00,93.25,90.75,92.25,48131200,2.25 -1993-06-07,94.25,95.75,93.00,93.25,52761600,2.27 -1993-06-04,94.00,94.50,93.50,94.00,32652800,2.29 -1993-06-03,95.75,96.00,94.50,94.62,23936000,2.31 -1993-06-02,95.75,97.50,95.25,95.75,70710400,2.33 -1993-06-01,93.00,98.00,92.75,96.25,173088000,2.35 -1993-05-28,93.50,93.75,91.75,92.62,35136000,2.26 -1993-05-27,95.00,95.50,93.00,94.12,95052800,2.29 -1993-05-26,91.50,95.25,91.25,95.25,87484800,2.32 -1993-05-25,91.75,92.00,90.00,91.25,36716800,2.22 -1993-05-24,92.25,94.00,92.00,92.12,64252800,2.25 -1993-05-21,93.50,94.25,92.00,92.50,75500800,2.25 -1993-05-20,92.25,95.25,92.00,94.12,150256000,2.29 -1993-05-19,90.75,93.00,89.50,92.50,181017600,2.25 -1993-05-18,86.75,88.75,86.50,88.50,84185600,2.16 -1993-05-17,85.75,86.62,85.25,86.50,27763200,2.11 -1993-05-14,86.00,86.75,84.75,85.50,49116800,2.08 -1993-05-13,85.75,86.00,84.50,85.75,43708800,2.09 -1993-05-12,87.50,88.00,85.75,86.25,48272000,2.10 -1993-05-11,88.25,88.75,87.25,87.75,38220800,2.14 -1993-05-10,88.50,90.00,88.00,89.12,69091200,2.17 -1993-05-07,87.25,87.75,86.50,87.00,31798400,2.12 -1993-05-06,89.00,89.75,86.75,87.25,47244800,2.13 -1993-05-05,88.00,90.00,87.50,89.25,51868800,2.18 -1993-05-04,86.75,88.50,86.50,88.00,49664000,2.14 -1993-05-03,85.50,87.00,85.00,86.12,38096000,2.10 -1993-04-30,85.00,86.75,85.00,85.50,46825600,2.08 -1993-04-29,85.75,85.75,84.00,85.50,49660800,2.08 -1993-04-28,83.00,86.00,82.75,86.00,55372800,2.10 -1993-04-27,80.50,82.75,80.25,82.50,58208000,2.01 -1993-04-26,81.50,82.50,79.75,80.37,65376000,1.96 -1993-04-23,83.00,83.25,80.75,81.37,89296000,1.98 -1993-04-22,84.50,85.00,82.87,83.25,79872000,2.03 -1993-04-21,86.75,86.75,84.25,84.87,92528000,2.07 -1993-04-20,86.75,87.50,85.00,86.75,46009600,2.11 -1993-04-19,87.00,87.25,85.00,87.00,45673600,2.12 -1993-04-16,87.25,87.75,85.50,87.00,49600000,2.12 -1993-04-15,88.00,89.87,86.00,87.12,109152000,2.12 -1993-04-14,89.00,90.25,87.75,89.00,38592000,2.17 -1993-04-13,90.25,92.25,88.75,88.87,53337600,2.17 -1993-04-12,88.75,91.25,88.50,90.12,48976000,2.20 -1993-04-08,90.00,90.25,88.25,89.00,40185600,2.17 -1993-04-07,90.00,90.50,89.25,90.25,39417600,2.20 -1993-04-06,91.75,93.00,89.25,89.75,55699200,2.19 -1993-04-05,88.75,92.25,88.00,91.50,61187200,2.23 -1993-04-02,91.75,92.00,89.75,89.75,73251200,2.19 -1993-04-01,92.50,94.75,92.50,93.00,100412800,2.27 -1993-03-31,91.25,94.25,90.75,92.50,179660800,2.25 -1993-03-30,88.50,91.25,87.25,91.00,140777600,2.22 -1993-03-29,86.75,88.50,86.75,87.00,48262400,2.12 -1993-03-26,88.00,88.25,86.00,86.62,28380800,2.11 -1993-03-25,86.50,88.25,86.37,87.37,43833600,2.13 -1993-03-24,83.25,86.75,83.00,86.25,50576000,2.10 -1993-03-23,83.50,85.00,83.00,83.12,34409600,2.03 -1993-03-22,83.25,84.00,82.50,83.37,34083200,2.03 -1993-03-19,85.75,85.75,84.00,84.25,45404800,2.05 -1993-03-18,85.75,86.75,85.00,85.25,34406400,2.08 -1993-03-17,86.75,87.50,85.25,85.37,39644800,2.08 -1993-03-16,88.25,88.75,87.00,87.75,36336000,2.14 -1993-03-15,89.25,89.25,87.00,87.62,35347200,2.14 -1993-03-12,86.00,89.25,85.25,89.00,73580800,2.17 -1993-03-11,85.25,87.75,85.00,86.50,57779200,2.11 -1993-03-10,84.50,85.75,83.50,85.00,26592000,2.07 -1993-03-09,84.00,85.00,83.75,84.25,41312000,2.05 -1993-03-08,82.62,84.50,82.00,83.62,48022400,2.04 -1993-03-05,83.50,85.00,82.50,82.75,35724800,2.02 -1993-03-04,84.75,84.75,81.75,83.75,56659200,2.04 -1993-03-03,84.75,85.50,83.50,84.75,42352000,2.07 -1993-03-02,81.75,84.75,81.25,84.62,38380800,2.06 -1993-03-01,83.75,83.75,81.25,81.50,26432000,1.99 -1993-02-26,84.25,85.00,83.00,83.37,29833600,2.03 -1993-02-25,82.50,85.00,82.50,84.37,60806400,2.06 -1993-02-24,79.00,84.00,78.75,83.87,77548800,2.04 -1993-02-23,78.00,80.50,76.75,79.50,105974400,1.94 -1993-02-22,79.75,81.00,76.75,76.75,76256000,1.87 -1993-02-19,81.87,82.00,79.50,79.75,97094400,1.94 -1993-02-18,81.25,82.75,79.00,81.62,138553600,1.99 -1993-02-17,81.00,81.25,77.25,80.25,121913600,1.96 -1993-02-16,82.87,83.75,79.75,80.12,91180800,1.95 -1993-02-12,85.25,85.25,83.25,83.62,34752000,2.04 -1993-02-11,86.25,86.50,84.75,85.25,31635200,2.08 -1993-02-10,84.50,86.25,84.00,85.50,39193600,2.08 -1993-02-09,86.75,87.25,83.50,83.87,64550400,2.04 -1993-02-08,88.50,89.00,85.00,85.75,92665600,2.09 -1993-02-05,84.75,89.50,82.25,89.00,177216000,2.17 -1993-02-04,87.75,87.75,84.50,85.00,124214400,2.07 -1993-02-03,89.50,90.25,88.00,88.37,71728000,2.15 -1993-02-02,87.37,89.50,87.25,89.00,70371200,2.17 -1993-02-01,86.25,88.00,85.50,87.50,42854400,2.13 -1993-01-29,87.50,88.00,85.75,86.50,39424000,2.11 -1993-01-28,86.25,87.12,84.75,87.00,77030400,2.12 -1993-01-27,87.50,87.75,85.50,86.25,64192000,2.10 -1993-01-26,88.50,90.00,87.50,88.00,42345600,2.14 -1993-01-25,89.25,90.25,87.75,88.50,49609600,2.16 -1993-01-22,89.75,90.25,88.75,89.37,49088000,2.18 -1993-01-21,87.75,90.00,86.75,89.50,73363200,2.18 -1993-01-20,88.50,89.00,87.75,88.37,47968000,2.15 -1993-01-19,89.00,89.25,88.25,88.37,52960000,2.15 -1993-01-18,89.50,89.75,88.25,89.25,50611200,2.18 -1993-01-15,87.50,91.00,87.00,89.75,181958400,2.19 -1993-01-14,92.25,94.00,90.50,91.25,121264000,2.22 -1993-01-13,89.50,92.25,88.25,91.25,83696000,2.22 -1993-01-12,89.00,91.25,88.75,89.75,85129600,2.19 -1993-01-11,87.25,89.25,86.25,89.12,58348800,2.17 -1993-01-08,87.25,88.25,86.25,87.12,43977600,2.12 -1993-01-07,89.00,89.87,87.00,87.25,58748800,2.13 -1993-01-06,87.00,89.25,86.75,89.00,87440000,2.17 -1993-01-05,85.00,86.75,84.75,86.50,71529600,2.11 -1993-01-04,85.00,85.75,84.50,85.12,72646400,2.07 -1992-12-31,86.00,86.25,85.25,85.37,30851200,2.08 -1992-12-30,86.75,87.00,85.25,85.87,50860800,2.09 -1992-12-29,87.25,87.50,86.25,86.50,60035200,2.11 -1992-12-28,87.25,87.75,86.00,87.50,45731200,2.13 -1992-12-24,87.25,87.25,86.00,87.25,32723200,2.13 -1992-12-23,88.00,88.25,86.00,87.25,59974400,2.13 -1992-12-22,91.00,91.50,87.00,87.75,56928000,2.14 -1992-12-21,89.75,92.00,89.25,90.50,64928000,2.21 -1992-12-18,89.00,90.25,88.50,90.00,74387200,2.19 -1992-12-17,87.25,90.25,87.00,90.00,51859200,2.19 -1992-12-16,86.50,88.25,85.25,87.00,73792000,2.12 -1992-12-15,87.25,87.75,85.50,86.37,45289600,2.11 -1992-12-14,86.75,88.25,86.50,87.12,51286400,2.12 -1992-12-11,88.50,89.00,85.75,86.37,112934400,2.11 -1992-12-10,90.00,91.75,88.50,89.00,89296000,2.17 -1992-12-09,91.75,93.25,91.25,92.00,26048000,2.24 -1992-12-08,93.75,94.00,91.50,92.50,26908800,2.25 -1992-12-07,92.00,93.50,91.00,93.37,46422400,2.28 -1992-12-04,91.50,92.50,91.25,91.75,23548800,2.24 -1992-12-03,90.75,92.50,90.50,91.62,26048000,2.23 -1992-12-02,93.00,93.50,90.50,90.75,49881600,2.21 -1992-12-01,92.75,93.50,92.00,93.12,33593600,2.27 -1992-11-30,92.50,93.25,91.75,93.12,35251200,2.27 -1992-11-27,91.50,92.50,91.00,91.75,17593600,2.24 -1992-11-25,92.00,92.50,90.25,91.12,53152000,2.22 -1992-11-24,91.25,92.75,89.25,91.50,145513600,2.23 -1992-11-23,90.25,91.75,87.25,88.50,309884800,2.16 -1992-11-20,94.00,95.00,93.75,95.00,41113600,2.32 -1992-11-19,92.25,95.00,92.25,94.00,46857600,2.29 -1992-11-18,90.50,92.50,89.87,92.00,33273600,2.24 -1992-11-17,92.87,94.00,89.25,90.00,56649600,2.19 -1992-11-16,93.00,93.50,92.25,92.75,19312000,2.26 -1992-11-13,93.50,93.75,92.50,93.25,25811200,2.27 -1992-11-12,93.75,94.25,92.00,93.50,46960000,2.28 -1992-11-11,92.75,95.00,92.25,93.75,60748800,2.29 -1992-11-10,92.00,93.25,91.50,92.87,38710400,2.26 -1992-11-09,92.75,92.75,90.50,91.87,54796800,2.24 -1992-11-06,91.75,93.25,91.25,92.75,61155200,2.26 -1992-11-05,89.00,92.25,88.25,91.87,90361600,2.24 -1992-11-04,88.25,89.75,88.00,88.50,23657600,2.16 -1992-11-03,89.50,89.75,87.62,88.25,35267200,2.15 -1992-11-02,89.00,90.00,87.75,89.62,31091200,2.18 -1992-10-30,89.87,90.00,88.50,88.75,24998400,2.16 -1992-10-29,88.75,90.00,88.50,90.00,32774400,2.19 -1992-10-28,88.25,88.75,87.25,88.50,36172800,2.16 -1992-10-27,90.00,90.25,87.50,88.00,49116800,2.14 -1992-10-26,88.50,90.25,87.75,90.00,40121600,2.19 -1992-10-23,90.25,90.25,88.25,88.62,46006400,2.16 -1992-10-22,90.00,90.25,88.25,89.75,49174400,2.19 -1992-10-21,88.25,90.00,87.75,90.00,60396800,2.19 -1992-10-20,88.25,89.75,87.00,87.87,84150400,2.14 -1992-10-19,85.00,88.25,85.00,87.87,83280000,2.14 -1992-10-16,84.75,85.50,83.75,85.37,47644800,2.08 -1992-10-15,83.25,84.75,82.75,84.50,35942400,2.06 -1992-10-14,84.37,85.00,83.00,83.50,47456000,2.04 -1992-10-13,84.75,85.37,83.25,84.25,86643200,2.05 -1992-10-12,83.00,84.00,82.75,83.87,34700800,2.04 -1992-10-09,83.50,83.50,81.50,82.37,40182400,2.01 -1992-10-08,82.25,84.50,81.75,83.37,59532800,2.03 -1992-10-07,82.50,84.25,81.00,81.12,58153600,1.98 -1992-10-06,82.25,83.50,81.25,82.50,74316800,2.01 -1992-10-05,78.50,81.75,75.75,81.75,71347200,1.99 -1992-10-02,79.25,79.75,78.00,78.75,36803200,1.92 -1992-10-01,80.00,81.00,79.50,79.62,47804800,1.94 -1992-09-30,79.75,80.50,78.75,80.50,59843200,1.96 -1992-09-29,77.00,79.00,77.00,78.75,39392000,1.92 -1992-09-28,76.50,78.25,76.25,77.00,52854400,1.88 -1992-09-25,80.25,80.37,76.00,78.75,41817600,1.92 -1992-09-24,79.25,80.50,79.25,80.25,36953600,1.96 -1992-09-23,77.75,79.75,77.50,79.12,37654400,1.93 -1992-09-22,79.00,79.12,77.50,77.75,30777600,1.90 -1992-09-21,78.75,79.50,78.25,79.12,31811200,1.93 -1992-09-18,81.25,81.50,78.37,79.87,71683200,1.95 -1992-09-17,80.50,81.50,80.25,81.12,23590400,1.98 -1992-09-16,79.75,81.75,79.50,80.37,35708800,1.96 -1992-09-15,81.50,81.75,80.00,81.25,44614400,1.98 -1992-09-14,79.75,82.00,79.75,81.75,95100800,1.99 -1992-09-11,78.50,79.25,78.00,78.75,30796800,1.92 -1992-09-10,78.25,79.00,77.50,79.00,53302400,1.93 -1992-09-09,76.75,78.37,76.50,78.12,60982400,1.90 -1992-09-08,76.00,76.87,75.25,76.75,49376000,1.87 -1992-09-04,76.25,76.50,75.50,76.00,28585600,1.85 -1992-09-03,75.75,77.25,75.50,76.62,85296000,1.87 -1992-09-02,74.50,75.75,73.75,75.37,61955200,1.84 -1992-09-01,74.00,74.62,73.25,74.50,30825600,1.82 -1992-08-31,74.25,75.00,73.50,74.50,25651200,1.82 -1992-08-28,73.50,74.50,73.50,74.37,49468800,1.81 -1992-08-27,72.00,74.00,72.00,73.62,88028800,1.79 -1992-08-26,70.25,72.25,70.25,71.62,50016000,1.75 -1992-08-25,68.75,70.75,68.50,70.37,37123200,1.72 -1992-08-24,69.62,70.00,68.75,69.00,42800000,1.68 -1992-08-21,70.50,70.87,69.00,69.75,52710400,1.70 -1992-08-20,69.50,70.75,69.00,70.37,36534400,1.72 -1992-08-19,69.50,70.50,68.75,69.25,27433600,1.69 -1992-08-18,69.00,70.75,68.00,69.50,66313600,1.69 -1992-08-17,70.75,71.00,69.50,69.50,63318400,1.69 -1992-08-14,71.00,71.75,70.75,71.00,33942400,1.73 -1992-08-13,71.25,71.75,70.50,70.87,28227200,1.73 -1992-08-12,71.75,72.50,70.75,71.00,30441600,1.73 -1992-08-11,71.25,71.87,70.00,71.37,33436800,1.74 -1992-08-10,71.00,72.50,70.75,70.87,42067200,1.73 -1992-08-07,71.50,73.75,70.50,70.75,55008000,1.72 -1992-08-06,71.50,72.00,70.25,71.50,3705600,1.74 -1992-08-05,73.75,73.75,71.25,72.00,60150400,1.75 -1992-08-04,74.00,74.50,73.50,73.87,31430400,1.80 -1992-08-03,72.75,74.25,72.00,73.75,31516800,1.80 -1992-07-31,73.50,73.50,72.25,72.75,35312000,1.77 -1992-07-30,73.50,74.50,73.00,73.12,32035200,1.78 -1992-07-29,74.50,74.75,72.00,74.00,145273600,1.80 -1992-07-28,73.50,74.50,72.75,74.00,45363200,1.80 -1992-07-27,72.75,73.50,72.25,73.00,30512000,1.78 -1992-07-24,71.12,73.75,71.00,72.75,76259200,1.77 -1992-07-23,69.75,72.25,68.75,71.00,68441600,1.73 -1992-07-22,71.75,71.75,69.50,70.00,59008000,1.71 -1992-07-21,70.00,72.75,69.50,71.75,45907200,1.75 -1992-07-20,69.50,70.25,68.50,69.25,48707200,1.69 -1992-07-17,71.75,72.00,69.75,70.25,59865600,1.71 -1992-07-16,71.00,72.25,70.75,72.25,42291200,1.76 -1992-07-15,71.75,73.25,71.00,71.50,80172800,1.74 -1992-07-14,70.50,71.50,70.25,71.12,41116800,1.73 -1992-07-13,69.75,71.25,68.50,70.00,35113600,1.71 -1992-07-10,69.25,70.00,67.62,69.50,28905600,1.69 -1992-07-09,69.00,70.75,68.25,69.00,61174400,1.68 -1992-07-08,68.00,69.00,65.50,68.62,93417600,1.67 -1992-07-07,69.75,69.75,67.25,68.00,54396800,1.66 -1992-07-06,70.00,70.25,67.75,69.50,36224000,1.69 -1992-07-02,72.75,73.00,68.75,69.87,80563200,1.70 -1992-07-01,70.25,72.75,69.50,72.12,45136000,1.76 -1992-06-30,72.75,73.00,69.50,70.00,74048000,1.71 -1992-06-29,68.50,72.75,68.25,72.25,90963200,1.76 -1992-06-26,69.50,69.75,65.75,66.75,140982400,1.63 -1992-06-25,72.25,72.25,66.50,70.00,165340800,1.71 -1992-06-24,73.75,73.75,71.75,72.25,34096000,1.76 -1992-06-23,74.75,75.75,72.75,73.50,57420800,1.79 -1992-06-22,73.25,74.50,71.50,74.25,54080000,1.81 -1992-06-19,73.50,74.25,72.75,73.50,43110400,1.79 -1992-06-18,73.00,74.75,71.00,72.25,53356800,1.76 -1992-06-17,72.50,73.25,71.50,72.37,70032000,1.76 -1992-06-16,75.50,76.50,72.50,72.75,57376000,1.77 -1992-06-15,75.00,78.00,75.00,75.75,54940800,1.85 -1992-06-12,110.25,113.00,108.87,112.50,138028800,1.83 -1992-06-11,112.50,115.25,107.50,108.00,130732800,1.75 -1992-06-10,115.25,115.50,112.00,112.50,65456000,1.83 -1992-06-09,118.50,119.00,114.00,115.00,84604800,1.87 -1992-06-08,120.75,121.00,118.25,118.25,40227200,1.92 -1992-06-05,122.50,123.00,120.75,121.00,40937600,1.97 -1992-06-04,123.25,123.50,122.50,122.62,41753600,1.99 -1992-06-03,122.50,124.25,122.50,123.00,28188800,2.00 -1992-06-02,124.25,124.50,122.25,122.87,42585600,2.00 -1992-06-01,120.50,124.25,120.00,124.25,68528000,2.02 -1992-05-29,119.75,122.25,119.50,121.00,89916800,1.97 -1992-05-28,114.75,119.50,114.50,119.00,62700800,1.93 -1992-05-27,115.75,116.25,114.75,115.00,31164800,1.87 -1992-05-26,116.00,117.00,115.00,115.50,38217600,1.88 -1992-05-22,117.00,117.00,115.00,115.75,36969600,1.88 -1992-05-21,117.00,117.00,115.25,116.62,48566400,1.90 -1992-05-20,114.50,117.00,114.50,116.75,58800000,1.90 -1992-05-19,113.25,114.50,113.25,114.50,51238400,1.86 -1992-05-18,110.75,113.50,110.50,112.75,37526400,1.83 -1992-05-15,110.25,111.50,109.50,110.00,40812800,1.79 -1992-05-14,112.75,113.00,109.25,110.75,72307200,1.80 -1992-05-13,113.75,114.25,111.00,112.75,64320000,1.83 -1992-05-12,114.75,115.25,112.75,114.25,49904000,1.86 -1992-05-11,114.75,115.25,113.25,114.00,41110400,1.85 -1992-05-08,116.00,117.00,113.25,114.50,59820800,1.86 -1992-05-07,116.00,116.50,114.25,115.00,40579200,1.87 -1992-05-06,117.00,117.25,115.50,116.00,50016000,1.88 -1992-05-05,113.75,117.50,113.25,116.50,59244800,1.89 -1992-05-04,113.50,116.00,112.50,114.00,73920000,1.85 -1992-05-01,110.50,114.00,110.25,113.75,62083200,1.85 -1992-04-30,112.00,112.75,109.75,110.25,95868800,1.79 -1992-04-29,109.50,111.50,108.25,111.37,137308800,1.81 -1992-04-28,113.75,114.50,107.00,109.00,199875200,1.77 -1992-04-27,112.50,116.50,112.50,113.25,99584000,1.84 -1992-04-24,116.00,116.75,112.00,112.25,90393600,1.82 -1992-04-23,118.50,119.00,112.25,115.75,115334400,1.88 -1992-04-22,116.50,118.50,114.50,117.62,61788800,1.91 -1992-04-21,118.25,118.50,115.50,116.12,99244800,1.89 -1992-04-20,124.50,125.00,115.50,118.12,226118400,1.92 -1992-04-16,129.00,129.00,127.00,127.62,66393600,2.07 -1992-04-15,128.75,129.25,126.50,128.88,223305600,2.09 -1992-04-14,118.25,120.25,116.50,117.00,72806400,1.90 -1992-04-13,116.75,118.12,114.25,117.50,45552000,1.91 -1992-04-10,121.25,122.00,114.00,116.00,126444800,1.88 -1992-04-09,118.25,120.25,116.62,120.00,70006400,1.95 -1992-04-08,115.75,117.50,113.25,117.25,105388800,1.91 -1992-04-07,122.00,122.50,115.75,116.00,72758400,1.88 -1992-04-06,117.75,121.62,117.75,121.25,40121600,1.97 -1992-04-03,117.50,119.25,116.75,117.50,59532800,1.91 -1992-04-02,120.50,121.50,116.75,117.00,56918400,1.90 -1992-04-01,117.25,120.75,117.00,120.50,74201600,1.96 -1992-03-31,120.50,122.00,117.75,118.50,86700800,1.93 -1992-03-30,121.50,122.00,120.00,120.00,40713600,1.95 -1992-03-27,124.50,125.00,119.50,121.25,89971200,1.97 -1992-03-26,128.75,129.00,124.25,125.00,60403200,2.03 -1992-03-25,127.50,129.25,127.00,128.50,36739200,2.09 -1992-03-24,129.00,129.88,126.50,127.50,70227200,2.07 -1992-03-23,128.50,129.25,127.75,128.50,37843200,2.09 -1992-03-20,127.50,129.00,127.50,128.50,35772800,2.09 -1992-03-19,127.00,130.25,126.25,127.50,111574400,2.07 -1992-03-18,128.50,129.00,126.00,126.37,69228800,2.05 -1992-03-17,125.37,128.75,124.75,128.00,94473600,2.08 -1992-03-16,121.00,124.25,120.50,124.25,55132800,2.02 -1992-03-13,122.50,123.00,120.50,121.00,36761600,1.97 -1992-03-12,120.25,121.50,118.50,121.12,50025600,1.97 -1992-03-11,122.25,123.25,119.25,120.25,39532800,1.95 -1992-03-10,119.50,122.75,119.25,121.75,45478400,1.98 -1992-03-09,118.75,120.50,118.25,119.00,30425600,1.93 -1992-03-06,120.75,122.00,116.75,118.25,61865600,1.92 -1992-03-05,122.50,123.25,119.25,121.25,55689600,1.97 -1992-03-04,123.25,124.25,121.75,122.50,33084800,1.99 -1992-03-03,123.50,125.25,122.50,123.25,27734400,2.00 -1992-03-02,123.75,125.75,121.75,123.00,34876800,2.00 -1992-02-28,125.00,126.50,122.25,123.50,58275200,2.01 -1992-02-27,122.75,125.25,122.75,124.87,79577600,2.03 -1992-02-26,116.00,122.00,116.00,122.00,100668800,1.98 -1992-02-25,115.00,116.50,113.25,115.75,57388800,1.88 -1992-02-24,114.50,116.50,113.00,114.87,59049600,1.87 -1992-02-21,117.00,118.50,113.75,114.50,91116800,1.86 -1992-02-20,116.00,119.25,115.75,117.50,74323200,1.91 -1992-02-19,118.00,118.00,113.50,115.12,145372800,1.87 -1992-02-18,119.25,122.25,118.00,118.25,73692800,1.92 -1992-02-14,122.25,122.50,118.00,118.50,82630400,1.93 -1992-02-13,125.50,126.50,121.50,122.50,97356800,1.99 -1992-02-12,118.62,126.75,118.62,125.75,83340800,2.04 -1992-02-11,124.25,124.75,121.50,122.50,41078400,1.99 -1992-02-10,125.62,126.00,122.00,124.50,41369600,2.02 -1992-02-07,126.25,127.50,124.00,125.75,36499200,2.04 -1992-02-06,126.50,129.00,125.75,126.25,62355200,2.05 -1992-02-05,124.75,128.50,123.50,127.25,71212800,2.07 -1992-02-04,125.25,126.00,122.50,124.50,58438400,2.02 -1992-02-03,118.25,125.50,117.50,125.00,80265600,2.03 -1992-01-31,123.50,123.75,119.75,120.25,49948800,1.95 -1992-01-30,124.50,124.75,121.50,123.50,41923200,2.01 -1992-01-29,122.50,125.75,121.75,124.50,97344000,2.02 -1992-01-28,121.00,121.75,116.00,120.75,95539200,1.96 -1992-01-27,124.75,125.50,120.50,120.62,46233600,1.96 -1992-01-24,124.50,125.50,124.00,124.62,37756800,2.03 -1992-01-23,125.50,129.38,123.75,125.00,75590400,2.03 -1992-01-22,120.00,125.50,119.00,125.50,56131200,2.04 -1992-01-21,122.25,123.00,116.00,119.37,120019200,1.94 -1992-01-20,127.25,127.25,122.50,122.50,58860800,1.99 -1992-01-17,127.75,129.50,123.75,126.50,85027200,2.06 -1992-01-16,131.25,132.00,127.50,127.75,58761600,2.08 -1992-01-15,128.75,133.25,128.25,131.50,65292800,2.14 -1992-01-14,127.50,128.50,126.00,128.25,44006400,2.08 -1992-01-13,124.00,128.88,122.75,127.12,52803200,2.07 -1992-01-10,127.00,127.75,124.00,125.25,64640000,2.04 -1992-01-09,124.25,129.00,124.00,127.25,88348800,2.07 -1992-01-08,119.00,125.75,118.75,124.25,90761600,2.02 -1992-01-07,116.50,120.25,115.75,120.00,64361600,1.95 -1992-01-06,113.25,117.75,112.37,116.50,63056000,1.89 -1992-01-03,114.00,114.25,111.75,113.00,38246400,1.84 -1992-01-02,110.75,114.75,109.50,114.00,74265600,1.85 -1991-12-31,110.75,112.00,108.75,111.25,40512000,1.81 -1991-12-30,110.50,111.25,109.50,110.75,35523200,1.80 -1991-12-27,108.25,111.50,107.75,110.37,36656000,1.79 -1991-12-26,106.25,108.25,105.75,107.87,24326400,1.75 -1991-12-24,106.75,107.50,106.00,106.25,23993600,1.73 -1991-12-23,103.25,106.75,102.50,106.75,46112000,1.73 -1991-12-20,104.00,105.00,102.25,103.25,35356800,1.68 -1991-12-19,102.37,103.25,101.25,102.75,38115200,1.67 -1991-12-18,102.00,103.25,101.25,102.87,33561600,1.67 -1991-12-17,102.00,103.50,100.25,101.87,27478400,1.66 -1991-12-16,102.00,102.25,100.75,102.12,27225600,1.66 -1991-12-13,102.25,102.75,101.50,102.00,26192000,1.66 -1991-12-12,101.00,103.25,100.50,102.00,36979200,1.66 -1991-12-11,102.12,102.75,99.50,100.75,39132800,1.64 -1991-12-10,102.00,102.00,100.00,101.75,46252800,1.65 -1991-12-09,103.25,103.75,101.25,102.00,57718400,1.66 -1991-12-06,101.50,105.25,101.00,104.25,51580800,1.69 -1991-12-05,101.75,102.25,100.75,101.75,24892800,1.65 -1991-12-04,101.75,103.00,100.00,102.00,36297600,1.66 -1991-12-03,101.00,102.75,99.50,101.37,64995200,1.65 -1991-12-02,96.25,101.50,96.00,101.25,55852800,1.65 -1991-11-29,94.75,97.75,94.75,97.25,20524800,1.58 -1991-11-27,94.25,95.50,94.00,95.25,15008000,1.55 -1991-11-26,96.12,96.25,92.75,94.50,58809600,1.54 -1991-11-25,95.75,97.00,95.25,95.62,33724800,1.55 -1991-11-22,97.00,97.50,95.25,96.00,38102400,1.56 -1991-11-21,96.25,97.25,95.75,97.25,35558400,1.58 -1991-11-20,97.00,97.50,96.00,96.50,36441600,1.57 -1991-11-19,96.25,97.37,94.25,96.25,71974400,1.56 -1991-11-18,95.25,97.75,95.00,97.25,72432000,1.58 -1991-11-15,99.00,100.50,94.75,95.00,71590400,1.54 -1991-11-14,101.50,101.50,98.75,99.25,44371200,1.61 -1991-11-13,99.50,101.75,98.75,101.00,57523200,1.64 -1991-11-12,98.25,100.75,98.00,99.87,80035200,1.62 -1991-11-11,96.00,98.00,95.62,97.50,40563200,1.58 -1991-11-08,95.00,96.75,95.00,95.25,36492800,1.55 -1991-11-07,95.50,95.75,94.50,94.75,20892800,1.54 -1991-11-06,94.00,95.50,93.25,95.25,38307200,1.55 -1991-11-05,91.25,94.50,91.00,93.75,51737600,1.52 -1991-11-04,92.25,92.50,90.75,91.00,28838400,1.48 -1991-11-01,93.50,93.75,92.00,92.62,34294400,1.51 -1991-10-31,94.50,95.25,93.25,93.87,41091200,1.53 -1991-10-30,90.75,94.75,90.75,94.50,65590400,1.54 -1991-10-29,90.25,90.75,89.75,90.75,36521600,1.47 -1991-10-28,89.50,90.25,87.75,90.25,37952000,1.47 -1991-10-25,90.25,90.75,89.25,89.50,28080000,1.45 -1991-10-24,90.50,90.50,89.25,90.25,26940800,1.47 -1991-10-23,91.75,92.00,89.75,90.25,36723200,1.47 -1991-10-22,91.50,92.75,91.25,91.37,32496000,1.48 -1991-10-21,90.00,91.50,89.75,91.00,28704000,1.48 -1991-10-18,90.00,91.25,89.75,90.00,37843200,1.46 -1991-10-17,90.75,90.75,88.50,89.25,95561600,1.45 -1991-10-16,91.50,91.50,89.87,90.75,100198400,1.47 -1991-10-15,92.25,92.25,90.75,91.37,57852800,1.48 -1991-10-14,90.00,92.25,90.00,92.25,50624000,1.50 -1991-10-11,90.75,91.00,87.75,89.62,69920000,1.46 -1991-10-10,90.50,90.50,88.50,89.75,42048000,1.46 -1991-10-09,89.50,91.25,89.25,89.50,60931200,1.45 -1991-10-08,88.00,89.50,88.00,89.25,37708800,1.45 -1991-10-07,87.25,88.87,86.75,88.50,27187200,1.44 -1991-10-04,88.00,89.00,87.50,88.12,26457600,1.43 -1991-10-03,86.50,88.25,86.25,87.50,34630400,1.42 -1991-10-02,88.50,90.50,86.25,87.00,67219200,1.41 -1991-10-01,89.00,89.25,88.00,88.87,19625600,1.44 -1991-09-30,88.25,89.50,87.00,89.00,27699200,1.45 -1991-09-27,89.50,89.50,87.75,88.25,33273600,1.43 -1991-09-26,87.50,90.00,87.25,89.25,48000000,1.45 -1991-09-25,88.00,88.37,86.50,87.75,25766400,1.43 -1991-09-24,85.25,88.25,85.25,88.00,47625600,1.43 -1991-09-23,86.25,86.50,84.50,84.87,49769600,1.38 -1991-09-20,86.75,87.00,86.00,86.50,30316800,1.41 -1991-09-19,85.00,87.25,84.75,86.25,51363200,1.40 -1991-09-18,84.00,85.50,83.75,84.75,26940800,1.38 -1991-09-17,82.75,84.75,82.00,84.50,23366400,1.37 -1991-09-16,83.00,83.50,82.25,83.00,21686400,1.35 -1991-09-13,85.50,85.75,82.50,83.00,51360000,1.35 -1991-09-12,83.00,85.75,83.00,85.62,53808000,1.39 -1991-09-11,80.50,82.25,80.50,82.00,64032000,1.33 -1991-09-10,82.00,82.50,80.00,80.00,65936000,1.30 -1991-09-09,80.75,81.50,80.25,80.75,31913600,1.31 -1991-09-06,81.00,82.25,80.25,80.75,50787200,1.31 -1991-09-05,83.00,83.00,80.00,80.50,58457600,1.31 -1991-09-04,83.25,83.50,81.00,82.62,38467200,1.34 -1991-09-03,85.00,85.00,82.50,83.12,33494400,1.35 -1991-08-30,85.75,86.25,84.50,85.25,22032000,1.39 -1991-08-29,86.00,86.50,85.00,85.75,27974400,1.39 -1991-08-28,84.75,86.75,84.50,85.62,41558400,1.39 -1991-08-27,84.75,85.00,84.00,84.75,34204800,1.38 -1991-08-26,84.75,85.25,83.50,85.25,44134400,1.39 -1991-08-23,84.00,86.50,84.00,85.25,43161600,1.39 -1991-08-22,84.25,85.25,83.25,84.00,43625600,1.36 -1991-08-21,82.00,84.50,81.75,84.00,73212800,1.36 -1991-08-20,80.62,81.87,80.00,80.50,57324800,1.31 -1991-08-19,77.50,81.25,77.00,80.25,85424000,1.30 -1991-08-16,80.75,82.37,80.25,81.75,52073600,1.33 -1991-08-15,82.50,83.25,81.00,81.50,45459200,1.32 -1991-08-14,82.75,83.50,82.00,82.50,67008000,1.34 -1991-08-13,83.75,83.75,82.25,82.50,94496000,1.34 -1991-08-12,79.75,83.75,79.75,83.00,56899200,1.35 -1991-08-09,78.75,82.00,78.25,80.75,114806400,1.31 -1991-08-08,76.00,79.25,76.00,79.00,91852800,1.28 -1991-08-07,74.75,76.50,74.50,76.00,69235200,1.23 -1991-08-06,72.25,75.00,72.25,74.50,53097600,1.21 -1991-08-05,73.25,73.25,71.75,72.25,28252800,1.17 -1991-08-02,73.75,74.75,73.25,73.25,81369600,1.19 -1991-08-01,73.75,74.00,73.00,73.25,53942400,1.19 -1991-07-31,73.00,74.00,72.75,73.50,111628800,1.19 -1991-07-30,70.50,73.00,69.75,72.75,78038400,1.18 -1991-07-29,71.00,71.25,68.75,70.25,136467200,1.14 -1991-07-26,67.00,71.75,66.75,71.00,149292800,1.15 -1991-07-25,67.00,68.00,65.87,66.00,90211200,1.07 -1991-07-24,67.00,67.25,65.00,65.50,54320000,1.06 -1991-07-23,68.00,68.25,66.50,66.50,35596800,1.08 -1991-07-22,66.75,68.75,66.50,67.50,35136000,1.10 -1991-07-19,67.50,68.00,66.00,67.75,24441600,1.10 -1991-07-18,68.00,69.25,66.75,67.00,25654400,1.09 -1991-07-17,65.75,67.75,65.00,67.75,40524800,1.10 -1991-07-16,70.00,70.00,67.50,67.50,42732800,1.10 -1991-07-15,68.75,70.25,68.50,69.87,36761600,1.14 -1991-07-12,67.00,68.50,66.00,68.00,35174400,1.10 -1991-07-11,65.75,66.75,65.00,66.25,51148800,1.08 -1991-07-10,68.25,68.75,65.00,65.25,67308800,1.06 -1991-07-09,67.50,68.75,66.50,67.87,76947200,1.10 -1991-07-08,60.75,67.25,60.50,67.00,109184000,1.09 -1991-07-05,63.75,63.75,61.50,61.75,78758400,1.00 -1991-07-03,64.50,65.00,61.75,64.00,191628800,1.04 -1991-07-02,71.25,72.25,68.00,68.12,43920000,1.11 -1991-07-01,68.75,71.62,67.75,71.37,72387200,1.16 -1991-06-28,67.75,68.75,65.50,68.12,61526400,1.11 -1991-06-27,67.75,68.25,66.75,68.00,56508800,1.10 -1991-06-26,99.00,101.50,98.25,100.75,96636800,1.09 -1991-06-25,99.25,100.25,98.00,98.75,97228800,1.07 -1991-06-24,101.00,101.50,97.50,98.12,79692800,1.06 -1991-06-21,101.25,103.00,101.25,102.25,67680000,1.11 -1991-06-20,101.00,101.75,99.00,100.75,187996800,1.09 -1991-06-19,109.75,109.75,103.00,103.37,157036800,1.12 -1991-06-18,113.25,113.50,109.75,111.50,46848000,1.21 -1991-06-17,113.75,114.75,112.50,113.50,29417600,1.23 -1991-06-14,111.25,113.75,111.00,113.50,46358400,1.23 -1991-06-13,111.00,112.25,110.50,111.00,38000000,1.20 -1991-06-12,110.75,112.25,110.25,111.12,51065600,1.20 -1991-06-11,111.00,113.00,110.50,110.62,41846400,1.20 -1991-06-10,110.25,111.00,109.75,110.50,29494400,1.20 -1991-06-07,109.75,110.25,108.75,110.25,51984000,1.19 -1991-06-06,112.75,113.00,110.50,111.12,32678400,1.20 -1991-06-05,112.50,114.25,112.00,112.00,41385600,1.21 -1991-06-04,112.00,113.50,110.50,113.00,35033600,1.22 -1991-06-03,109.50,112.25,109.00,112.00,46947200,1.21 -1991-05-31,110.50,111.00,108.00,109.75,81782400,1.19 -1991-05-30,110.12,111.75,109.00,110.25,61833600,1.19 -1991-05-29,111.25,112.00,109.75,110.25,64198400,1.19 -1991-05-28,110.50,111.75,110.00,110.75,43939200,1.20 -1991-05-24,110.00,112.50,109.50,110.00,67929600,1.19 -1991-05-23,107.00,109.75,107.00,109.50,67750400,1.19 -1991-05-22,102.75,106.75,102.25,106.75,88780800,1.16 -1991-05-21,99.75,103.25,99.50,102.00,83568000,1.10 -1991-05-20,99.50,100.00,97.75,99.12,65936000,1.07 -1991-05-17,99.00,99.50,98.00,99.25,44812800,1.08 -1991-05-16,99.25,100.00,98.50,99.37,70243200,1.08 -1991-05-15,100.25,100.50,96.62,98.00,111158400,1.06 -1991-05-14,102.62,103.25,100.75,101.25,58812800,1.10 -1991-05-13,103.25,103.75,101.25,103.12,68745600,1.12 -1991-05-10,106.25,107.00,102.00,102.75,52070400,1.11 -1991-05-09,103.25,106.00,102.75,105.75,76294400,1.15 -1991-05-08,101.00,103.25,100.25,103.00,57590400,1.12 -1991-05-07,103.25,103.75,101.25,101.25,50902400,1.10 -1991-05-06,100.50,103.25,100.25,102.75,44755200,1.11 -1991-05-03,100.50,101.25,99.75,101.25,23043200,1.10 -1991-05-02,101.25,102.50,100.25,100.50,66886400,1.09 -1991-05-01,98.50,100.75,97.00,100.75,111628800,1.09 -1991-04-30,97.75,99.25,96.00,99.00,115174400,1.07 -1991-04-29,101.25,101.50,97.75,97.75,71254400,1.06 -1991-04-26,100.25,102.25,98.75,100.75,88371200,1.09 -1991-04-25,102.50,103.75,100.50,100.75,65705600,1.09 -1991-04-24,101.50,104.75,100.50,103.00,82128000,1.12 -1991-04-23,102.25,103.00,100.50,101.62,103910400,1.10 -1991-04-22,106.00,106.25,101.75,102.12,139708800,1.11 -1991-04-19,106.25,109.50,105.00,107.25,96585600,1.16 -1991-04-18,111.25,112.00,108.00,110.00,88083200,1.19 -1991-04-17,114.00,117.50,111.12,111.50,128380800,1.21 -1991-04-16,113.75,114.50,110.00,112.25,81331200,1.22 -1991-04-15,106.00,114.25,105.00,113.75,88819200,1.23 -1991-04-12,109.50,110.00,103.75,107.25,176729600,1.16 -1991-04-11,108.50,111.50,108.00,111.00,47936000,1.20 -1991-04-10,109.75,110.25,105.50,107.50,74336000,1.16 -1991-04-09,111.50,113.25,109.75,110.25,60768000,1.19 -1991-04-08,110.00,113.25,109.50,111.37,46524800,1.21 -1991-04-05,114.00,114.25,109.00,110.00,108912000,1.19 -1991-04-04,114.00,116.75,112.75,113.75,73846400,1.23 -1991-04-03,112.75,116.75,112.75,113.75,91776000,1.23 -1991-04-02,107.50,112.50,106.75,112.25,96252800,1.22 -1991-04-01,106.00,107.75,104.50,106.75,59203200,1.16 -1991-03-28,107.25,108.25,106.00,106.12,30489600,1.15 -1991-03-27,105.00,109.25,105.00,107.75,91932800,1.17 -1991-03-26,98.75,105.25,98.75,105.12,89926400,1.14 -1991-03-25,94.00,98.75,94.00,98.25,59820800,1.06 -1991-03-22,94.50,95.50,93.00,93.75,95686400,1.02 -1991-03-21,99.50,100.75,94.00,94.75,119187200,1.03 -1991-03-20,99.00,101.00,98.75,99.00,83216000,1.07 -1991-03-19,98.25,101.00,96.75,99.00,92505600,1.07 -1991-03-18,96.25,99.75,96.00,99.25,66214400,1.08 -1991-03-15,98.25,98.75,96.25,96.62,76928000,1.05 -1991-03-14,101.50,101.50,97.00,98.00,100214400,1.06 -1991-03-13,96.00,101.12,96.00,100.50,110265600,1.09 -1991-03-12,98.25,98.87,95.62,95.75,152883200,1.04 -1991-03-11,101.75,102.50,97.75,99.25,160966400,1.08 -1991-03-08,104.50,106.00,101.75,102.50,134697600,1.11 -1991-03-07,104.25,107.50,103.50,104.00,165388800,1.13 -1991-03-06,112.50,113.00,106.75,107.25,101088000,1.16 -1991-03-05,107.25,112.50,107.00,111.50,76352000,1.21 -1991-03-04,105.75,107.50,104.50,107.00,47020800,1.16 -1991-03-01,103.00,106.25,102.00,105.75,77721600,1.15 -1991-02-28,106.00,106.25,103.25,103.75,55008000,1.12 -1991-02-27,102.25,105.75,101.25,105.25,87670400,1.14 -1991-02-26,101.50,102.50,100.50,101.75,55539200,1.10 -1991-02-25,103.25,104.00,101.50,103.00,88521600,1.12 -1991-02-22,99.75,104.50,99.75,102.25,105340800,1.11 -1991-02-21,103.00,103.50,100.00,100.00,68275200,1.08 -1991-02-20,101.75,104.00,101.50,102.75,52550400,1.11 -1991-02-19,102.25,103.50,101.50,102.50,66560000,1.11 -1991-02-15,101.50,104.25,101.25,103.25,115449600,1.12 -1991-02-14,105.25,105.50,99.00,100.75,133702400,1.09 -1991-02-13,102.50,105.62,101.75,105.50,95491200,1.14 -1991-02-12,103.25,104.75,102.50,103.25,96204800,1.12 -1991-02-11,104.12,104.50,102.25,104.25,152336000,1.13 -1991-02-08,103.00,104.75,101.75,104.00,74230400,1.13 -1991-02-07,106.25,109.00,102.25,103.00,133462400,1.12 -1991-02-06,101.00,106.50,100.50,105.75,106348800,1.15 -1991-02-05,99.25,102.00,98.00,101.25,88736000,1.10 -1991-02-04,100.00,100.75,98.00,99.12,88233600,1.07 -1991-02-01,99.00,101.00,97.25,99.75,117878400,1.08 -1991-01-31,96.50,99.50,96.00,98.12,111417600,1.06 -1991-01-30,92.50,96.50,91.50,96.25,148582400,1.04 -1991-01-29,92.25,94.37,90.00,92.50,146979200,1.00 -1991-01-28,89.00,94.00,89.00,92.25,130985600,1.00 -1991-01-25,90.75,91.00,89.00,89.50,86889600,0.97 -1991-01-24,89.25,90.87,88.75,90.50,86083200,0.98 -1991-01-23,88.25,90.25,88.25,89.00,77081600,0.96 -1991-01-22,89.62,91.00,87.37,88.87,113715200,0.96 -1991-01-21,84.62,90.00,84.62,89.50,154512000,0.97 -1991-01-18,82.50,85.50,82.25,85.25,103030400,0.92 -1991-01-17,86.00,86.25,83.75,84.00,163526400,0.91 -1991-01-16,78.50,82.87,78.25,82.25,139913600,0.89 -1991-01-15,76.75,79.50,76.75,78.37,83436800,0.85 -1991-01-14,77.25,77.50,75.50,76.75,58656000,0.83 -1991-01-11,78.50,79.00,76.75,78.00,62006400,0.84 -1991-01-10,74.25,78.75,74.25,78.25,123888000,0.85 -1991-01-09,74.00,75.75,73.50,74.00,115622400,0.80 -1991-01-08,74.75,75.25,73.00,73.50,76438400,0.80 -1991-01-07,75.25,77.75,74.75,74.87,87552000,0.81 -1991-01-04,75.00,76.50,75.00,75.87,58483200,0.82 -1991-01-03,74.75,76.00,74.75,75.25,52822400,0.82 -1991-01-02,75.00,75.25,74.75,74.75,38105600,0.81 -1990-12-31,75.00,75.25,74.50,75.25,23702400,0.82 -1990-12-28,74.50,75.25,74.25,75.00,20265600,0.81 -1990-12-27,75.00,75.25,74.50,74.75,22627200,0.81 -1990-12-26,75.25,75.75,74.50,75.00,16214400,0.81 -1990-12-24,75.50,75.50,74.75,75.25,13548800,0.82 -1990-12-21,75.75,76.00,75.25,75.75,33468800,0.82 -1990-12-20,74.25,76.00,74.00,75.50,46992000,0.82 -1990-12-19,75.37,75.75,74.75,74.87,34262400,0.81 -1990-12-18,74.50,75.75,74.25,75.25,51872000,0.82 -1990-12-17,73.00,74.25,72.50,74.00,27286400,0.80 -1990-12-14,73.00,74.25,72.50,73.62,48633600,0.80 -1990-12-13,73.00,73.50,71.75,72.75,50707200,0.79 -1990-12-12,71.75,72.75,70.50,72.50,71558400,0.79 -1990-12-11,73.25,74.50,72.00,72.12,61766400,0.78 -1990-12-10,73.25,75.37,72.75,74.00,55526400,0.80 -1990-12-07,74.25,75.25,72.25,74.25,81920000,0.80 -1990-12-06,76.25,76.75,74.00,74.75,108201600,0.81 -1990-12-05,74.50,75.75,74.25,75.25,68630400,0.82 -1990-12-04,73.50,75.25,73.00,74.50,54547200,0.81 -1990-12-03,73.25,74.50,72.75,73.87,68240000,0.80 -1990-11-30,71.25,74.25,70.50,72.25,72163200,0.78 -1990-11-29,70.25,71.25,69.75,71.25,65865600,0.77 -1990-11-28,72.25,72.75,70.25,70.37,77619200,0.76 -1990-11-27,70.50,72.25,69.75,71.87,63417600,0.78 -1990-11-26,68.50,70.50,67.75,70.25,47577600,0.76 -1990-11-23,69.25,70.25,68.50,68.75,22060800,0.74 -1990-11-21,68.00,69.00,67.00,68.75,60739200,0.74 -1990-11-20,69.25,70.50,68.12,68.25,68864000,0.74 -1990-11-19,68.00,69.75,68.00,69.50,45552000,0.75 -1990-11-16,67.50,68.75,67.25,68.00,67075200,0.74 -1990-11-15,69.00,69.25,67.25,67.87,63129600,0.74 -1990-11-14,68.50,70.00,68.25,69.50,59721600,0.75 -1990-11-13,68.75,69.50,67.75,68.62,67654400,0.74 -1990-11-12,66.00,69.25,66.00,68.87,87657600,0.75 -1990-11-09,64.75,65.50,64.50,64.75,43344000,0.70 -1990-11-08,63.50,64.75,63.00,63.50,43462400,0.69 -1990-11-07,63.75,64.75,63.50,63.75,63100800,0.69 -1990-11-06,65.75,66.50,63.50,64.25,59212800,0.70 -1990-11-05,65.25,66.00,64.75,65.62,50700800,0.71 -1990-11-02,63.50,65.75,63.25,65.00,74764800,0.70 -1990-11-01,63.00,64.25,62.75,63.50,49440000,0.69 -1990-10-31,64.50,65.25,63.75,63.75,61200000,0.69 -1990-10-30,62.50,64.25,62.00,63.88,52563200,0.69 -1990-10-29,63.75,64.25,62.00,62.50,67881600,0.68 -1990-10-26,63.75,64.50,63.25,63.38,59126400,0.69 -1990-10-25,65.50,66.25,64.00,64.75,51497600,0.70 -1990-10-24,63.50,65.50,63.25,65.37,54732800,0.71 -1990-10-23,63.75,65.75,63.25,64.25,71884800,0.70 -1990-10-22,62.00,64.75,61.75,64.00,80294400,0.69 -1990-10-19,62.00,63.25,60.50,62.00,170336000,0.67 -1990-10-18,57.00,61.50,56.75,61.13,123737600,0.66 -1990-10-17,54.75,56.75,53.50,56.50,135820800,0.61 -1990-10-16,56.75,57.63,54.00,54.63,300886400,0.59 -1990-10-15,57.75,58.00,55.50,56.50,130332800,0.61 -1990-10-12,58.50,58.75,54.00,57.00,109251200,0.62 -1990-10-11,59.75,60.25,57.00,58.00,83811200,0.63 -1990-10-10,62.00,62.25,59.00,59.50,115593600,0.64 -1990-10-09,65.25,66.00,62.50,63.00,66374400,0.68 -1990-10-08,66.00,66.50,64.50,66.00,38678400,0.71 -1990-10-05,63.00,65.75,62.25,64.75,82099200,0.70 -1990-10-04,65.25,65.75,64.00,64.12,69292800,0.69 -1990-10-03,65.50,67.37,65.25,65.75,57600000,0.71 -1990-10-02,68.25,68.50,65.50,65.87,83465600,0.71 -1990-10-01,64.75,67.50,64.50,67.12,131619200,0.73 -1990-09-28,58.25,63.50,58.00,63.00,97980800,0.68 -1990-09-27,61.00,61.50,58.25,59.25,65724800,0.64 -1990-09-26,60.50,60.75,59.50,60.25,39267200,0.65 -1990-09-25,59.63,60.50,58.75,60.38,53308800,0.65 -1990-09-24,59.50,60.00,57.50,58.50,81436800,0.63 -1990-09-21,59.75,60.75,58.50,60.50,79891200,0.66 -1990-09-20,61.50,62.00,59.75,59.75,52444800,0.65 -1990-09-19,63.00,63.25,61.75,62.00,52694400,0.67 -1990-09-18,60.63,62.38,59.75,61.75,60636800,0.67 -1990-09-17,59.50,61.75,59.25,60.75,70390400,0.66 -1990-09-14,57.00,60.25,56.38,59.75,67670400,0.65 -1990-09-13,58.00,58.50,57.00,57.50,49865600,0.62 -1990-09-12,56.25,57.75,55.75,57.38,75014400,0.62 -1990-09-11,56.00,56.50,54.50,55.50,78867200,0.60 -1990-09-10,58.75,60.00,55.75,55.75,74246400,0.60 -1990-09-07,57.00,59.00,56.50,57.75,53702400,0.63 -1990-09-06,58.00,58.50,56.25,57.50,115616000,0.62 -1990-09-05,62.50,63.00,58.50,59.00,54675200,0.64 -1990-09-04,61.00,62.50,60.75,62.25,47376000,0.67 -1990-08-31,60.00,62.00,59.25,61.50,40736000,0.67 -1990-08-30,60.75,62.38,60.00,60.00,65379200,0.65 -1990-08-29,62.50,63.75,60.00,60.50,77952000,0.66 -1990-08-28,60.25,63.25,60.00,62.88,79824000,0.68 -1990-08-27,59.00,61.25,59.00,60.75,110115200,0.66 -1990-08-24,52.25,57.75,52.25,57.25,95443200,0.62 -1990-08-23,52.50,53.75,51.00,51.75,107443200,0.56 -1990-08-22,55.00,55.50,53.38,53.75,79232000,0.58 -1990-08-21,54.25,54.75,50.75,54.25,165648000,0.59 -1990-08-20,60.25,60.50,55.50,55.50,113600000,0.60 -1990-08-17,61.00,61.75,60.00,60.25,95225600,0.65 -1990-08-16,64.00,64.50,61.75,61.75,53328000,0.67 -1990-08-15,64.75,65.75,64.25,64.25,51408000,0.70 -1990-08-14,65.25,65.87,63.75,64.25,33708800,0.70 -1990-08-13,63.75,65.50,63.25,65.00,53942400,0.70 -1990-08-10,65.12,65.75,62.75,64.50,73184000,0.70 -1990-08-09,64.00,65.75,63.25,65.12,77052800,0.71 -1990-08-08,62.50,64.00,62.00,63.50,86259200,0.69 -1990-08-07,61.25,62.25,60.00,61.25,91065600,0.66 -1990-08-06,61.50,62.00,58.50,60.50,113184000,0.66 -1990-08-03,65.50,65.75,60.38,63.25,117177600,0.69 -1990-08-02,65.50,66.75,64.25,66.00,91769600,0.71 -1990-08-01,66.25,67.25,63.75,66.75,111113600,0.72 -1990-07-31,68.25,68.62,66.00,66.50,42307200,0.72 -1990-07-30,68.50,69.00,65.75,68.00,87955200,0.74 -1990-07-27,68.50,70.00,67.75,69.00,51017600,0.75 -1990-07-26,71.25,74.00,66.00,68.75,303321600,0.74 -1990-07-25,70.00,71.75,68.75,71.50,60147200,0.77 -1990-07-24,72.50,72.50,66.75,69.50,137100800,0.75 -1990-07-23,73.25,74.00,71.25,72.00,74201600,0.78 -1990-07-20,77.00,78.25,73.00,73.25,87724800,0.79 -1990-07-19,75.37,76.75,73.75,76.75,63132800,0.83 -1990-07-18,77.25,77.75,75.50,76.00,41849600,0.82 -1990-07-17,79.37,79.50,77.00,77.75,54473600,0.84 -1990-07-16,78.75,80.75,78.50,79.25,48729600,0.86 -1990-07-13,77.75,80.50,77.50,78.37,93628800,0.85 -1990-07-12,75.25,77.75,75.25,77.50,89040000,0.84 -1990-07-11,74.00,75.75,73.25,75.50,28918400,0.82 -1990-07-10,74.25,75.00,73.50,73.75,29696000,0.80 -1990-07-09,73.50,74.75,73.25,74.25,37315200,0.80 -1990-07-06,72.12,74.00,71.75,73.25,41801600,0.79 -1990-07-05,71.50,72.50,70.75,72.25,61852800,0.78 -1990-07-03,73.37,73.50,71.50,72.00,79257600,0.78 -1990-07-02,76.00,76.00,73.62,73.75,35472000,0.80 -1990-06-29,76.50,76.50,75.25,76.00,34953600,0.82 -1990-06-28,76.62,77.25,76.12,76.50,30051200,0.83 -1990-06-27,74.75,76.50,74.50,76.25,35760000,0.83 -1990-06-26,75.25,75.62,74.50,74.75,50198400,0.81 -1990-06-25,75.62,76.50,74.25,74.50,68979200,0.81 -1990-06-22,77.25,77.75,75.50,75.75,34032000,0.82 -1990-06-21,77.50,77.75,76.00,77.00,34304000,0.83 -1990-06-20,75.37,77.75,75.00,77.62,39561600,0.84 -1990-06-19,74.75,75.50,73.75,75.00,41715200,0.81 -1990-06-18,75.75,76.25,74.50,74.87,52790400,0.81 -1990-06-15,74.50,77.00,74.50,76.00,51552000,0.82 -1990-06-14,76.50,76.75,74.25,75.50,58204800,0.82 -1990-06-13,75.87,77.75,75.12,76.50,80265600,0.83 -1990-06-12,75.50,76.00,74.50,75.87,46656000,0.82 -1990-06-11,73.00,75.50,73.00,74.87,58236800,0.81 -1990-06-08,72.00,73.75,71.50,73.50,63766400,0.80 -1990-06-07,73.25,73.75,71.00,72.00,90118400,0.78 -1990-06-06,73.25,74.50,72.50,73.00,86288000,0.79 -1990-06-05,77.25,77.50,72.75,73.37,80256000,0.79 -1990-06-04,74.87,77.25,74.00,76.50,59158400,0.83 -1990-06-01,73.25,75.25,73.00,75.12,69065600,0.81 -1990-05-31,74.75,75.50,72.50,73.00,69436800,0.79 -1990-05-30,76.12,76.50,74.75,75.50,65072000,0.82 -1990-05-29,74.25,75.50,74.00,75.25,61478400,0.82 -1990-05-25,74.25,76.25,74.00,74.25,104688000,0.80 -1990-05-24,76.75,78.75,76.00,76.50,146649600,0.83 -1990-05-23,72.00,76.00,71.87,75.87,141180800,0.82 -1990-05-22,71.00,72.25,69.00,71.50,142435200,0.77 -1990-05-21,68.75,72.25,68.75,70.25,159593600,0.76 -1990-05-18,64.62,69.25,64.50,68.25,101820800,0.74 -1990-05-17,64.75,65.25,64.25,64.75,41731200,0.70 -1990-05-16,64.50,64.75,63.50,64.75,38553600,0.70 -1990-05-15,65.50,65.75,64.25,64.75,54118400,0.70 -1990-05-14,66.25,66.50,65.50,65.75,47232000,0.71 -1990-05-11,65.00,66.00,63.25,65.50,49164800,0.71 -1990-05-10,63.25,65.00,62.75,64.50,48800000,0.70 -1990-05-09,62.88,63.25,62.00,62.75,35164800,0.68 -1990-05-08,62.75,63.50,62.25,62.75,50822400,0.68 -1990-05-07,62.00,66.00,61.50,64.00,97347200,0.69 -1990-05-04,59.50,61.75,59.00,61.75,47811200,0.67 -1990-05-03,58.50,59.75,58.25,59.00,45891200,0.64 -1990-05-02,57.25,58.50,57.25,58.25,33264000,0.63 -1990-05-01,58.75,58.75,56.75,57.13,52473600,0.62 -1990-04-30,56.25,58.00,55.75,58.00,51449600,0.63 -1990-04-27,57.13,57.25,55.63,56.25,57123200,0.61 -1990-04-26,58.50,58.75,57.25,57.38,46294400,0.62 -1990-04-25,58.25,58.75,57.00,58.00,53868800,0.63 -1990-04-24,59.75,59.75,56.50,58.00,47913600,0.63 -1990-04-23,58.88,59.50,57.25,59.00,64876800,0.64 -1990-04-20,60.00,60.50,58.75,59.25,44659200,0.64 -1990-04-19,60.00,61.25,59.25,59.50,58003200,0.64 -1990-04-18,61.63,61.75,58.75,60.63,97795200,0.66 -1990-04-17,60.63,63.00,59.75,62.00,66777600,0.67 -1990-04-16,61.00,61.75,60.13,60.75,39468800,0.66 -1990-04-12,121.75,122.00,120.00,120.75,48252800,0.65 -1990-04-11,118.50,121.00,118.25,121.00,70371200,0.66 -1990-04-10,114.62,118.00,114.50,118.00,45187200,0.64 -1990-04-09,113.75,115.25,113.75,114.50,31174400,0.62 -1990-04-06,114.75,115.25,113.25,114.25,72876800,0.62 -1990-04-05,116.87,117.12,114.50,114.50,66368000,0.62 -1990-04-04,116.00,118.75,115.50,117.00,79644800,0.63 -1990-04-03,112.75,116.25,112.50,116.00,84643200,0.63 -1990-04-02,109.75,112.37,109.25,111.50,74057600,0.60 -1990-03-30,110.00,111.00,109.25,110.75,36691200,0.60 -1990-03-29,110.37,112.75,110.00,110.50,64784000,0.60 -1990-03-28,112.25,112.25,108.50,111.00,99532800,0.60 -1990-03-27,111.12,113.00,110.75,112.50,52515200,0.61 -1990-03-26,110.50,112.50,110.37,111.50,55929600,0.60 -1990-03-23,112.00,113.25,109.00,110.25,53596800,0.60 -1990-03-22,113.50,113.75,110.25,111.25,92419200,0.60 -1990-03-21,112.87,115.50,112.25,113.25,69840000,0.61 -1990-03-20,116.50,116.75,112.50,113.00,92144000,0.61 -1990-03-19,113.75,117.00,113.00,116.50,81171200,0.63 -1990-03-16,112.00,115.25,111.75,114.00,118899200,0.62 -1990-03-15,107.87,111.75,107.75,111.00,81676800,0.60 -1990-03-14,107.25,108.75,106.00,107.87,130966400,0.58 -1990-03-13,108.50,109.00,106.25,106.25,85203200,0.58 -1990-03-12,106.25,108.75,106.00,108.25,68873600,0.59 -1990-03-09,106.00,108.00,105.25,106.50,75744000,0.58 -1990-03-08,103.00,107.25,101.75,106.25,88976000,0.58 -1990-03-07,104.75,105.50,102.75,102.75,47606400,0.56 -1990-03-06,104.75,105.00,102.50,104.50,68630400,0.57 -1990-03-05,103.50,105.75,102.25,105.25,75526400,0.57 -1990-03-02,100.25,104.37,100.12,103.75,100208000,0.56 -1990-03-01,98.50,101.75,98.50,100.00,76867200,0.54 -1990-02-28,98.00,99.75,98.00,98.75,39312000,0.53 -1990-02-27,99.50,99.50,98.00,98.00,62019200,0.53 -1990-02-26,97.50,100.00,97.25,99.25,69219200,0.54 -1990-02-23,95.75,97.75,95.50,97.50,56851200,0.53 -1990-02-22,96.75,98.25,96.25,96.37,60809600,0.52 -1990-02-21,98.75,100.00,95.75,96.12,103347200,0.52 -1990-02-20,97.75,100.50,97.00,100.25,132652800,0.54 -1990-02-16,98.25,98.75,97.75,98.00,70876800,0.53 -1990-02-15,95.00,98.00,95.00,97.00,89494400,0.53 -1990-02-14,95.25,95.25,94.50,95.00,35868800,0.51 -1990-02-13,95.00,95.25,94.50,94.75,58752000,0.51 -1990-02-12,94.50,95.50,94.00,94.75,56086400,0.51 -1990-02-09,94.25,94.75,94.00,94.50,62380800,0.51 -1990-02-08,93.62,95.00,93.25,94.25,95225600,0.51 -1990-02-07,93.50,94.75,93.00,93.25,134150400,0.51 -1990-02-06,94.00,94.25,92.25,94.00,81964800,0.51 -1990-02-05,93.62,94.25,93.25,94.25,59731200,0.51 -1990-02-02,93.00,95.50,93.00,93.75,71395200,0.51 -1990-02-01,92.50,94.25,92.50,93.75,89193600,0.51 -1990-01-31,92.00,92.50,91.25,92.50,112937600,0.50 -1990-01-30,91.75,92.50,90.00,91.25,73107200,0.49 -1990-01-29,91.50,92.25,90.25,91.50,55078400,0.50 -1990-01-26,90.50,91.25,90.00,90.75,68083200,0.49 -1990-01-25,91.50,92.50,90.50,90.75,112752000,0.49 -1990-01-24,88.00,90.75,87.12,90.75,180345600,0.49 -1990-01-23,91.00,91.25,89.25,89.75,139347200,0.49 -1990-01-22,94.00,94.00,90.50,90.75,167686400,0.49 -1990-01-19,95.25,96.00,93.50,94.12,99257600,0.51 -1990-01-18,89.62,95.00,89.50,95.00,292361600,0.51 -1990-01-17,88.00,90.50,87.00,87.50,97587200,0.47 -1990-01-16,85.50,89.25,84.50,88.75,80092800,0.48 -1990-01-15,85.75,87.00,85.25,86.12,62467200,0.47 -1990-01-12,85.12,87.25,84.00,86.12,148908800,0.47 -1990-01-11,88.75,89.50,85.00,86.50,95772800,0.47 -1990-01-10,90.00,91.25,88.12,88.25,103766400,0.48 -1990-01-09,91.00,92.00,90.25,90.75,70300800,0.49 -1990-01-08,89.50,91.00,88.50,91.00,58982400,0.49 -1990-01-05,91.50,92.00,89.50,89.62,69564800,0.49 -1990-01-04,89.25,92.00,88.75,91.87,125740800,0.50 -1990-01-03,89.50,90.25,88.50,89.25,113772800,0.48 -1990-01-02,87.25,88.75,86.12,88.75,53033600,0.48 -1989-12-29,85.50,88.25,85.25,87.00,77628800,0.47 -1989-12-28,83.50,85.75,83.00,85.25,123091200,0.46 -1989-12-27,86.00,87.00,85.25,86.25,62796800,0.47 -1989-12-26,85.87,86.37,84.75,85.50,23817600,0.46 -1989-12-22,83.50,86.25,82.75,85.75,54892800,0.46 -1989-12-21,82.75,83.50,81.25,83.50,55020800,0.45 -1989-12-20,81.25,83.00,80.75,82.75,111008000,0.45 -1989-12-19,78.25,80.50,77.75,80.37,70473600,0.44 -1989-12-18,77.25,79.00,77.00,78.25,78435200,0.42 -1989-12-15,78.25,78.50,75.00,77.00,107164800,0.42 -1989-12-14,79.00,79.75,78.00,78.00,61516800,0.42 -1989-12-13,80.75,82.50,79.25,80.00,95788800,0.43 -1989-12-12,83.75,83.75,80.50,82.50,93628800,0.45 -1989-12-11,84.75,84.75,82.00,83.00,103376000,0.45 -1989-12-08,85.50,86.00,83.00,84.75,107625600,0.46 -1989-12-07,84.00,86.25,84.00,85.50,40348800,0.46 -1989-12-06,86.50,87.00,84.50,85.25,57382400,0.46 -1989-12-05,86.75,87.25,86.00,86.75,44048000,0.47 -1989-12-04,85.00,87.25,84.37,86.25,40534400,0.47 -1989-12-01,87.12,87.75,84.87,85.00,52070400,0.46 -1989-11-30,84.00,87.25,83.75,87.00,111209600,0.47 -1989-11-29,87.50,88.00,84.25,85.50,85894400,0.46 -1989-11-28,87.00,88.25,86.25,87.00,56662400,0.47 -1989-11-27,87.50,87.75,85.75,86.75,37280000,0.47 -1989-11-24,88.87,89.00,87.50,87.62,17971200,0.47 -1989-11-22,88.25,88.50,87.50,88.25,38230400,0.48 -1989-11-21,86.50,88.50,86.50,88.12,67116800,0.48 -1989-11-20,86.75,86.75,84.50,86.50,56937600,0.47 -1989-11-17,87.62,88.25,86.75,86.87,31651200,0.47 -1989-11-16,89.00,89.25,86.25,87.50,68054400,0.47 -1989-11-15,86.75,89.25,86.25,88.50,94492800,0.48 -1989-11-14,88.75,89.25,86.00,86.50,95241600,0.47 -1989-11-13,84.50,88.25,83.75,88.12,178905600,0.48 -1989-11-10,84.00,85.00,83.75,84.50,59168000,0.46 -1989-11-09,84.00,84.50,82.50,83.75,111526400,0.45 -1989-11-08,82.12,84.50,82.00,83.25,106486400,0.45 -1989-11-07,77.50,82.37,77.25,81.00,131542400,0.44 -1989-11-06,78.25,79.75,76.50,77.25,88025600,0.42 -1989-11-03,76.50,78.75,76.25,78.25,98755200,0.42 -1989-11-02,80.87,80.87,76.00,76.25,226051200,0.41 -1989-11-01,81.75,83.00,81.75,82.12,74649600,0.44 -1989-10-31,80.25,82.00,80.00,81.75,56563200,0.44 -1989-10-30,78.00,79.75,77.87,79.62,45920000,0.43 -1989-10-27,77.75,78.00,76.25,77.00,97040000,0.42 -1989-10-26,78.75,80.25,77.50,77.75,135459200,0.42 -1989-10-25,81.50,82.75,79.25,79.75,71481600,0.43 -1989-10-24,82.50,82.50,78.75,80.87,157088000,0.44 -1989-10-23,84.75,85.75,82.50,83.12,60912000,0.45 -1989-10-20,84.00,85.50,82.50,85.25,93542400,0.46 -1989-10-19,81.00,86.00,80.25,84.25,179424000,0.46 -1989-10-18,78.87,80.75,78.50,80.50,134784000,0.44 -1989-10-17,75.25,81.50,74.25,78.62,177206400,0.43 -1989-10-16,70.75,76.25,69.00,75.75,253065600,0.41 -1989-10-13,77.75,78.00,73.00,73.50,102643200,0.40 -1989-10-12,80.00,80.50,78.25,78.50,58880000,0.43 -1989-10-11,80.25,80.50,79.00,80.00,106400000,0.43 -1989-10-10,82.50,83.00,80.75,81.25,68297600,0.44 -1989-10-09,79.50,82.00,79.00,81.75,58534400,0.44 -1989-10-06,79.62,80.50,78.25,79.75,87609600,0.43 -1989-10-05,75.50,82.25,75.25,79.25,284758400,0.43 -1989-10-04,69.00,75.75,68.50,75.50,260019200,0.41 -1989-10-03,70.50,70.50,68.87,69.00,68918400,0.37 -1989-10-02,68.25,70.00,68.00,69.62,50428800,0.38 -1989-09-29,68.00,69.50,67.75,68.50,64323200,0.37 -1989-09-28,66.50,68.00,66.50,68.00,41427200,0.37 -1989-09-27,66.25,67.37,65.75,66.62,69235200,0.36 -1989-09-26,67.00,67.50,66.50,67.25,39987200,0.36 -1989-09-25,66.00,68.00,65.50,67.00,69939200,0.36 -1989-09-22,65.50,66.00,64.75,66.00,43948800,0.36 -1989-09-21,65.75,66.75,64.50,65.50,89350400,0.35 -1989-09-20,62.75,65.00,62.25,65.00,72128000,0.35 -1989-09-19,63.75,64.00,62.50,62.50,49203200,0.34 -1989-09-18,62.50,63.50,62.50,63.50,39110400,0.34 -1989-09-15,64.00,64.50,62.50,62.75,89148800,0.34 -1989-09-14,62.75,64.50,62.25,63.75,78163200,0.35 -1989-09-13,61.00,63.50,60.50,62.25,181020800,0.34 -1989-09-12,59.50,61.00,59.25,60.25,67795200,0.33 -1989-09-11,58.75,59.50,58.50,59.38,27907200,0.32 -1989-09-08,58.00,59.50,57.75,59.00,39785600,0.32 -1989-09-07,59.00,59.25,58.00,58.25,41904000,0.32 -1989-09-06,59.75,60.00,58.75,59.25,42377600,0.32 -1989-09-05,59.75,61.00,59.63,60.00,93340800,0.32 -1989-09-01,59.00,60.25,58.75,59.88,44409600,0.32 -1989-08-31,59.50,59.75,58.75,58.75,14198400,0.32 -1989-08-30,58.75,59.63,58.50,59.25,40377600,0.32 -1989-08-29,59.88,60.00,58.38,58.50,54416000,0.32 -1989-08-28,58.75,59.50,58.25,59.13,28540800,0.32 -1989-08-25,58.75,59.25,57.75,58.88,85145600,0.32 -1989-08-24,59.88,60.50,58.25,59.00,92764800,0.32 -1989-08-23,58.63,59.63,58.00,59.25,46092800,0.32 -1989-08-22,56.00,58.75,56.00,58.38,64771200,0.32 -1989-08-21,57.50,57.88,56.00,56.13,32096000,0.30 -1989-08-18,56.50,57.75,56.50,57.50,24912000,0.31 -1989-08-17,55.75,56.75,55.25,56.50,39958400,0.31 -1989-08-16,57.75,58.00,55.50,55.88,46668800,0.30 -1989-08-15,57.00,58.00,56.63,57.50,17856000,0.31 -1989-08-14,57.75,57.75,57.00,57.00,68988800,0.31 -1989-08-11,59.00,59.50,57.75,57.75,61472000,0.31 -1989-08-10,59.00,59.00,58.25,58.50,48339200,0.32 -1989-08-09,58.88,60.00,58.75,58.75,113772800,0.32 -1989-08-08,57.50,59.25,57.50,59.00,110547200,0.32 -1989-08-07,57.75,58.00,57.00,57.75,93571200,0.31 -1989-08-04,54.75,57.50,54.50,57.00,178128000,0.31 -1989-08-03,54.38,55.25,54.25,55.00,27590400,0.30 -1989-08-02,54.00,54.75,54.00,54.25,28368000,0.29 -1989-08-01,54.75,55.25,54.00,54.25,62134400,0.29 -1989-07-31,54.00,55.00,53.75,54.75,33334400,0.30 -1989-07-28,54.00,54.50,53.25,54.25,29216000,0.29 -1989-07-27,53.63,54.00,53.25,53.75,45561600,0.29 -1989-07-26,52.75,53.25,52.00,52.75,123638400,0.29 -1989-07-25,55.00,57.00,51.50,52.00,326028800,0.28 -1989-07-24,54.75,55.75,54.25,55.25,38361600,0.30 -1989-07-21,53.00,56.50,52.75,55.25,99763200,0.30 -1989-07-20,54.25,55.25,53.50,53.50,44524800,0.29 -1989-07-19,54.00,54.50,53.25,54.13,29763200,0.29 -1989-07-18,53.25,54.25,53.25,53.50,42982400,0.29 -1989-07-17,52.75,53.50,52.50,53.25,31289600,0.29 -1989-07-14,53.25,53.50,51.75,52.75,42768000,0.29 -1989-07-13,53.13,53.75,52.50,53.00,33408000,0.29 -1989-07-12,53.00,53.50,52.00,53.25,52156800,0.29 -1989-07-11,54.88,55.50,53.25,53.50,43488000,0.29 -1989-07-10,53.75,55.00,53.50,54.88,27257600,0.30 -1989-07-07,52.75,54.25,52.63,53.50,41456000,0.29 -1989-07-06,55.75,56.00,52.38,52.75,94780800,0.29 -1989-07-05,54.50,55.50,54.00,55.25,26537600,0.30 -1989-07-03,53.13,54.25,53.13,54.00,14688000,0.29 -1989-06-30,52.00,53.50,51.25,53.00,67248000,0.29 -1989-06-29,52.88,52.88,51.25,52.00,77196800,0.28 -1989-06-28,54.00,54.00,52.00,52.75,57456000,0.29 -1989-06-27,54.75,55.25,53.75,53.88,35897600,0.29 -1989-06-26,55.25,55.50,54.25,54.75,30240000,0.30 -1989-06-23,55.50,56.00,55.25,55.38,33536000,0.30 -1989-06-22,55.25,55.50,55.00,55.50,36070400,0.30 -1989-06-21,53.25,56.00,53.25,55.00,80496000,0.30 -1989-06-20,56.50,56.75,54.50,54.50,45804800,0.30 -1989-06-19,57.00,57.00,55.50,56.50,27158400,0.31 -1989-06-16,56.63,57.00,56.25,56.75,47360000,0.31 -1989-06-15,57.75,57.75,56.25,56.75,52112000,0.31 -1989-06-14,57.75,58.00,56.50,57.75,47302400,0.31 -1989-06-13,58.38,58.50,57.25,57.25,40563200,0.31 -1989-06-12,59.75,60.25,58.63,59.00,51680000,0.32 -1989-06-09,59.75,60.13,59.25,59.75,36144000,0.32 -1989-06-08,59.75,60.25,59.50,59.75,29216000,0.32 -1989-06-07,58.75,60.00,58.75,59.75,44928000,0.32 -1989-06-06,56.75,58.63,56.50,58.50,53897600,0.32 -1989-06-05,58.50,58.50,56.50,56.75,61414400,0.31 -1989-06-02,60.13,60.25,58.25,58.25,54041600,0.32 -1989-06-01,60.25,60.75,59.75,60.00,62796800,0.32 -1989-05-31,59.00,61.00,59.00,60.50,80969600,0.33 -1989-05-30,59.00,59.63,58.50,59.00,63907200,0.32 -1989-05-26,58.00,59.00,57.75,58.88,37884800,0.32 -1989-05-25,57.50,58.50,57.00,57.50,33840000,0.31 -1989-05-24,56.13,57.50,55.75,57.50,69363200,0.31 -1989-05-23,58.25,59.00,56.25,56.63,97545600,0.31 -1989-05-22,58.25,59.50,57.75,59.25,74275200,0.32 -1989-05-19,58.13,59.50,58.13,58.25,62566400,0.32 -1989-05-18,57.25,58.63,57.25,58.25,52572800,0.32 -1989-05-17,56.38,58.00,56.38,57.38,89811200,0.31 -1989-05-16,54.75,56.50,54.50,56.25,83433600,0.30 -1989-05-15,54.13,55.00,54.00,54.75,74736000,0.30 -1989-05-12,54.63,55.00,53.50,54.25,71091200,0.29 -1989-05-11,54.25,54.25,53.50,54.00,34400000,0.29 -1989-05-10,53.50,54.75,53.25,54.00,58752000,0.29 -1989-05-09,51.75,53.50,51.50,53.00,54588800,0.29 -1989-05-08,52.00,52.25,51.00,51.50,49001600,0.28 -1989-05-05,53.25,53.25,51.75,52.00,35827200,0.28 -1989-05-04,54.25,54.25,52.25,52.50,37424000,0.28 -1989-05-03,54.00,54.75,54.00,54.00,28857600,0.29 -1989-05-02,54.75,55.00,53.50,54.00,34371200,0.29 -1989-05-01,55.38,56.00,54.25,54.63,33737600,0.30 -1989-04-28,54.75,56.25,53.75,55.88,69782400,0.30 -1989-04-27,54.00,54.88,54.00,54.75,34588800,0.30 -1989-04-26,55.00,55.00,53.63,54.00,44508800,0.29 -1989-04-25,55.50,55.75,54.50,54.75,24896000,0.30 -1989-04-24,55.00,55.50,54.50,55.13,29331200,0.30 -1989-04-21,56.00,56.00,55.00,55.25,58188800,0.30 -1989-04-20,55.00,56.50,54.50,56.00,138800000,0.30 -1989-04-19,55.00,55.75,54.50,54.88,168969600,0.30 -1989-04-18,52.50,53.25,52.00,53.25,69334400,0.29 -1989-04-17,51.25,52.38,50.75,51.50,51638400,0.28 -1989-04-14,49.25,51.25,49.25,50.75,62624000,0.27 -1989-04-13,47.75,50.38,47.50,48.75,92880000,0.26 -1989-04-12,51.75,51.75,47.63,48.13,71020800,0.26 -1989-04-11,51.50,52.00,50.38,51.38,28726400,0.28 -1989-04-10,51.25,52.25,51.25,51.38,28668800,0.28 -1989-04-07,51.25,51.75,51.00,51.25,29446400,0.28 -1989-04-06,50.50,51.50,50.25,51.25,51680000,0.28 -1989-04-05,50.00,50.50,49.75,50.38,19641600,0.27 -1989-04-04,50.25,50.25,49.50,50.00,25027200,0.27 -1989-04-03,50.00,50.75,49.63,50.25,35049600,0.27 -1989-03-31,50.00,50.25,49.50,49.88,29734400,0.27 -1989-03-30,49.75,50.00,49.13,49.88,46742400,0.27 -1989-03-29,49.75,49.75,49.25,49.50,30009600,0.27 -1989-03-28,50.25,50.50,49.25,49.75,70803200,0.27 -1989-03-27,50.00,50.63,49.50,49.75,75542400,0.27 -1989-03-23,48.75,50.25,48.75,50.25,87811200,0.27 -1989-03-22,49.50,49.75,48.50,49.00,167024000,0.27 -1989-03-21,46.75,50.00,46.25,49.88,224467200,0.27 -1989-03-20,46.38,46.50,45.75,46.50,238995200,0.25 -1989-03-17,50.25,50.50,46.00,46.50,245577600,0.25 -1989-03-16,50.75,51.50,50.50,51.25,102886400,0.28 -1989-03-15,52.75,52.75,50.25,50.25,104889600,0.27 -1989-03-14,53.25,53.25,52.25,52.75,63718400,0.29 -1989-03-13,52.00,52.75,51.75,52.75,60204800,0.29 -1989-03-10,51.50,52.50,51.00,51.75,66902400,0.28 -1989-03-09,52.75,52.75,51.50,51.75,123305600,0.28 -1989-03-08,53.75,54.50,52.38,52.50,253612800,0.28 -1989-03-07,59.75,60.00,53.25,53.50,788688000,0.29 -1989-03-06,61.75,62.25,61.00,62.00,56633600,0.34 -1989-03-03,60.75,62.00,60.50,61.75,68947200,0.33 -1989-03-02,59.25,61.00,59.25,60.75,92304000,0.33 -1989-03-01,60.00,60.25,59.25,59.25,59888000,0.32 -1989-02-28,60.00,60.25,59.00,59.50,43443200,0.32 -1989-02-27,58.75,60.25,58.50,59.75,68787200,0.32 -1989-02-24,60.25,60.75,58.75,58.75,76016000,0.32 -1989-02-23,60.25,60.75,59.25,60.38,75945600,0.33 -1989-02-22,61.50,61.75,60.00,60.00,95513600,0.32 -1989-02-21,62.25,62.75,61.50,61.75,33753600,0.33 -1989-02-17,63.00,63.25,62.25,62.50,29692800,0.34 -1989-02-16,62.50,63.50,61.25,62.75,61385600,0.34 -1989-02-15,60.50,62.25,60.25,62.25,81936000,0.34 -1989-02-14,61.88,62.25,60.00,60.25,62956800,0.33 -1989-02-13,61.50,62.00,61.00,61.25,94073600,0.33 -1989-02-10,63.00,63.50,61.63,61.88,129036800,0.34 -1989-02-09,62.00,64.75,61.75,63.75,199036800,0.35 -1989-02-08,62.00,64.00,61.50,62.50,133315200,0.34 -1989-02-07,60.63,62.50,60.50,62.13,127094400,0.34 -1989-02-06,60.75,61.00,59.75,60.50,87580800,0.33 -1989-02-03,60.50,62.50,60.00,61.00,91324800,0.33 -1989-02-02,59.50,63.00,59.25,60.88,180028800,0.33 -1989-02-01,59.50,59.75,59.00,59.25,131212800,0.32 -1989-01-31,59.00,60.25,58.50,59.63,125091200,0.32 -1989-01-30,55.50,58.75,55.25,58.50,110086400,0.32 -1989-01-27,54.13,56.50,53.75,55.38,166419200,0.30 -1989-01-26,52.63,54.50,52.50,54.25,87132800,0.29 -1989-01-25,53.00,53.25,52.50,53.00,49046400,0.29 -1989-01-24,53.00,53.50,52.50,52.75,56217600,0.29 -1989-01-23,54.00,54.00,52.88,53.00,52227200,0.29 -1989-01-20,53.50,54.38,53.25,54.13,61027200,0.29 -1989-01-19,52.25,53.75,52.25,53.50,84297600,0.29 -1989-01-18,51.75,51.75,50.25,51.50,63632000,0.28 -1989-01-17,52.63,52.88,51.25,51.50,41744000,0.28 -1989-01-16,53.25,54.13,52.75,53.13,27532800,0.29 -1989-01-13,52.50,53.25,52.50,53.00,35568000,0.29 -1989-01-12,52.25,53.75,52.25,52.50,54588800,0.28 -1989-01-11,51.88,52.50,51.50,52.50,48297600,0.28 -1989-01-10,52.25,52.50,51.75,52.00,54128000,0.28 -1989-01-09,53.00,53.25,52.13,52.50,46006400,0.28 -1989-01-06,53.50,53.75,53.00,53.00,59052800,0.29 -1989-01-05,54.75,54.75,53.25,53.38,47244800,0.29 -1989-01-04,53.50,54.88,53.50,54.25,53897600,0.29 -1989-01-03,53.50,53.75,52.75,53.63,51824000,0.29 -1988-12-30,53.50,54.25,53.25,53.25,63820800,0.29 -1988-12-29,52.00,53.50,52.00,53.25,38275200,0.29 -1988-12-28,52.00,52.25,51.75,52.25,21267200,0.28 -1988-12-27,52.00,52.50,51.75,51.75,30771200,0.28 -1988-12-23,51.75,52.00,51.50,52.00,17120000,0.28 -1988-12-22,52.50,53.00,51.75,52.00,74592000,0.28 -1988-12-21,51.50,52.50,51.25,52.25,46438400,0.28 -1988-12-20,51.38,52.50,51.00,51.25,92188800,0.28 -1988-12-19,50.63,51.50,50.50,50.75,83532800,0.27 -1988-12-16,48.75,50.25,48.75,49.75,51795200,0.27 -1988-12-15,49.00,49.25,48.50,49.00,23196800,0.27 -1988-12-14,47.75,48.75,47.50,48.38,28006400,0.26 -1988-12-13,47.25,47.75,47.25,47.75,39168000,0.26 -1988-12-12,48.75,49.00,47.38,47.38,38892800,0.26 -1988-12-09,48.75,49.25,48.50,49.00,22304000,0.27 -1988-12-08,49.25,49.50,48.75,49.00,40176000,0.27 -1988-12-07,49.50,50.00,49.13,49.25,30886400,0.27 -1988-12-06,49.50,49.75,49.00,49.75,44364800,0.27 -1988-12-05,49.75,50.50,48.75,49.50,70140800,0.27 -1988-12-02,48.50,50.25,48.50,49.75,91497600,0.27 -1988-12-01,47.50,49.50,47.00,49.00,82006400,0.27 -1988-11-30,47.25,47.75,47.25,47.25,35193600,0.26 -1988-11-29,47.00,47.50,46.75,47.50,21872000,0.26 -1988-11-28,46.25,47.50,46.25,47.00,58736000,0.25 -1988-11-25,46.25,46.50,45.75,46.38,11462400,0.25 -1988-11-23,46.25,47.00,46.00,46.88,56547200,0.25 -1988-11-22,46.00,46.50,45.50,46.00,30310400,0.25 -1988-11-21,46.00,46.25,45.25,46.00,47100800,0.25 -1988-11-18,46.25,46.75,45.75,46.63,34428800,0.25 -1988-11-17,46.25,46.75,45.75,46.00,65865600,0.25 -1988-11-16,47.13,47.25,45.50,46.25,199008000,0.25 -1988-11-15,48.50,48.50,46.50,47.00,93900800,0.25 -1988-11-14,48.00,48.75,47.50,48.50,34329600,0.26 -1988-11-11,48.50,49.00,47.50,47.63,54934400,0.26 -1988-11-10,49.75,50.50,49.00,49.00,78796800,0.27 -1988-11-09,48.00,50.00,47.75,49.75,124732800,0.27 -1988-11-08,47.25,49.00,47.00,48.63,56604800,0.26 -1988-11-07,46.50,47.00,46.00,46.75,55065600,0.25 -1988-11-04,46.50,47.75,46.50,46.50,106601600,0.25 -1988-11-03,47.25,47.75,46.13,47.25,118339200,0.26 -1988-11-02,48.75,48.75,46.75,47.25,221801600,0.26 -1988-11-01,49.00,49.75,48.75,48.75,53280000,0.26 -1988-10-31,49.25,49.25,48.50,49.00,41283200,0.27 -1988-10-28,49.25,49.75,48.50,49.50,46540800,0.27 -1988-10-27,49.25,49.50,47.75,49.50,114336000,0.27 -1988-10-26,50.25,50.50,48.50,49.75,157420800,0.27 -1988-10-25,52.00,52.25,50.00,50.50,74547200,0.27 -1988-10-24,53.25,53.25,51.88,52.00,28627200,0.28 -1988-10-21,53.00,53.50,52.50,53.00,24262400,0.29 -1988-10-20,52.75,54.00,52.75,53.50,73296000,0.29 -1988-10-19,53.50,53.75,52.25,53.25,80681600,0.29 -1988-10-18,51.75,52.75,51.25,52.50,37222400,0.28 -1988-10-17,51.25,52.50,51.25,52.00,25673600,0.28 -1988-10-14,52.00,52.25,51.00,51.25,56764800,0.28 -1988-10-13,50.38,52.25,50.25,51.50,82467200,0.28 -1988-10-12,49.50,51.75,49.00,50.63,137532800,0.27 -1988-10-11,49.75,50.50,49.00,49.75,65952000,0.27 -1988-10-10,50.00,50.00,47.75,49.25,106358400,0.27 -1988-10-07,50.00,50.25,47.88,49.75,208064000,0.27 -1988-10-06,50.25,50.75,50.00,50.00,33609600,0.27 -1988-10-05,51.25,51.25,50.00,50.25,67088000,0.27 -1988-10-04,51.50,52.00,50.88,51.13,29260800,0.28 -1988-10-03,51.25,51.75,50.50,51.38,41097600,0.28 -1988-09-30,52.75,53.00,51.75,52.25,37251200,0.28 -1988-09-29,52.75,53.50,52.50,53.00,56460800,0.29 -1988-09-28,52.25,53.00,51.75,53.00,25516800,0.29 -1988-09-27,52.00,52.25,51.50,52.00,35366400,0.28 -1988-09-26,53.75,54.00,51.75,52.38,50211200,0.28 -1988-09-23,54.50,54.50,53.75,53.75,35091200,0.29 -1988-09-22,54.00,55.00,53.75,54.50,59686400,0.30 -1988-09-21,53.50,54.00,53.50,53.75,16054400,0.29 -1988-09-20,52.00,53.25,51.75,53.25,53625600,0.29 -1988-09-19,52.50,52.50,51.00,51.75,44697600,0.28 -1988-09-16,52.25,52.50,51.75,52.00,48700800,0.28 -1988-09-15,54.00,54.25,52.00,52.25,72921600,0.28 -1988-09-14,54.88,55.25,53.75,54.00,79212800,0.29 -1988-09-13,53.25,54.25,52.75,54.00,40608000,0.29 -1988-09-12,53.75,55.00,53.50,53.75,43257600,0.29 -1988-09-09,51.75,54.75,51.50,54.00,111123200,0.29 -1988-09-08,51.50,53.25,51.25,52.00,69206400,0.28 -1988-09-07,52.25,52.75,50.75,51.75,72115200,0.28 -1988-09-06,51.50,52.50,51.25,52.00,67750400,0.28 -1988-09-02,49.75,51.75,49.50,51.50,115328000,0.28 -1988-09-01,49.50,49.75,48.00,48.88,82380800,0.26 -1988-08-31,51.50,51.75,49.25,50.00,71884800,0.27 -1988-08-30,52.00,52.25,51.00,51.25,20966400,0.28 -1988-08-29,52.00,52.50,51.75,52.13,35033600,0.28 -1988-08-26,50.75,51.75,50.75,51.38,24451200,0.28 -1988-08-25,50.25,51.50,50.00,50.75,72633600,0.27 -1988-08-24,49.50,51.63,49.25,51.50,102585600,0.28 -1988-08-23,48.25,49.75,47.75,49.38,88313600,0.27 -1988-08-22,50.25,50.50,47.75,48.00,110172800,0.26 -1988-08-19,52.75,53.00,50.25,50.50,67376000,0.27 -1988-08-18,52.75,53.25,52.50,52.75,32025600,0.29 -1988-08-17,52.50,53.88,51.38,52.50,59110400,0.28 -1988-08-16,50.50,52.75,50.25,52.50,90876800,0.28 -1988-08-15,52.00,52.25,50.00,50.75,41081600,0.27 -1988-08-12,51.75,52.25,51.50,52.00,58262400,0.28 -1988-08-11,51.00,52.00,50.00,51.75,123104000,0.28 -1988-08-10,51.25,51.75,50.00,50.50,113168000,0.27 -1988-08-09,53.00,53.25,51.00,51.75,138828800,0.28 -1988-08-08,53.75,53.75,52.75,53.25,148320000,0.29 -1988-08-05,55.50,55.50,51.75,53.50,201600000,0.29 -1988-08-04,56.25,56.50,55.50,55.50,53494400,0.30 -1988-08-03,57.25,57.50,55.50,56.25,91987200,0.30 -1988-08-02,58.50,58.75,56.75,57.50,65475200,0.31 -1988-08-01,59.75,60.00,58.50,58.50,51824000,0.32 -1988-07-29,58.50,60.00,58.25,59.50,59385600,0.32 -1988-07-28,57.50,58.50,57.00,58.25,57945600,0.32 -1988-07-27,58.25,59.00,57.50,57.63,68140800,0.31 -1988-07-26,58.00,59.00,56.75,58.00,228960000,0.31 -1988-07-25,62.00,62.50,60.25,60.50,52704000,0.33 -1988-07-22,60.75,62.50,60.50,61.75,68816000,0.33 -1988-07-21,63.75,64.00,60.50,61.00,128937600,0.33 -1988-07-20,66.50,66.50,63.75,64.00,111094400,0.35 -1988-07-19,67.25,67.50,65.75,66.00,36460800,0.36 -1988-07-18,67.25,67.75,67.00,67.50,20102400,0.37 -1988-07-15,67.00,67.25,66.25,67.00,31577600,0.36 -1988-07-14,66.75,67.00,66.00,67.00,34848000,0.36 -1988-07-13,65.50,66.75,65.00,66.75,57427200,0.36 -1988-07-12,67.00,67.25,64.75,65.62,90000000,0.36 -1988-07-11,68.75,68.75,66.75,66.75,65763200,0.36 -1988-07-08,68.00,68.75,67.75,68.50,40089600,0.37 -1988-07-07,68.25,69.00,67.75,68.75,68428800,0.37 -1988-07-06,69.75,70.50,68.50,68.75,89379200,0.37 -1988-07-05,67.50,69.75,67.00,69.62,48096000,0.38 -1988-07-01,67.00,68.00,66.75,68.00,42940800,0.37 -1988-06-30,66.25,67.00,66.00,67.00,31548800,0.36 -1988-06-29,66.00,66.50,65.50,65.75,49808000,0.36 -1988-06-28,64.00,66.00,63.75,65.75,32140800,0.36 -1988-06-27,65.25,65.25,64.00,64.00,23628800,0.35 -1988-06-24,66.00,66.25,65.00,65.25,28553600,0.35 -1988-06-23,67.00,67.25,65.75,66.00,41052800,0.36 -1988-06-22,65.00,67.50,64.37,67.00,127324800,0.36 -1988-06-21,62.50,64.00,62.50,64.00,39715200,0.35 -1988-06-20,62.75,63.00,62.00,62.75,28137600,0.34 -1988-06-17,63.50,64.25,62.75,63.00,42105600,0.34 -1988-06-16,63.25,63.75,63.00,63.50,73712000,0.34 -1988-06-15,62.75,64.00,62.50,64.00,51033600,0.35 -1988-06-14,63.00,63.50,62.75,63.00,60377600,0.34 -1988-06-13,62.50,63.00,62.25,62.38,31116800,0.34 -1988-06-10,61.75,62.75,61.25,62.25,45014400,0.34 -1988-06-09,62.25,62.88,61.63,61.75,69264000,0.33 -1988-06-08,60.75,62.50,60.75,62.00,66281600,0.34 -1988-06-07,61.00,62.00,60.38,61.00,82166400,0.33 -1988-06-06,59.50,61.00,59.25,60.75,81747200,0.33 -1988-06-03,59.00,59.75,58.75,59.50,34832000,0.32 -1988-06-02,59.50,60.00,58.75,59.00,63228800,0.32 -1988-06-01,58.25,60.00,57.75,59.25,95788800,0.32 -1988-05-31,55.50,58.25,55.25,58.00,44048000,0.31 -1988-05-27,56.25,56.25,55.50,55.50,33148800,0.30 -1988-05-26,56.00,57.00,55.75,56.13,43385600,0.30 -1988-05-25,56.50,57.00,55.50,55.75,53580800,0.30 -1988-05-24,55.00,56.75,54.75,56.75,55324800,0.31 -1988-05-23,56.25,56.50,54.50,55.00,50227200,0.30 -1988-05-20,57.25,57.75,56.00,56.25,42521600,0.30 -1988-05-19,56.00,57.25,55.75,57.00,57728000,0.31 -1988-05-18,58.00,58.38,56.50,56.75,81372800,0.31 -1988-05-17,59.00,59.25,58.00,58.00,70428800,0.31 -1988-05-16,56.75,58.88,56.75,58.25,59788800,0.32 -1988-05-13,56.50,57.00,56.25,56.75,17913600,0.31 -1988-05-12,55.75,56.50,55.50,56.00,26409600,0.30 -1988-05-11,56.50,56.50,55.00,55.75,59484800,0.30 -1988-05-10,57.25,57.63,56.25,57.00,46828800,0.31 -1988-05-09,57.25,58.25,56.75,57.25,34790400,0.31 -1988-05-06,56.75,58.00,56.75,57.25,43977600,0.31 -1988-05-05,56.75,57.25,56.25,57.00,24883200,0.31 -1988-05-04,56.75,57.75,56.00,57.13,75152000,0.31 -1988-05-03,55.25,57.00,55.25,56.50,62739200,0.31 -1988-05-02,54.50,55.25,53.50,55.00,49260800,0.30 -1988-04-29,55.00,55.00,54.25,54.50,64771200,0.30 -1988-04-28,55.50,55.75,55.00,55.38,28467200,0.30 -1988-04-27,55.75,56.00,54.25,55.50,47894400,0.30 -1988-04-26,55.75,56.50,55.25,55.75,46454400,0.30 -1988-04-25,55.25,55.75,54.75,55.13,23385600,0.30 -1988-04-22,54.50,55.75,54.50,55.25,33926400,0.30 -1988-04-21,55.00,55.50,53.75,54.38,63977600,0.29 -1988-04-20,54.25,55.00,53.75,54.50,65404800,0.30 -1988-04-19,54.75,57.00,54.00,54.25,75772800,0.29 -1988-04-18,54.00,55.25,53.75,54.75,48051200,0.30 -1988-04-15,53.25,55.00,52.75,54.25,114220800,0.29 -1988-04-14,55.50,56.50,52.75,53.00,110028800,0.29 -1988-04-13,56.00,57.00,55.50,57.00,42204800,0.31 -1988-04-12,57.25,57.75,55.00,55.75,52444800,0.30 -1988-04-11,58.50,58.50,57.00,57.50,40406400,0.31 -1988-04-08,57.50,58.50,57.13,58.00,57974400,0.31 -1988-04-07,58.25,58.75,57.25,57.25,74921600,0.31 -1988-04-06,56.00,58.25,55.75,58.13,75296000,0.31 -1988-04-05,55.50,56.00,54.50,56.00,41760000,0.30 -1988-04-04,56.00,56.50,54.50,55.25,47721600,0.30 -1988-03-31,54.50,56.50,54.50,56.50,50256000,0.31 -1988-03-30,56.75,57.00,54.25,54.75,100713600,0.30 -1988-03-29,57.25,58.25,56.25,56.50,80710400,0.31 -1988-03-28,55.50,57.00,55.00,56.88,67145600,0.31 -1988-03-25,56.75,57.63,55.75,56.13,47331200,0.30 -1988-03-24,58.75,58.75,55.75,56.50,159840000,0.31 -1988-03-23,61.75,62.38,58.75,59.00,151200000,0.32 -1988-03-22,58.75,60.75,58.75,60.25,115833600,0.33 -1988-03-21,58.50,58.75,56.75,58.75,198720000,0.32 -1988-03-18,63.75,64.00,58.25,58.25,169920000,0.32 -1988-03-17,65.00,65.50,63.75,63.88,125308800,0.35 -1988-03-16,62.75,64.75,62.00,64.75,54547200,0.35 -1988-03-15,63.75,63.75,62.25,62.50,43760000,0.34 -1988-03-14,62.25,63.75,61.50,63.63,46281600,0.34 -1988-03-11,62.50,63.00,61.00,62.50,84297600,0.34 -1988-03-10,64.25,65.00,62.38,62.75,97948800,0.34 -1988-03-09,63.50,64.50,63.25,64.00,81734400,0.35 -1988-03-08,63.00,64.75,62.75,63.88,96896000,0.35 -1988-03-07,61.00,62.75,60.75,62.63,78003200,0.34 -1988-03-04,61.00,61.25,59.75,60.75,68355200,0.33 -1988-03-03,60.00,61.50,59.75,61.00,83664000,0.33 -1988-03-02,59.00,60.75,58.75,59.50,67894400,0.32 -1988-03-01,59.75,60.00,58.50,59.00,43299200,0.32 -1988-02-29,58.50,59.50,58.00,59.38,39324800,0.32 -1988-02-26,58.25,58.75,57.25,58.25,29923200,0.32 -1988-02-25,59.75,60.50,57.88,58.13,61558400,0.31 -1988-02-24,59.50,60.75,59.50,59.88,79558400,0.32 -1988-02-23,58.75,60.00,58.75,59.50,91728000,0.32 -1988-02-22,58.75,59.00,58.00,58.75,52227200,0.32 -1988-02-19,58.25,58.75,57.75,58.75,53164800,0.32 -1988-02-18,57.25,59.00,57.00,58.00,84153600,0.31 -1988-02-17,58.00,58.75,57.25,57.50,101318400,0.31 -1988-02-16,55.00,57.75,54.50,57.50,67334400,0.31 -1988-02-12,54.75,56.25,54.50,55.25,80220800,0.30 -1988-02-11,54.00,54.75,53.75,54.75,69436800,0.30 -1988-02-10,53.00,54.00,52.50,53.75,77024000,0.29 -1988-02-09,52.25,53.00,52.00,52.75,49939200,0.29 -1988-02-08,50.75,52.50,50.75,51.75,72876800,0.28 -1988-02-05,52.00,53.50,51.25,51.50,94102400,0.28 -1988-02-04,53.00,53.25,49.75,51.00,114710400,0.28 -1988-02-03,55.75,55.75,52.25,52.75,75801600,0.29 -1988-02-02,55.25,56.00,54.75,55.75,60752000,0.30 -1988-02-01,56.75,57.00,55.00,55.25,48729600,0.30 -1988-01-29,56.50,57.00,54.50,55.75,66700800,0.30 -1988-01-28,56.00,56.75,56.00,56.50,29318400,0.31 -1988-01-27,54.75,56.25,54.75,55.75,100409600,0.30 -1988-01-26,55.00,55.88,54.25,54.50,43558400,0.30 -1988-01-25,54.25,56.25,54.25,55.75,75497600,0.30 -1988-01-22,55.63,56.13,52.75,53.88,75296000,0.29 -1988-01-21,54.25,56.25,54.25,55.00,125107200,0.30 -1988-01-20,56.75,57.25,52.50,54.00,208800000,0.29 -1988-01-19,56.00,58.25,55.75,57.25,47417600,0.31 -1988-01-18,58.00,58.00,56.25,57.25,30038400,0.31 -1988-01-15,59.00,59.25,57.75,57.75,92172800,0.31 -1988-01-14,57.25,58.00,56.00,56.25,40608000,0.30 -1988-01-13,56.00,58.50,54.75,56.75,96147200,0.31 -1988-01-12,58.00,58.50,54.25,56.75,168480000,0.31 -1988-01-11,55.75,58.00,54.75,57.88,143568000,0.31 -1988-01-08,60.25,61.75,55.63,56.00,145440000,0.30 -1988-01-07,58.00,60.63,57.50,60.50,90675200,0.33 -1988-01-06,57.25,59.75,57.00,58.50,121680000,0.32 -1988-01-05,57.25,58.00,56.50,57.00,155520000,0.31 -1988-01-04,54.75,56.50,54.50,56.00,110345600,0.30 -1987-12-31,55.25,55.75,53.75,54.25,61545600,0.29 -1987-12-30,54.50,56.00,54.25,55.75,70704000,0.30 -1987-12-29,51.25,55.00,50.50,54.50,79459200,0.30 -1987-12-28,53.00,53.25,50.00,51.25,50716800,0.28 -1987-12-24,53.25,53.75,53.00,53.25,12672000,0.29 -1987-12-23,53.25,53.75,52.25,53.25,60710400,0.29 -1987-12-22,51.50,53.00,50.00,52.50,41772800,0.28 -1987-12-21,52.50,53.50,50.75,51.50,51161600,0.28 -1987-12-18,52.50,53.75,52.00,52.00,52486400,0.28 -1987-12-17,54.75,54.75,51.75,52.00,94016000,0.28 -1987-12-16,50.50,54.75,50.25,54.25,105536000,0.29 -1987-12-15,51.25,51.88,50.00,51.25,112217600,0.28 -1987-12-14,48.00,51.00,47.75,50.75,95110400,0.27 -1987-12-11,47.75,48.50,46.75,48.00,72473600,0.26 -1987-12-10,45.50,49.50,44.25,47.50,165600000,0.26 -1987-12-09,47.25,48.25,46.00,46.25,83792000,0.25 -1987-12-08,43.25,47.50,43.00,47.50,112521600,0.26 -1987-12-07,43.00,43.75,42.25,43.25,66211200,0.23 -1987-12-04,40.25,42.38,40.00,42.00,121750400,0.23 -1987-12-03,44.25,44.75,40.25,40.38,127670400,0.22 -1987-12-02,43.50,44.75,42.75,44.00,68515200,0.24 -1987-12-01,44.50,45.75,43.00,43.75,73539200,0.24 -1987-11-30,44.25,45.00,40.50,44.75,164160000,0.24 -1987-11-27,46.00,46.25,45.00,45.25,18316800,0.25 -1987-11-25,47.50,47.75,46.00,46.00,32153600,0.25 -1987-11-24,48.50,49.00,45.50,47.50,72230400,0.26 -1987-11-23,47.25,48.75,47.00,47.75,44640000,0.26 -1987-11-20,45.50,47.75,44.75,47.50,82467200,0.26 -1987-11-19,48.25,48.50,46.00,46.25,75024000,0.25 -1987-11-18,47.50,48.00,45.00,48.00,89308800,0.26 -1987-11-17,46.75,47.50,45.25,46.75,69321600,0.25 -1987-11-16,48.75,49.75,47.50,47.75,59472000,0.26 -1987-11-13,50.00,50.25,48.25,48.25,58492800,0.26 -1987-11-12,50.75,52.00,49.00,50.00,99171200,0.27 -1987-11-11,47.50,49.25,47.25,49.00,54617600,0.27 -1987-11-10,46.50,48.50,45.50,47.00,91164800,0.25 -1987-11-09,46.75,47.50,45.50,47.00,86585600,0.25 -1987-11-06,50.25,50.50,47.00,47.50,75353600,0.26 -1987-11-05,49.00,51.25,48.75,50.50,81430400,0.27 -1987-11-04,47.00,50.75,46.00,48.75,95340800,0.26 -1987-11-03,49.25,50.00,43.75,48.00,116150400,0.26 -1987-11-02,49.25,51.00,48.50,50.25,84771200,0.27 -1987-10-30,49.75,52.25,48.50,49.75,168480000,0.27 -1987-10-29,41.25,48.75,41.25,47.75,167040000,0.26 -1987-10-28,40.00,42.50,38.50,41.25,149760000,0.22 -1987-10-27,40.75,43.00,39.25,41.25,234720000,0.22 -1987-10-26,46.50,48.00,37.25,39.25,148320000,0.21 -1987-10-23,52.50,53.00,47.50,48.25,112764800,0.26 -1987-10-22,56.75,58.00,51.00,53.25,223200000,0.29 -1987-10-21,51.75,60.50,50.00,56.63,262080000,0.31 -1987-10-20,46.00,52.00,43.00,48.00,324000000,0.26 -1987-10-19,61.50,63.50,45.00,45.25,146880000,0.25 -1987-10-16,70.50,74.50,64.25,64.75,210240000,0.35 -1987-10-15,70.50,72.75,70.00,70.50,128822400,0.38 -1987-10-14,73.25,74.75,70.75,71.25,114220800,0.39 -1987-10-13,72.25,74.00,71.00,73.25,96809600,0.40 -1987-10-12,72.00,73.00,69.00,71.50,117187200,0.39 -1987-10-09,72.25,75.25,71.75,71.75,93888000,0.39 -1987-10-08,73.25,74.25,69.50,72.00,96940800,0.39 -1987-10-07,74.00,75.25,71.50,73.00,125638400,0.40 -1987-10-06,79.00,79.25,73.37,73.75,203040000,0.40 -1987-10-05,73.50,79.00,73.50,79.00,184320000,0.43 -1987-10-02,69.00,72.75,68.75,72.50,131644800,0.39 -1987-10-01,66.25,68.75,66.00,68.50,127222400,0.37 -1987-09-30,64.00,66.62,64.00,66.25,85680000,0.36 -1987-09-29,64.50,65.25,63.63,64.25,57411200,0.35 -1987-09-28,62.00,65.25,61.75,64.00,95542400,0.35 -1987-09-25,61.50,65.00,61.25,62.00,82454400,0.34 -1987-09-24,60.00,63.25,60.00,61.25,118438400,0.33 -1987-09-23,57.75,60.38,57.75,60.25,107696000,0.33 -1987-09-22,53.50,57.75,53.00,57.25,82006400,0.31 -1987-09-21,53.50,57.25,53.00,53.50,85548800,0.29 -1987-09-18,116.00,116.00,114.00,115.00,31651200,0.31 -1987-09-17,117.00,117.50,113.75,116.00,69436800,0.31 -1987-09-16,118.00,120.00,116.75,116.75,57715200,0.32 -1987-09-15,119.50,119.50,116.25,117.87,39052800,0.32 -1987-09-14,116.50,120.00,116.50,119.25,94464000,0.32 -1987-09-11,114.50,116.50,114.00,116.25,41040000,0.31 -1987-09-10,113.25,115.75,113.00,114.50,58176000,0.31 -1987-09-09,112.00,114.00,111.50,112.75,60710400,0.31 -1987-09-08,111.75,112.00,108.25,111.50,96336000,0.30 -1987-09-04,115.25,115.50,111.75,112.00,48355200,0.30 -1987-09-03,116.25,117.75,113.75,115.25,70934400,0.31 -1987-09-02,112.50,115.25,112.25,115.00,78393600,0.31 -1987-09-01,118.00,118.75,113.00,113.50,93859200,0.31 -1987-08-31,119.75,120.25,116.75,118.75,84326400,0.32 -1987-08-28,116.00,121.25,116.00,120.25,114796800,0.33 -1987-08-27,115.50,116.25,114.25,115.75,72432000,0.31 -1987-08-26,114.75,118.00,114.25,115.50,114105600,0.31 -1987-08-25,112.75,116.75,111.50,114.75,185961600,0.31 -1987-08-24,107.00,112.25,105.50,111.75,97747200,0.30 -1987-08-21,105.00,108.25,105.00,107.00,68976000,0.29 -1987-08-20,102.50,105.75,102.50,105.25,82051200,0.29 -1987-08-19,102.50,102.75,100.50,102.50,48902400,0.28 -1987-08-18,103.50,104.00,101.50,102.50,46944000,0.28 -1987-08-17,103.50,104.25,103.00,104.25,33667200,0.28 -1987-08-14,103.00,103.75,102.50,103.50,50832000,0.28 -1987-08-13,100.00,104.50,100.00,103.00,80640000,0.28 -1987-08-12,101.50,101.75,100.00,100.00,42364800,0.27 -1987-08-11,104.00,104.50,101.00,101.50,68544000,0.27 -1987-08-10,103.75,104.00,102.50,103.50,56448000,0.28 -1987-08-07,101.00,104.50,100.75,103.50,171014400,0.28 -1987-08-06,97.50,101.62,97.50,101.00,152553600,0.27 -1987-08-05,94.00,98.50,93.75,97.25,211190400,0.26 -1987-08-04,91.75,93.75,91.75,93.75,135072000,0.25 -1987-08-03,94.00,94.50,91.25,91.75,116352000,0.25 -1987-07-31,96.50,96.50,92.00,94.00,186624000,0.25 -1987-07-30,99.25,99.25,96.00,97.00,55555200,0.26 -1987-07-29,99.50,99.75,97.75,99.25,27676800,0.27 -1987-07-28,100.25,101.75,99.25,99.50,38160000,0.27 -1987-07-27,98.50,99.75,97.00,99.75,41817600,0.27 -1987-07-24,98.00,99.50,97.75,98.50,57744000,0.27 -1987-07-23,100.00,100.00,94.00,97.75,148492800,0.26 -1987-07-22,99.25,100.50,98.50,100.00,53366400,0.27 -1987-07-21,99.50,101.00,98.50,99.25,36547200,0.27 -1987-07-20,102.00,102.00,99.25,99.50,42019200,0.27 -1987-07-17,102.00,104.00,101.75,102.25,51264000,0.28 -1987-07-16,102.50,103.00,100.00,102.00,72979200,0.28 -1987-07-15,105.00,105.75,102.25,102.25,96768000,0.28 -1987-07-14,100.00,105.25,99.50,105.00,152812800,0.28 -1987-07-13,97.00,99.50,96.00,99.25,48326400,0.27 -1987-07-10,95.25,97.50,94.00,97.00,75830400,0.26 -1987-07-09,93.75,98.00,93.25,95.75,92707200,0.26 -1987-07-08,91.00,94.75,88.50,93.25,193449600,0.25 -1987-07-07,97.25,97.25,89.50,90.25,197078400,0.24 -1987-07-06,99.75,101.00,97.00,97.50,65491200,0.26 -1987-07-02,102.75,102.75,98.75,100.00,56880000,0.27 -1987-07-01,101.75,103.25,101.50,102.50,21945600,0.28 -1987-06-30,104.50,104.75,101.75,102.00,38332800,0.28 -1987-06-29,104.75,104.75,102.50,104.25,25632000,0.28 -1987-06-26,104.75,105.25,103.75,104.75,21945600,0.28 -1987-06-25,104.50,105.00,103.50,104.50,44035200,0.28 -1987-06-24,103.25,106.00,103.25,104.75,82684800,0.28 -1987-06-23,103.75,103.75,100.50,102.75,100771200,0.28 -1987-06-22,105.00,105.00,103.00,103.75,87436800,0.28 -1987-06-19,105.25,106.25,104.00,104.50,40809600,0.28 -1987-06-18,103.50,105.00,102.00,104.87,56188800,0.28 -1987-06-17,100.75,104.00,100.75,103.75,71078400,0.28 -1987-06-16,98.25,101.50,98.00,100.25,73526400,0.27 -1987-06-15,98.25,99.75,96.25,98.25,125222400,0.27 -1987-06-12,97.50,101.50,97.25,98.25,196156800,0.27 -1987-06-11,105.25,105.75,97.25,97.50,268704000,0.26 -1987-06-10,109.00,109.50,101.25,103.50,176256000,0.28 -1987-06-09,109.75,110.00,108.50,109.00,25833600,0.30 -1987-06-08,109.25,110.00,107.50,109.75,111571200,0.30 -1987-06-05,112.50,113.00,107.00,109.25,59270400,0.30 -1987-06-04,113.25,113.25,111.75,112.50,20390400,0.30 -1987-06-03,113.00,114.75,113.00,113.25,21628800,0.31 -1987-06-02,113.00,114.75,111.00,112.50,51552000,0.30 -1987-06-01,115.25,115.25,113.00,113.00,30326400,0.31 -1987-05-29,116.25,118.25,115.00,115.25,80380800,0.31 -1987-05-28,109.50,116.50,109.25,116.25,108662400,0.31 -1987-05-27,109.50,112.00,109.00,109.50,48758400,0.30 -1987-05-26,108.25,110.00,108.00,109.50,46886400,0.30 -1987-05-22,111.50,112.00,107.75,108.25,64627200,0.29 -1987-05-21,109.75,112.75,109.75,111.50,93312000,0.30 -1987-05-20,110.75,110.75,107.25,109.50,228355200,0.30 -1987-05-19,115.25,115.25,111.25,111.25,78336000,0.30 -1987-05-18,119.25,119.25,112.00,115.25,172598400,0.31 -1987-05-15,122.50,122.50,119.25,119.25,84326400,0.32 -1987-05-14,121.75,125.00,121.75,122.75,59961600,0.33 -1987-05-13,119.50,122.25,119.50,121.75,73382400,0.33 -1987-05-12,123.00,124.25,117.00,118.75,148464000,0.32 -1987-05-11,126.50,126.50,122.87,123.00,127382400,0.33 -1987-05-08,118.50,128.25,118.50,126.50,150048000,0.34 -1987-05-07,113.00,118.50,112.25,118.25,289699200,0.32 -1987-05-06,115.75,116.75,112.50,113.00,153504000,0.31 -1987-05-05,107.25,115.75,107.25,115.75,110995200,0.31 -1987-05-04,105.00,107.75,104.50,107.00,34531200,0.29 -1987-05-01,104.00,105.25,102.75,105.00,37843200,0.28 -1987-04-30,103.25,106.25,101.75,104.00,88041600,0.28 -1987-04-29,106.25,109.00,103.25,103.25,85161600,0.28 -1987-04-28,99.00,106.50,98.00,106.25,111081600,0.29 -1987-04-27,99.00,99.75,97.25,99.00,53107200,0.27 -1987-04-24,98.50,99.50,97.25,99.00,54172800,0.27 -1987-04-23,98.50,99.50,97.00,98.50,48326400,0.27 -1987-04-22,97.25,98.75,97.25,98.50,74678400,0.27 -1987-04-21,95.75,98.00,93.75,97.25,113184000,0.26 -1987-04-20,98.50,99.50,95.50,95.75,100310400,0.26 -1987-04-16,96.00,100.50,95.75,98.50,188092800,0.27 -1987-04-15,94.75,97.00,94.75,96.00,95961600,0.26 -1987-04-14,92.50,95.50,91.00,94.00,87379200,0.25 -1987-04-13,95.50,95.50,92.00,92.50,50256000,0.25 -1987-04-10,95.00,95.75,94.75,95.62,43372800,0.26 -1987-04-09,96.75,96.75,94.25,95.00,71568000,0.26 -1987-04-08,94.00,97.75,94.00,96.75,106214400,0.26 -1987-04-07,99.25,99.25,94.00,94.00,73728000,0.25 -1987-04-06,99.75,100.00,97.50,99.25,98956800,0.27 -1987-04-03,95.00,100.25,95.00,99.75,155606400,0.27 -1987-04-02,92.50,97.00,92.50,95.00,159955200,0.26 -1987-04-01,96.75,98.75,90.50,91.00,259430400,0.25 -1987-03-31,95.50,99.00,95.50,96.75,125337600,0.26 -1987-03-30,91.75,96.75,88.50,96.75,186134400,0.26 -1987-03-27,89.75,93.75,89.75,91.75,120873600,0.25 -1987-03-26,89.87,90.00,89.00,89.25,33379200,0.24 -1987-03-25,90.25,90.75,89.25,89.87,33840000,0.24 -1987-03-24,87.50,90.75,87.50,90.25,69609600,0.24 -1987-03-23,90.25,91.50,88.75,89.62,67478400,0.24 -1987-03-20,91.25,91.25,89.75,90.25,38246400,0.24 -1987-03-19,89.50,91.25,88.00,91.25,62812800,0.25 -1987-03-18,85.50,90.25,85.50,89.50,119347200,0.24 -1987-03-17,82.25,85.50,82.00,85.00,54547200,0.23 -1987-03-16,82.50,82.50,79.75,82.25,88473600,0.22 -1987-03-13,85.87,86.50,81.00,82.75,105120000,0.22 -1987-03-12,85.50,86.50,83.50,85.87,71337600,0.23 -1987-03-11,85.50,86.00,84.50,85.50,43862400,0.23 -1987-03-10,81.75,85.25,81.50,84.25,74102400,0.23 -1987-03-09,83.25,83.50,81.25,81.75,38275200,0.22 -1987-03-06,83.50,84.00,81.25,83.25,63561600,0.23 -1987-03-05,79.75,85.25,79.75,83.50,128188800,0.23 -1987-03-04,74.50,80.00,74.25,79.75,98179200,0.22 -1987-03-03,74.50,75.25,73.50,74.50,81100800,0.20 -1987-03-02,76.75,76.75,74.00,74.50,79516800,0.20 -1987-02-27,77.25,77.75,75.50,76.75,37555200,0.21 -1987-02-26,74.50,79.50,73.00,77.25,145209600,0.21 -1987-02-25,75.75,77.12,74.00,74.50,65001600,0.20 -1987-02-24,72.25,76.00,72.25,75.75,120816000,0.21 -1987-02-23,68.00,73.25,66.50,72.25,125913600,0.20 -1987-02-20,68.75,68.75,67.00,68.00,87897600,0.18 -1987-02-19,71.50,71.50,68.00,68.75,317750400,0.19 -1987-02-18,76.50,77.75,71.50,71.75,128592000,0.19 -1987-02-17,76.00,76.75,74.25,76.50,70732800,0.21 -1987-02-13,76.75,77.75,74.25,76.00,81763200,0.21 -1987-02-12,71.75,77.12,71.75,76.75,185731200,0.21 -1987-02-11,68.75,71.75,68.75,71.75,60307200,0.19 -1987-02-10,68.25,68.50,66.75,68.50,44668800,0.19 -1987-02-09,68.75,68.75,67.87,68.25,136080000,0.18 -1987-02-06,71.50,71.87,68.50,68.87,45619200,0.19 -1987-02-05,72.00,72.50,70.75,71.50,42652800,0.19 -1987-02-04,71.75,72.25,71.00,72.00,31737600,0.19 -1987-02-03,73.00,73.75,70.50,71.75,59328000,0.19 -1987-02-02,73.12,74.50,73.00,73.00,46915200,0.20 -1987-01-30,68.75,73.25,67.75,73.12,104169600,0.20 -1987-01-29,71.75,72.50,67.25,68.75,79228800,0.19 -1987-01-28,71.50,72.75,69.50,71.75,76723200,0.19 -1987-01-27,68.75,72.50,68.75,71.50,114105600,0.19 -1987-01-26,68.00,69.50,65.75,68.75,116553600,0.19 -1987-01-23,74.50,77.50,67.50,67.50,317894400,0.18 -1987-01-22,67.75,74.75,65.75,74.50,116035200,0.20 -1987-01-21,65.00,69.50,63.75,67.75,108489600,0.18 -1987-01-20,64.00,66.50,63.75,65.00,95760000,0.18 -1987-01-19,61.75,64.00,60.50,64.00,88243200,0.17 -1987-01-16,63.25,63.25,60.50,61.75,65433600,0.17 -1987-01-15,60.00,64.75,60.00,63.25,117014400,0.17 -1987-01-14,60.00,60.25,58.75,60.00,69465600,0.16 -1987-01-13,61.25,61.25,59.00,60.00,76320000,0.16 -1987-01-12,58.00,62.25,57.50,61.75,128793600,0.17 -1987-01-09,55.75,58.25,55.50,58.00,63705600,0.16 -1987-01-08,54.25,56.25,54.25,55.75,61488000,0.15 -1987-01-07,51.25,54.00,51.25,54.00,60998400,0.15 -1987-01-06,50.50,51.50,50.25,51.25,40032000,0.14 -1987-01-05,47.75,51.00,47.50,50.50,48499200,0.14 -1987-01-02,48.25,48.75,47.50,47.75,12643200,0.13 -1986-12-31,47.75,49.00,47.75,48.25,23356800,0.13 -1986-12-30,47.25,48.00,46.75,47.75,25401600,0.13 -1986-12-29,49.25,49.75,47.25,47.25,41702400,0.13 -1986-12-26,49.38,49.75,49.25,49.25,3715200,0.13 -1986-12-24,49.50,49.50,49.25,49.38,7027200,0.13 -1986-12-23,49.00,49.50,49.00,49.50,23788800,0.13 -1986-12-22,48.50,49.50,48.50,49.00,18316800,0.13 -1986-12-19,47.50,49.00,47.50,48.50,56592000,0.13 -1986-12-18,47.00,47.50,46.75,47.38,12672000,0.13 -1986-12-17,46.50,47.25,46.50,47.00,23356800,0.13 -1986-12-16,46.25,47.25,46.25,46.50,77299200,0.13 -1986-12-15,47.25,47.50,45.25,46.00,50774400,0.12 -1986-12-12,49.00,49.00,47.25,47.25,25286400,0.13 -1986-12-11,48.63,49.25,48.50,49.00,11635200,0.13 -1986-12-10,48.25,48.75,47.75,48.63,27590400,0.13 -1986-12-09,48.50,48.75,48.00,48.25,16099200,0.13 -1986-12-08,49.00,49.50,47.75,48.50,22665600,0.13 -1986-12-05,49.25,49.50,49.00,49.00,107510400,0.13 -1986-12-04,48.63,49.75,48.25,49.25,42508800,0.13 -1986-12-03,49.00,49.50,48.50,48.63,35164800,0.13 -1986-12-02,49.00,50.00,49.00,49.00,28771200,0.13 -1986-12-01,49.75,50.00,48.50,48.75,40291200,0.13 -1986-11-28,50.50,50.75,49.25,49.75,41328000,0.13 -1986-11-26,51.00,51.25,50.50,50.50,38793600,0.14 -1986-11-25,50.50,51.25,50.25,51.00,95788800,0.14 -1986-11-24,46.75,50.75,45.25,50.50,173836800,0.14 -1986-11-21,45.50,47.25,45.50,46.75,91065600,0.13 -1986-11-20,42.00,45.25,42.00,45.25,98179200,0.12 -1986-11-19,40.50,42.25,40.50,42.00,48729600,0.11 -1986-11-18,42.75,43.00,40.50,40.50,59673600,0.11 -1986-11-17,42.50,43.25,42.00,42.75,24307200,0.12 -1986-11-14,42.13,42.50,41.25,42.50,18720000,0.12 -1986-11-13,42.75,43.00,42.00,42.13,30211200,0.11 -1986-11-12,42.75,43.75,42.25,42.75,34156800,0.12 -1986-11-11,42.75,43.25,42.75,42.75,11894400,0.12 -1986-11-10,44.25,44.25,42.25,42.50,28684800,0.12 -1986-11-07,44.50,44.75,43.50,44.25,44323200,0.12 -1986-11-06,43.50,45.50,43.25,44.50,72576000,0.12 -1986-11-05,41.00,43.75,40.75,43.50,45100800,0.12 -1986-11-04,39.50,41.00,39.50,41.00,54403200,0.11 -1986-11-03,39.00,39.75,39.00,39.50,42192000,0.11 -1986-10-31,39.25,39.75,38.50,38.75,63734400,0.10 -1986-10-30,38.50,39.75,38.25,39.25,44380800,0.11 -1986-10-29,39.63,39.75,38.00,38.50,53222400,0.10 -1986-10-28,38.75,40.25,38.75,39.63,142646400,0.11 -1986-10-27,37.75,38.75,37.75,38.75,125654400,0.10 -1986-10-24,37.75,37.75,36.50,37.50,101376000,0.10 -1986-10-23,37.75,38.00,37.38,37.75,70444800,0.10 -1986-10-22,37.75,38.13,37.50,37.75,54576000,0.10 -1986-10-21,36.50,37.75,36.50,37.75,112377600,0.10 -1986-10-20,36.00,36.75,35.25,36.25,43545600,0.10 -1986-10-17,35.00,36.25,35.00,36.00,124444800,0.10 -1986-10-16,35.00,35.25,34.75,35.00,21859200,0.09 -1986-10-15,33.50,35.25,33.50,35.00,63532800,0.09 -1986-10-14,33.25,33.75,33.25,33.50,12873600,0.09 -1986-10-13,34.50,34.50,33.00,33.00,27129600,0.09 -1986-10-10,33.00,35.25,32.50,34.50,76752000,0.09 -1986-10-09,32.00,33.75,32.00,33.00,92563200,0.09 -1986-10-08,31.12,32.38,30.75,32.00,119606400,0.09 -1986-10-07,30.50,31.75,30.50,31.12,59788800,0.08 -1986-10-06,29.00,31.00,29.00,30.50,85334400,0.08 -1986-10-03,28.00,28.50,28.00,28.25,14716800,0.08 -1986-10-02,28.00,28.50,27.75,28.00,22723200,0.08 -1986-10-01,28.25,28.75,27.50,28.00,32428800,0.08 -1986-09-30,28.25,28.75,28.25,28.25,5184000,0.08 -1986-09-29,29.00,29.00,28.25,28.25,6192000,0.08 -1986-09-26,29.00,29.25,28.75,29.00,2332800,0.08 -1986-09-25,29.62,29.75,29.00,29.00,5155200,0.08 -1986-09-24,30.00,30.00,29.50,29.62,4780800,0.08 -1986-09-23,29.50,30.25,29.50,30.00,5961600,0.08 -1986-09-22,29.75,29.75,29.50,29.50,4492800,0.08 -1986-09-19,29.75,30.00,29.50,29.75,2505600,0.08 -1986-09-18,29.50,30.25,29.50,29.75,5356800,0.08 -1986-09-17,28.75,30.00,28.50,29.50,8035200,0.08 -1986-09-16,28.75,29.00,28.25,28.75,5184000,0.08 -1986-09-15,28.25,28.75,27.75,28.75,22492800,0.08 -1986-09-12,29.00,29.25,28.25,28.25,24451200,0.08 -1986-09-11,30.25,30.50,29.00,29.00,35654400,0.08 -1986-09-10,30.75,31.00,30.25,30.25,10886400,0.08 -1986-09-09,30.25,31.50,30.25,30.75,37526400,0.08 -1986-09-08,30.50,30.75,30.25,30.25,9619200,0.08 -1986-09-05,29.25,30.50,29.00,30.50,26352000,0.08 -1986-09-04,27.50,29.25,27.50,29.25,39427200,0.08 -1986-09-03,27.50,27.50,26.25,27.00,18316800,0.07 -1986-09-02,28.50,28.50,27.37,27.75,5212800,0.08 -1986-08-29,29.25,29.50,28.00,28.50,25430400,0.08 -1986-08-28,29.25,29.50,29.25,29.25,3427200,0.08 -1986-08-27,29.25,29.50,29.00,29.25,9532800,0.08 -1986-08-26,29.50,29.50,29.25,29.25,10857600,0.08 -1986-08-25,29.50,29.50,29.00,29.50,2419200,0.08 -1986-08-22,30.00,30.25,29.00,29.50,5760000,0.08 -1986-08-21,30.00,30.50,30.00,30.00,49536000,0.08 -1986-08-20,30.25,30.25,30.00,30.00,20764800,0.08 -1986-08-19,30.25,30.37,29.75,30.25,20390400,0.08 -1986-08-18,30.62,30.75,30.25,30.25,12787200,0.08 -1986-08-15,30.50,30.75,30.25,30.62,6105600,0.08 -1986-08-14,29.75,30.75,29.75,30.50,20131200,0.08 -1986-08-13,29.50,29.75,29.25,29.75,6883200,0.08 -1986-08-12,28.75,29.50,28.75,29.50,9993600,0.08 -1986-08-11,28.25,29.00,28.25,28.75,7948800,0.08 -1986-08-08,27.50,28.25,27.50,27.75,4147200,0.08 -1986-08-07,27.75,28.00,27.25,27.50,3657600,0.07 -1986-08-06,28.00,28.25,27.25,27.75,18316800,0.08 -1986-08-05,28.25,28.50,28.00,28.00,2822400,0.08 -1986-08-04,28.25,28.25,27.50,28.25,12441600,0.08 -1986-08-01,28.50,28.75,28.00,28.25,12902400,0.08 -1986-07-31,28.75,29.00,28.50,28.50,15638400,0.08 -1986-07-30,29.75,29.75,27.75,28.75,26409600,0.08 -1986-07-29,30.50,30.75,29.25,29.75,14054400,0.08 -1986-07-28,31.25,31.25,30.50,30.50,11808000,0.08 -1986-07-25,31.00,31.50,31.00,31.25,20448000,0.08 -1986-07-24,30.50,31.50,30.50,31.00,14140800,0.08 -1986-07-23,30.75,31.25,30.00,30.00,20793600,0.08 -1986-07-22,29.75,30.75,29.75,30.75,10512000,0.08 -1986-07-21,29.75,30.25,29.75,29.75,3513600,0.08 -1986-07-18,29.50,30.00,28.75,29.75,12326400,0.08 -1986-07-17,29.00,29.50,28.75,29.50,6940800,0.08 -1986-07-16,28.25,29.00,28.25,29.00,9360000,0.08 -1986-07-15,27.62,28.50,27.25,28.00,13190400,0.08 -1986-07-14,27.25,28.25,27.25,27.62,28598400,0.07 -1986-07-11,27.25,28.50,27.25,28.00,17395200,0.08 -1986-07-10,28.00,28.25,26.00,27.25,46886400,0.07 -1986-07-09,29.25,29.25,27.75,28.00,46137600,0.08 -1986-07-08,30.00,30.00,29.00,29.25,14256000,0.08 -1986-07-07,31.25,31.25,30.00,30.00,14054400,0.08 -1986-07-03,31.00,31.50,31.00,31.25,14140800,0.08 -1986-07-02,30.75,30.75,30.50,30.75,52617600,0.08 -1986-07-01,30.75,30.75,30.50,30.75,47577600,0.08 -1986-06-30,29.75,31.50,29.50,30.75,62352000,0.08 -1986-06-27,30.00,30.25,29.50,29.75,10396800,0.08 -1986-06-26,31.00,31.25,30.00,30.00,19152000,0.08 -1986-06-25,31.50,31.75,31.00,31.00,15235200,0.08 -1986-06-24,31.75,32.00,31.25,31.50,14572800,0.09 -1986-06-23,31.37,31.75,30.75,31.75,46195200,0.09 -1986-06-20,31.25,31.50,31.25,31.37,3801600,0.08 -1986-06-19,31.50,31.75,31.00,31.25,8467200,0.08 -1986-06-18,31.75,31.75,31.00,31.50,4348800,0.09 -1986-06-17,31.50,32.25,31.50,31.75,13075200,0.09 -1986-06-16,31.50,31.75,31.00,31.25,9590400,0.08 -1986-06-13,31.50,31.75,31.25,31.50,7891200,0.09 -1986-06-12,32.75,32.75,31.25,31.50,13708800,0.09 -1986-06-11,32.75,32.75,32.25,32.75,2304000,0.09 -1986-06-10,32.75,32.75,32.25,32.75,3427200,0.09 -1986-06-09,34.25,34.25,32.75,32.75,12672000,0.09 -1986-06-06,34.25,34.25,33.75,34.25,3427200,0.09 -1986-06-05,33.75,34.25,33.50,34.25,13708800,0.09 -1986-06-04,34.00,34.25,33.50,33.75,4723200,0.09 -1986-06-03,34.00,34.00,33.50,34.00,5011200,0.09 -1986-06-02,35.00,35.00,34.00,34.00,19728000,0.09 -1986-05-30,34.00,35.50,34.00,35.00,27072000,0.09 -1986-05-29,33.00,34.25,32.75,33.75,45676800,0.09 -1986-05-28,32.00,33.00,32.00,33.00,15523200,0.09 -1986-05-27,31.00,32.00,31.00,32.00,13881600,0.09 -1986-05-23,31.00,31.50,31.00,31.00,4089600,0.08 -1986-05-22,31.00,31.25,31.00,31.00,4406400,0.08 -1986-05-21,31.50,31.75,31.00,31.00,8092800,0.08 -1986-05-20,31.75,31.75,31.25,31.50,61977600,0.09 -1986-05-19,32.25,32.25,31.50,31.75,11001600,0.09 -1986-05-16,32.00,33.00,32.00,32.25,11952000,0.09 -1986-05-15,32.00,32.50,32.00,32.00,3801600,0.09 -1986-05-14,32.25,32.25,32.00,32.00,9302400,0.09 -1986-05-13,32.00,32.50,32.00,32.25,3830400,0.09 -1986-05-12,31.75,32.75,31.75,32.00,10483200,0.09 -1986-05-09,32.00,32.00,31.75,31.75,6076800,0.09 -1986-05-08,31.75,32.00,31.50,32.00,3542400,0.09 -1986-05-07,31.75,32.00,31.25,31.75,5155200,0.09 -1986-05-06,31.75,32.25,31.75,31.75,9734400,0.09 -1986-05-05,31.75,31.75,31.50,31.50,3254400,0.09 -1986-05-02,31.75,32.25,31.50,31.75,20246400,0.09 -1986-05-01,32.25,32.25,31.25,31.75,54345600,0.09 -1986-04-30,33.00,33.25,31.50,32.25,30902400,0.09 -1986-04-29,34.00,34.00,32.75,33.00,30326400,0.09 -1986-04-28,33.75,34.25,33.50,34.00,28886400,0.09 -1986-04-25,32.00,35.13,32.00,33.75,85795200,0.09 -1986-04-24,28.87,32.25,28.75,31.75,62352000,0.09 -1986-04-23,28.75,29.00,28.50,28.87,15609600,0.08 -1986-04-22,29.25,29.25,28.75,28.75,15552000,0.08 -1986-04-21,29.25,29.50,28.50,29.25,22924800,0.08 -1986-04-18,30.25,30.25,29.00,29.25,21628800,0.08 -1986-04-17,30.00,30.25,30.00,30.25,22003200,0.08 -1986-04-16,29.00,30.25,28.75,30.00,31910400,0.08 -1986-04-15,29.00,29.00,28.00,29.00,9302400,0.08 -1986-04-14,28.75,29.25,28.75,29.00,12153600,0.08 -1986-04-11,28.50,29.25,28.50,28.75,17222400,0.08 -1986-04-10,28.00,28.50,27.50,28.25,13881600,0.08 -1986-04-09,27.50,28.25,27.50,28.00,12153600,0.08 -1986-04-08,27.25,28.00,27.25,27.50,10252800,0.07 -1986-04-07,27.75,28.00,26.75,27.25,16560000,0.07 -1986-04-04,27.75,28.00,27.75,27.75,26582400,0.08 -1986-04-03,27.75,28.50,27.75,27.75,23040000,0.08 -1986-04-02,27.25,28.00,27.25,27.50,27014400,0.07 -1986-04-01,27.50,27.50,27.25,27.25,11088000,0.07 -1986-03-31,27.75,27.75,27.00,27.50,12873600,0.07 -1986-03-27,27.25,27.75,27.25,27.75,16848000,0.08 -1986-03-26,26.50,27.50,26.25,27.25,22752000,0.07 -1986-03-25,26.00,26.50,25.75,26.50,32083200,0.07 -1986-03-24,26.75,26.75,25.75,26.00,65289600,0.07 -1986-03-21,27.50,28.00,26.25,26.75,59990400,0.07 -1986-03-20,28.25,28.25,27.25,27.50,58435200,0.07 -1986-03-19,28.75,29.00,28.00,28.25,47894400,0.08 -1986-03-18,29.50,29.75,28.50,28.75,67766400,0.08 -1986-03-17,29.00,29.75,29.00,29.50,133171200,0.08 -1986-03-14,28.00,29.50,28.00,29.00,308160000,0.08 -1986-03-13,25.50,29.25,25.50,28.00,1031788800,0.08 diff --git a/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm b/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm deleted file mode 100644 index b8611250a..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/MarketDepth.htm +++ /dev/null @@ -1,1377 +0,0 @@ - - - - - Market Depth - - - - - - - - - -
      Market Depth
      - -
      - - - - -
      - - - - -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -
      All values in MWh except for IMBALNGC which is in MW. -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Settlement DayPeriodIMBALNGCOffer VolumeBid VolumeAccepted Offer VolAccepted Bid VolUAOVUABVPAOVPABV
      2014-01-141877.00052378.500-53779.500348.200-654.3740.0000.000348.200-654.374
      2014-01-142196.00052598.000-53559.500349.601-310.8620.0000.000316.701-310.862
      2014-01-143-190.00052575.000-53283.500186.183-2.4260.0000.000162.767-1.917
      2014-01-144-61.00052576.000-53454.50018.000-24.1580.0000.00018.000-24.158
      2014-01-14519.00052574.500-53456.5000.000-106.9380.0000.0000.000-106.938
      2014-01-146-215.00052624.500-53456.500150.185-89.9730.0000.000127.054-89.447
      2014-01-147-246.00052611.500-53246.000161.167-78.6670.0000.000161.167-78.667
      2014-01-1486.00052603.500-53178.00054.667-124.5420.0000.00054.667-119.833
      2014-01-149210.00052556.500-53157.0000.000-221.7840.0000.0000.000-220.792
      2014-01-1410260.00052554.000-53159.0000.000-244.3910.0000.0000.000-244.391
      2014-01-141154.00052101.000-52635.00082.250-93.9810.0000.00059.500-92.900
      2014-01-1412434.00052022.000-52980.500281.067-497.5060.0000.000281.067-494.810
      2014-01-1413777.00051718.000-53476.500310.124-352.8600.0000.000283.602-344.852
      2014-01-14141966.00050533.500-53758.50044.624-440.9410.0000.00044.624-440.898
      2014-01-14152161.00048853.500-54056.500197.428-470.4510.0000.000196.865-470.169
      2014-01-14161611.00047771.500-54012.500216.303-90.7580.0000.000206.209-90.566
      2014-01-14172026.00047665.500-54155.500102.792-100.1830.0000.000100.572-99.983
      2014-01-14182414.00047572.500-54285.50017.317-181.7100.0000.00014.592-181.068
      2014-01-14191853.00047624.500-54081.50010.926-277.2890.0000.00010.925-276.789
      2014-01-14201542.00047622.000-54076.5000.044-321.2050.0000.0000.000-320.705
      2014-01-14211533.00047637.500-54079.0000.000-438.6230.0000.0000.000-390.798
      2014-01-14221333.00047645.000-54085.0000.001-538.7230.0000.0000.000-504.548
      2014-01-14231250.00047648.000-54088.0000.000-566.7670.0000.0000.000-503.017
      2014-01-14241303.00047647.500-54088.0000.000-536.2690.0000.0000.000-487.769
      2014-01-1425941.00047779.500-54082.0004.001-442.8100.0000.0000.000-394.310
      2014-01-1426903.00047850.500-53869.0000.000-374.7330.0000.0000.000-339.925
      2014-01-1427967.00047955.500-53403.5000.120-476.0580.0000.0000.000-437.175
      2014-01-14281140.00047957.500-53333.00033.646-585.8120.0000.00033.146-585.670
      2014-01-14291262.00047840.000-53358.50084.100-607.1130.0000.00084.100-606.780
      2014-01-14301712.00047814.500-53572.00014.602-841.1640.0000.00014.500-840.664
      2014-01-14311683.00047816.000-53581.00029.667-820.0750.0000.00022.167-819.676
      2014-01-14321485.00047861.000-53820.00028.000-563.7860.0000.0007.000-563.369
      2014-01-14332240.00047583.500-54518.50028.762-595.8830.0000.00027.417-593.557
      2014-01-14342009.00047316.500-54528.00029.008-644.0110.0000.00029.008-642.994
      2014-01-1435529.00047267.500-54563.00048.265-753.4800.0000.00016.993-734.230
      2014-01-1436648.00047330.000-54560.50011.331-764.3150.0000.0000.000-712.231
      2014-01-1437478.00047337.500-54845.0001.192-641.0650.0000.0000.000-634.736
      2014-01-1438373.00047345.500-54807.50052.242-549.2150.0000.00037.992-548.632
      2014-01-1439-282.00048244.500-54799.500150.948-305.4670.0000.000133.733-304.790
      2014-01-1440-607.00048721.500-54460.000331.752-411.5290.0000.000318.152-380.824
      2014-01-1441-758.00049503.500-54168.000422.222-273.4230.0000.000404.932-264.290
      2014-01-1442-854.00049695.500-53782.000469.662-231.0350.0000.000453.912-228.359
      2014-01-1443-549.00050145.000-53777.500485.421-411.7270.0000.000445.170-367.060
      2014-01-1444-147.00050494.500-53757.500458.384-605.4140.0000.000458.383-487.373
      2014-01-1445-577.00051342.500-53756.000585.867-562.5230.0000.000568.700-396.482
      2014-01-1446-719.00052187.000-53756.000630.794-482.8690.0000.000626.260-213.749
      2014-01-1447-532.00052132.500-53650.000646.699-571.6480.0000.000646.699-543.648
      2014-01-1448-153.00052136.500-53585.000542.045-649.6910.0000.000542.045-515.614
      2014-01-151-532.00052630.000-53817.000614.098-473.7990.0000.000614.098-351.307
      2014-01-152-516.00052628.000-53685.500587.654-424.1600.0000.000587.654-251.393
      2014-01-153-586.00052625.000-53685.500603.613-260.2240.0000.000603.613-1.399
      2014-01-154-252.00052897.500-53563.000395.845-277.0720.0000.000395.845-34.542
      2014-01-155-434.00052919.000-52762.000281.085-251.5430.0000.000281.085-9.043
      2014-01-156-525.00052904.500-52392.500252.475-242.7370.0000.000252.4750.000
      2014-01-157-597.00052912.000-52163.500376.584-273.4490.0000.000376.443-19.865
      2014-01-158-332.00052911.000-52134.000377.338-272.1420.0000.000377.338-150.258
      2014-01-159-235.00053017.000-52056.500404.050-329.0110.0000.000403.551-208.658
      2014-01-1510268.00053003.500-51954.000252.430-386.4460.0000.000251.917-266.445
      2014-01-1511-138.00052427.500-52192.500351.485-309.1930.0000.000328.631-308.027
      2014-01-1512627.00052215.000-52643.500355.554-767.9120.0000.000354.274-766.379
      2014-01-1513420.00051841.000-53516.500696.494-939.9120.0000.000696.494-939.345
      2014-01-1514-5.00051268.500-53745.000633.599-672.5620.0000.000632.891-672.560
      2014-01-1515-153.00050304.500-54009.500442.444-505.3180.0000.000438.694-450.789
      2014-01-151667.00048759.500-53998.500426.233-391.7740.0000.000380.341-38.159
      2014-01-1517460.00048219.500-58586.000352.783-352.7110.0000.000351.952-105.607
      2014-01-1518446.00048170.000-58561.500294.959-281.6940.0000.000294.767-34.452
      2014-01-1519-119.00048174.500-58553.500403.738-291.5290.0000.000403.737-51.508
      2014-01-1520-549.00048173.000-58548.500427.907-291.5040.0000.000407.879-51.500
      2014-01-1521-484.00048180.500-58547.500488.450-294.7250.0000.000454.442-54.725
      2014-01-1522-445.00048179.500-58547.500395.488-362.0500.0000.000395.400-122.050
      2014-01-1523-694.00048190.500-58542.500416.615-340.8420.0000.000404.615-100.842
      2014-01-1524-506.00048193.000-58542.500363.602-364.2250.0000.000363.602-133.051
      2014-01-1525-674.00048188.500-58555.000405.008-418.4490.0000.000405.000-197.949
      2014-01-1526-663.00048189.500-58554.500368.259-437.9710.0000.000339.259-215.164
      2014-01-1527-803.00048185.500-58553.500361.790-400.9840.0000.000350.401-224.989
      2014-01-1528-826.00047835.000-58553.500351.617-468.6010.0000.000351.251-313.367
      2014-01-1529-861.00047835.500-58623.000489.776-504.2320.0000.000435.314-360.321
      2014-01-1530-267.00047836.500-58628.000436.238-612.7720.0000.000416.833-533.416
      2014-01-1531477.00047838.000-58628.000441.848-930.8850.0000.000390.243-845.421
      2014-01-1532203.00047775.000-58558.000524.048-893.5320.0000.000517.516-830.402
      2014-01-1533473.00047497.500-58412.000429.994-833.9130.0000.000426.238-829.935
      2014-01-1534-374.00047284.000-58426.500543.487-555.8630.0000.000481.780-555.863
      2014-01-1535-887.00047232.000-58458.500509.125-607.7330.0000.000508.667-492.733
      2014-01-1536-465.00047304.000-58458.500535.682-790.1410.0000.000502.000-665.224
      2014-01-1537-449.00047338.000-58424.500732.630-658.4640.0000.000657.222-567.297
      2014-01-1538-315.00047353.500-58424.500339.577-332.1430.0000.000319.736-322.857
      2014-01-1539-597.00048043.000-58408.000381.742-117.4080.0000.000380.967-115.591
      2014-01-1540-101.00048253.500-58408.000347.763-241.4300.0000.000346.722-186.638
      2014-01-1541127.00048789.000-58408.000318.131-313.7070.0000.000247.281-309.907
      2014-01-1542-23.00049234.500-57982.500359.194-30.0350.0000.000358.694-30.023
      2014-01-1543-222.00049630.000-57808.500335.952-128.3840.0000.000306.787-123.008
      2014-01-154496.00049924.500-57804.000308.002-369.9880.0000.000279.468-369.988
      2014-01-1545365.00050758.000-57799.000      
      2014-01-1546189.00051561.500-57824.500      
      2014-01-1547-153.00051726.000-57773.500      
      2014-01-1548-13.00051731.500-57778.500      
      2014-01-161-69.000        
      2014-01-16256.000        
      2014-01-163-169.000        
      2014-01-164224.000        
      -
      - - diff --git a/tests/FSharp.Data.Core.Tests/Data/Nested.json b/tests/FSharp.Data.Core.Tests/Data/Nested.json deleted file mode 100644 index 0216aeddc..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Nested.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "main": { - "firstName": "John", - "lastName": "Doe", - "age": 25, - "isCool": true - } -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/NuGet.html b/tests/FSharp.Data.Core.Tests/Data/NuGet.html deleted file mode 100644 index 877707f30..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/NuGet.html +++ /dev/null @@ -1,725 +0,0 @@ - - - - - - - - - - - - - - - - - - NuGet Gallery - | FSharp.Data 2.0.1 - - - - - - - - - - - - - - - - - -
      -
      -
      -
      - - -
      - -
      - - - -
      - - -
      -
      -

      6,699

      -

      - Downloads

      -
      -
      -

      44

      -

      - Downloads of v 2.0.1

      -
      -
      -

      2014-03-14

      -

      - Last published

      -
      -
      - - - - - -
      -
      - -
      -
      -

      FSharp.Data

      -

      2.0.1

      -
      -

      The FSharp.Data package (FSharp.Data.dll) implements everything you need to access data -

      -

      in your F# applications and scripts. It implements F# type providers for working with -

      -

      structured file formats (CSV, JSON and XML) and for accessing the WorldBank and Freebase -

      -

      data. It also includes helpers for parsing JSON and CSV files and for sending HTTP requests.

      - -

      - To install FSharp.Data, run the following command in the - Package Manager Console -

      -
      -

      - PM> Install-Package FSharp.Data -

      -
      -
      - -
      -
      - -

      Release Notes

      -

      * Fixed Freebase provider throwing exceptions in the absence of network connectivity even when not used.

      - -

      Owners

      - - -
      -

      Authors

      -

      - Tomas Petricek, Gustavo Guerra -

      -
      -

      Copyright

      -

      Copyright 2014

      -

      Tags

      - -

      Dependencies

      -
        -
      • -

        .NETFramework 4.0

        -
          -
        • - No dependencies. -
        • -
        -
      • -
      • -

        Portable Class Library (.NETFramework 4.0, Silverlight 5.0, WindowsPhone 8.0, Windows 8.0)

        - -
      • -
      • -

        Portable Class Library (.NETFramework 4.5, Windows 8.0)

        - -
      • -
      -

      Version History

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Version - - Downloads - - Last updated -
      - - FSharp.Data - 2.0.0 - - 193 - Monday, March 10 2014 -
      - - FSharp.Data - 2.0.0-beta3 - - 32 - Tuesday, March 04 2014 -
      - - FSharp.Data - 2.0.0-beta2 - - 46 - Thursday, February 27 2014 -
      - - FSharp.Data - 2.0.0-beta - - 20 - Monday, February 24 2014 -
      - - FSharp.Data - 2.0.0-alpha7 - - 27 - Thursday, February 20 2014 -
      - - FSharp.Data - 2.0.0-alpha6 - - 64 - Tuesday, February 04 2014 -
      - - FSharp.Data - 2.0.0-alpha5 - - 1 - Monday, February 03 2014 -
      - - FSharp.Data - 2.0.0-alpha4 - - 11 - Thursday, January 30 2014 -
      - - FSharp.Data - 2.0.0-alpha3 - - 73 - Monday, December 30 2013 -
      - - FSharp.Data - 2.0.0-alpha2 - - 6 - Tuesday, December 24 2013 -
      - - FSharp.Data - 2.0.0-alpha - - 34 - Sunday, December 15 2013 -
      - - FSharp.Data - 1.1.10 - - 2974 - Thursday, September 12 2013 -
      - - FSharp.Data - 1.1.9 - - 892 - Sunday, July 21 2013 -
      - - FSharp.Data - 1.1.8 - - 237 - Monday, July 01 2013 -
      - - FSharp.Data - 1.1.7 - - 30 - Monday, July 01 2013 -
      - - FSharp.Data - 1.1.6 - - 50 - Sunday, June 30 2013 -
      - - FSharp.Data - 1.1.5 - - 569 - Monday, May 13 2013 -
      - - FSharp.Data - 1.1.4 - - 253 - Saturday, April 13 2013 -
      - - FSharp.Data - 1.1.3 - - 70 - Monday, April 08 2013 -
      - - FSharp.Data - 1.1.2 - - 68 - Saturday, March 30 2013 -
      - - FSharp.Data - 1.1.1 - - 330 - Monday, February 18 2013 -
      - - FSharp.Data - 1.1.0 - - 55 - Monday, February 18 2013 -
      - - FSharp.Data - 1.0.13 - - 166 - Wednesday, January 16 2013 -
      - - FSharp.Data - 1.0.12 - - 37 - Monday, January 14 2013 -
      - - FSharp.Data - 1.0.11 - - 32 - Monday, January 14 2013 -
      - - FSharp.Data - 1.0.10 - - 54 - Sunday, January 06 2013 -
      - - FSharp.Data - 1.0.9 - - 40 - Friday, January 04 2013 -
      - - FSharp.Data - 1.0.8 - - 34 - Friday, January 04 2013 -
      - - FSharp.Data - 1.0.6 - - 56 - Sunday, December 23 2012 -
      - - FSharp.Data - 1.0.5 - - 39 - Thursday, December 20 2012 -
      - - FSharp.Data - 1.0.4 - - 42 - Monday, December 17 2012 -
      - - FSharp.Data - 1.0.2 - - 48 - Friday, December 14 2012 -
      - - FSharp.Data - 1.0.1 - - 35 - Friday, December 14 2012 -
      - - FSharp.Data - 1.0.0 - - 37 - Thursday, December 13 2012 -
      -
      - -
      - -
      - - -
      -
      - -
      - - - - - -
      - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/OptionValues.json b/tests/FSharp.Data.Core.Tests/Data/OptionValues.json deleted file mode 100644 index 35e753c22..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/OptionValues.json +++ /dev/null @@ -1 +0,0 @@ -{ "authors": [{ "name": "Steffen", "age": 29 }, { "name": "Tomas" }]} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml b/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml deleted file mode 100644 index db8feb252..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Philosophy.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml b/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml deleted file mode 100644 index 723a758f2..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SampleAzureServiceManagement.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - South Central US - South Central US - - Compute - Storage - - - - A5 - A6 - Standard_D3 - Standard_D4 - - - A5 - A6 - Standard_D3 - Standard_D4 - - - - - Central US - Central US - - Compute - Storage - PersistentVMRole - HighMemory - - - - A5 - A6 - A7 - - - A5 - A6 - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Simple.json b/tests/FSharp.Data.Core.Tests/Data/Simple.json deleted file mode 100644 index 61e8f1478..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Simple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "firstName": "John", - "lastName": "Doe", - "age": 25, - "isCool": true -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json b/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json deleted file mode 100644 index 38ff01cbe..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SimpleArray.json +++ /dev/null @@ -1 +0,0 @@ -{ "items": [{ "id": "Open"}, {"id": "Pause"}]} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html deleted file mode 100644 index 40dc78051..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlLists.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -
      -
      -
      Count
      -
      1
      -
      2
      -
      Dates
      -
      01/01/2014
      -
      02/02/2014
      -
      Decimals
      -
      1.23
      -
      2.23
      -
      Missing
      -
      Foobar
      -
      -
      -
      -
      -
        -
      • 1
      • -
      • 2
      • -
      • 3
      • -
      -
      - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html deleted file mode 100644 index 30522d4bd..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithThead.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      MonthSavings
      Sum$180
      January$100
      February$80
      - -

      Tip: The thead, tbody, and tfoot elements will not affect the layout of the table by default. However, you can use CSS to style these elements.

      - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html b/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html deleted file mode 100644 index d3082e81f..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SimpleHtmlTablesWithTr.html +++ /dev/null @@ -1,43 +0,0 @@ - - - -
      - - - - - - - - - - - - - - - - -
      Column1Column6Column3
      True13
      yes21.92
      -
      -
      - - - - - - - - - - - - - - - - -
      DateCptyIdValue
      01/01/201213
      01/02/201221.92
      -
      - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv b/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv deleted file mode 100644 index aaa011759..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/SmallTest.csv +++ /dev/null @@ -1,4 +0,0 @@ -Name, Distance (metre),Time (s) -First, 50.0,3.7 -Second, 100.0,5.2 -Third, 150.0,6.4 diff --git a/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv b/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv deleted file mode 100644 index 1abc2aef2..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TabSeparated.csv +++ /dev/null @@ -1,5 +0,0 @@ -user_000001 2009-05-04T23:08:57Z f1b1cf71-bd35-4e99-8624-24a6e15f133a Deep Dish Fuck Me Im Famous (Pacha Ibiza)-09-28-2007 -user_000001 2009-05-04T13:54:10Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Composition 0919 (Live_2009_4_15) -user_000001 2009-05-04T13:52:04Z 坂本龍一 Mc2 (Live_2009_4_15) -user_000001 2009-05-04T13:42:52Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Hibari (Live_2009_4_15) -user_000001 2009-05-04T13:42:11Z a7f7df4a-77d8-4f12-8acd-5c60c93f4de8 坂本龍一 Mc1 (Live_2009_4_15) diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv deleted file mode 100644 index e9aa3f774..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.csv +++ /dev/null @@ -1,2 +0,0 @@ -positiveWithDayWithFraction,positiveWithoutDayWithoutFraction,negativeWithDayWithFraction,timespanOneTickGreaterThanMaxValue,timespanOneTickLessThanMinValue -1:3:16:50.5,00:30:00,-1:3:16:50.5,10675199.02:48:05.4775808,-10675199.02:48:05.4775809 \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json deleted file mode 100644 index 64ff81d56..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "positiveWithDayWithFraction": "1:3:16:50.5", - "positiveWithoutDayWithoutFraction": "00:30:00", - "negativeWithDayWithFraction": "-1:3:16:50.5", - "timespanOneTickGreaterThanMaxValue": "10675199.02:48:05.4775808", - "timespanOneTickLessThanMinValue": "-10675199.02:48:05.4775809" -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml b/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml deleted file mode 100644 index 6f165602a..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TimeSpans.xml +++ /dev/null @@ -1,7 +0,0 @@ - - 1:3:16:50.5 - 00:30:00 - -1:3:16:50.5 - 10675199.02:48:05.4775808 - -10675199.02:48:05.4775809 - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Titanic.csv b/tests/FSharp.Data.Core.Tests/Data/Titanic.csv deleted file mode 100644 index 5cc466e97..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Titanic.csv +++ /dev/null @@ -1,892 +0,0 @@ -PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked -1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S -2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C -3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S -4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S -5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S -6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q -7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S -8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S -9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S -10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C -11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S -12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S -13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S -14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S -15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S -16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S -17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q -18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S -19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S -20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C -21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S -22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S -23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q -24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S -25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S -26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S -27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C -28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S -29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q -30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S -31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C -32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C -33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q -34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S -35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C -36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S -37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C -38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S -39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S -40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C -41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S -42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S -43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C -44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C -45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q -46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S -47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q -48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q -49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C -50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S -51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S -52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S -53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C -54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S -55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C -56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S -57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S -58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C -59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S -60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S -61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C -62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28, -63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S -64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S -65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C -66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C -67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S -68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S -69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S -70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S -71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S -72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S -73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S -74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C -75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S -76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S -77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S -78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S -79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S -80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S -81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S -82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S -83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q -84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S -85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S -86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S -87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S -88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S -89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S -90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S -91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S -92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S -93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S -94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S -95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S -96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S -97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C -98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C -99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S -100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S -101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S -102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S -103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S -104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S -105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S -106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S -107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S -108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S -109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S -110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q -111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S -112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C -113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S -114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S -115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C -116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S -117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q -118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S -119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C -120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S -121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S -122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S -123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C -124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S -125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S -126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C -127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q -128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S -129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C -130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S -131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C -132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S -133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S -134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S -135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S -136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C -137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S -138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S -139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S -140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C -141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C -142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S -143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S -144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q -145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S -146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S -147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S -148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S -149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S -150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S -151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S -152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S -153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S -154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S -155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S -156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C -157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q -158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S -159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S -160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S -161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S -162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S -163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S -164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S -165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S -166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S -167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S -168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S -169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S -170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S -171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S -172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q -173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S -174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S -175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C -176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S -177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S -178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C -179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S -180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S -181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S -182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C -183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S -184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S -185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S -186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S -187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q -188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S -189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q -190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S -191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S -192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S -193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S -194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S -195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C -196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C -197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q -198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S -199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q -200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S -201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S -202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S -203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S -204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C -205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S -206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S -207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S -208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C -209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q -210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C -211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S -212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S -213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S -214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S -215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q -216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C -217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S -218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S -219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C -220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S -221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S -222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S -223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S -224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S -225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S -226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S -227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S -228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S -229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S -230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S -231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S -232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S -233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S -234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S -235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S -236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S -237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S -238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S -239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S -240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S -241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C -242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q -243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S -244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S -245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C -246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q -247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S -248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S -249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S -250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S -251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S -252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S -253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S -254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S -255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S -256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C -257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C -258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S -259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C -260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S -261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q -262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S -263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S -264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S -265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q -266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S -267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S -268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S -269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S -270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S -271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S -272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S -273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S -274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C -275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q -276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S -277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S -278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S -279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q -280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S -281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q -282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S -283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S -284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S -285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S -286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C -287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S -288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S -289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S -290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q -291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S -292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C -293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C -294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S -295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S -296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C -297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C -298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S -299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S -300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C -301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q -302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q -303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S -304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q -305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S -306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S -307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C -308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C -309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C -310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C -311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C -312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C -313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S -314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S -315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S -316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S -317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S -318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S -319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S -320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C -321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S -322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S -323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q -324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S -325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S -326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C -327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S -328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S -329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S -330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C -331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q -332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S -333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S -334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S -335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S -336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S -337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S -338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C -339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S -340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S -341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S -342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S -343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S -344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S -345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S -346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S -347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S -348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S -349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S -350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S -351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S -352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S -353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C -354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S -355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C -356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S -357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S -358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S -359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q -360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q -361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S -362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C -363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C -364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S -365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q -366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S -367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C -368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C -369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q -370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C -371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C -372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S -373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S -374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C -375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S -376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C -377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S -378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C -379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C -380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S -381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C -382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C -383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S -384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S -385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S -386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S -387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S -388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S -389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q -390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C -391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S -392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S -393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S -394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C -395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S -396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S -397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S -398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S -399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S -400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S -401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S -402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S -403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S -404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S -405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S -406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S -407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S -408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S -409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S -410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S -411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S -412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q -413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q -414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S -415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S -416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S -417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S -418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S -419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S -420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S -421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C -422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q -423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S -424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S -425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S -426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S -427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S -428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S -429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q -430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S -431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S -432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S -433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S -434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S -435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S -436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S -437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S -438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S -439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S -440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S -441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S -442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S -443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S -444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S -445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S -446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S -447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S -448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S -449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C -450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S -451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S -452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S -453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C -454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C -455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S -456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C -457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S -458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S -459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S -460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q -461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S -462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S -463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S -464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S -465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S -466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S -467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S -468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S -469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q -470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C -471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S -472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S -473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S -474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C -475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S -476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S -477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S -478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S -479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S -480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S -481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S -482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S -483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S -484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S -485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C -486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S -487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S -488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C -489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S -490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S -491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S -492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S -493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S -494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C -495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S -496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C -497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C -498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S -499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S -500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S -501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S -502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q -503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q -504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S -505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S -506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C -507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S -508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S -509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S -510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S -511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q -512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S -513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S -514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C -515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S -516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S -517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S -518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q -519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S -520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S -521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S -522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S -523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C -524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C -525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C -526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q -527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S -528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S -529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S -530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S -531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S -532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C -533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C -534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C -535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S -536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S -537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S -538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C -539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S -540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C -541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S -542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S -543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S -544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S -545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C -546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S -547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S -548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C -549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S -550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S -551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C -552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S -553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q -554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C -555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S -556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S -557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C -558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C -559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S -560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S -561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q -562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S -563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S -564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S -565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S -566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S -567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S -568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S -569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C -570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S -571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S -572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S -573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S -574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q -575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S -576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S -577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S -578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S -579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C -580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S -581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S -582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C -583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S -584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C -585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C -586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S -587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S -588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C -589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S -590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S -591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S -592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C -593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S -594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q -595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S -596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S -597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S -598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S -599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C -600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C -601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S -602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S -603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S -604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S -605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C -606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S -607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S -608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S -609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C -610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S -611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S -612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S -613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q -614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q -615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S -616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S -617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S -618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S -619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S -620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S -621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C -622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S -623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C -624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S -625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S -626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S -627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q -628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S -629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S -630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q -631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S -632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S -633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C -634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S -635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S -636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S -637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S -638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S -639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S -640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S -641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S -642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C -643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S -644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S -645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C -646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C -647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S -648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C -649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S -650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S -651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S -652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S -653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S -654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q -655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q -656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S -657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S -658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q -659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S -660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C -661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S -662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C -663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S -664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S -665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S -666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S -667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S -668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S -669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S -670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S -671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S -672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S -673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S -674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S -675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S -676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S -677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S -678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S -679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S -680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C -681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q -682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C -683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S -684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S -685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S -686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C -687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S -688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S -689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S -690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S -691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S -692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C -693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S -694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C -695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S -696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S -697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S -698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q -699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C -700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S -701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C -702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S -703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C -704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q -705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S -706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S -707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S -708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S -709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S -710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C -711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C -712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S -713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S -714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S -715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S -716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S -717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C -718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S -719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q -720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S -721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S -722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S -723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S -724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S -725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S -726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S -727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S -728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q -729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S -730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S -731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S -732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C -733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S -734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S -735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S -736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S -737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S -738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C -739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S -740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S -741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S -742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S -743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C -744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S -745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S -746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S -747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S -748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S -749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S -750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q -751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S -752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S -753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S -754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S -755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S -756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S -757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S -758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S -759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S -760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S -761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S -762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S -763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C -764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S -765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S -766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S -767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C -768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q -769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q -770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S -771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S -772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S -773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S -774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C -775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S -776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S -777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q -778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S -779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q -780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S -781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C -782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S -783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S -784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S -785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S -786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S -787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S -788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q -789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S -790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C -791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q -792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S -793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S -794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C -795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S -796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S -797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S -798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S -799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C -800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S -801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S -802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S -803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S -804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C -805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S -806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S -807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S -808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S -809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S -810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S -811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S -812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S -813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S -814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S -815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S -816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S -817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S -818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C -819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S -820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S -821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S -822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S -823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S -824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S -825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S -826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q -827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S -828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C -829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q -830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28, -831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C -832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S -833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C -834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S -835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S -836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C -837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S -838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S -839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S -840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C -841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S -842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S -843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C -844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C -845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S -846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S -847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S -848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C -849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S -850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C -851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S -852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S -853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C -854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S -855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S -856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S -857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S -858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S -859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C -860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C -861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S -862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S -863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S -864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S -865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S -866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S -867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C -868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S -869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S -870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S -871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S -872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S -873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S -874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S -875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C -876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C -877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S -878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S -879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S -880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C -881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S -882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S -883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S -884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S -885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S -886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q -887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S -888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S -889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S -890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C -891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q diff --git a/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json b/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json deleted file mode 100644 index d0fda8d6f..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TwitterSample.json +++ /dev/null @@ -1,32 +0,0 @@ -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464901771265,"id_str":"333297464901771265","text":"RT @melaniesdx3: Why a sudden change","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701626206,"id_str":"701626206","name":"Devin Garcia","screen_name":"D_garcia620","location":"","url":null,"description":"Soccer \u26bd ,Gemini \/ Honduran \nRevere ,MA","protected":false,"followers_count":274,"friends_count":284,"listed_count":0,"created_at":"Tue Jul 17 19:26:32 +0000 2012","favourites_count":420,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":1931,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3637342214\/7503c92c6021bb5bb88e148827d18a18_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3637342214\/7503c92c6021bb5bb88e148827d18a18_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701626206\/1361147700","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:06:01 +0000 2013","id":333296957198065665,"id_str":"333296957198065665","text":"Why a sudden change","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100294356,"id_str":"100294356","name":"Melanie Dubon","screen_name":"melaniesdx3","location":"Revere, MA","url":null,"description":"Work hard, stay humble \u2653. IG: melaniedubon","protected":false,"followers_count":471,"friends_count":130,"listed_count":1,"created_at":"Tue Dec 29 18:57:01 +0000 2009","favourites_count":1659,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":18930,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/406066644\/16.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/406066644\/16.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3610897492\/d3eaecb3f3fbc2e9757bf4a29f0a775a_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3610897492\/d3eaecb3f3fbc2e9757bf4a29f0a775a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100294356\/1357083082","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"melaniesdx3","name":"Melanie Dubon","id":100294356,"id_str":"100294356","indices":[3,15]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464914345985,"id_str":"333297464914345985","text":"RT @Zondi_Elihle: Xa u Mampintsha enxiba o skinny mna ndilinde nton?! Ninyile shame!","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":738737929,"id_str":"738737929","name":"\u2665Kay Lisa G\u2665","screen_name":"MsKay_lisa","location":"PE and Durban (SA)","url":"http:\/\/facebook.com\/kaykayakazi.s.gqabe","description":"I'm a gorgeous Young,Tall,Freckled,developing model and a God fearing woman ;)\u2665","protected":false,"followers_count":138,"friends_count":160,"listed_count":0,"created_at":"Sun Aug 05 15:10:53 +0000 2012","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2447,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3636658560\/98a27500d068435e3d01f0087a10b8ee_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3636658560\/98a27500d068435e3d01f0087a10b8ee_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:03:47 +0000 2013","id":333296392787333120,"id_str":"333296392787333120","text":"Xa u Mampintsha enxiba o skinny mna ndilinde nton?! Ninyile shame!","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62256266,"id_str":"62256266","name":"Sbonda Sgantsontso","screen_name":"Zondi_Elihle","location":"Cape Town","url":"http:\/\/thebaconbastard.wordpress.com","description":"This just got awkward too fast.","protected":false,"followers_count":636,"friends_count":449,"listed_count":0,"created_at":"Sun Aug 02 13:03:15 +0000 2009","favourites_count":154,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":24499,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3639563764\/e917cc8b1abb3c7070229adbcdde0d73_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3639563764\/e917cc8b1abb3c7070229adbcdde0d73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62256266\/1368097635","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"tl"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Zondi_Elihle","name":"Sbonda Sgantsontso","id":62256266,"id_str":"62256266","indices":[3,16]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931123200,"id_str":"333297464931123200","text":null,"source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151075779,"id_str":"151075779","name":"\u2665Querida\u2665","screen_name":"ChiviiCuello","location":"","url":null,"description":"Por un 2013 LLENO de d\u00edas MEMORABLES \r\n 03-03-13\r\n (= Jonatica-Lovatica-Directioner =)\r\nS\u00ed, estoy bien http:\/\/t.co\/vp9Df4uSDB","protected":false,"followers_count":81,"friends_count":224,"listed_count":1,"created_at":"Wed Jun 02 14:59:41 +0000 2010","favourites_count":753,"utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"verified":false,"statuses_count":7806,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"232326","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/860104536\/be4d0c6dd42bf1ded4aaf68239bd1571.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/860104536\/be4d0c6dd42bf1ded4aaf68239bd1571.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3566269061\/7410259b10a34f7af7822ad81f728de0_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3566269061\/7410259b10a34f7af7822ad81f728de0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151075779\/1363746727","profile_link_color":"14BEE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9696EB","profile_text_color":"403939","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:51:21 +0000 2013","id":333293263937236992,"id_str":"333293263937236992","text":"http:\/\/t.co\/CBwIb4aCGJ @ChiviiCuello :D","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117382488,"id_str":"117382488","name":"Una Sacapuntas\u2665 ","screen_name":"leilazarate","location":"argentina","url":null,"description":"I'm in Love with you -\r\n1 Irlandes y 4 Britanicos se robaron mi corazon - One Direction \u2665","protected":false,"followers_count":403,"friends_count":787,"listed_count":2,"created_at":"Thu Feb 25 11:37:06 +0000 2010","favourites_count":6330,"utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"verified":false,"statuses_count":9582,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/813613794\/04e17a8ded6e932f4f1b54dc47dccac6.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/813613794\/04e17a8ded6e932f4f1b54dc47dccac6.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3379315360\/66374a61fece9b8e07d4c9ac5a30644b_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3379315360\/66374a61fece9b8e07d4c9ac5a30644b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117382488\/1363189058","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/CBwIb4aCGJ","expanded_url":"http:\/\/www.youtube.com\/watch?feature=player_embedded&v=7c2zn7hVRtY","display_url":"youtube.com\/watch?feature=\u2026","indices":[0,22]}],"user_mentions":[{"screen_name":"ChiviiCuello","name":"\u2665Querida\u2665","id":151075779,"id_str":"151075779","indices":[23,36]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/CBwIb4aCGJ","expanded_url":"http:\/\/www.youtube.com\/watch?feature=player_embedded&v=7c2zn7hVRtY","display_url":"youtube.com\/watch?feature=\u2026","indices":[17,39]}],"user_mentions":[{"screen_name":"leilazarate","name":"Una Sacapuntas\u2665 ","id":117382488,"id_str":"117382488","indices":[3,15]},{"screen_name":"ChiviiCuello","name":"\u2665Querida\u2665","id":151075779,"id_str":"151075779","indices":[40,53]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931131392,"id_str":"333297464931131392","text":"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107879573,"id_str":"107879573","name":"Royce\u26a1\u264c","screen_name":"RozaayRoycee","location":"\u2708\u270c","url":null,"description":"Loui V bag, tatts on ya arm, high heel shoes make you six feet tall, everybody wants you, you can have them all.","protected":false,"followers_count":786,"friends_count":609,"listed_count":2,"created_at":"Sun Jan 24 02:26:39 +0000 2010","favourites_count":38,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":16351,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/293451856\/super_star_status_pnk.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/293451856\/super_star_status_pnk.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3628992192\/fa559727d9b9baa1640199339c0151db_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3628992192\/fa559727d9b9baa1640199339c0151db_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107879573\/1355362781","profile_link_color":"20E6E6","profile_sidebar_border_color":"E9F5F5","profile_sidebar_fill_color":"11151F","profile_text_color":"D117D1","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 15:18:46 +0000 2013","id":333239769192607744,"id_str":"333239769192607744","text":"A #Leos Mindset: I am good at giving myself everything that I need.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125786481,"id_str":"125786481","name":"ZodiacFact","screen_name":"ZodiacFacts","location":"South Florida","url":"http:\/\/zodiacfacts.blogspot.com\/","description":"I give you information on all Zodiac Signs that are researched. Email me at ZodiacFact@Gmail.com for any business. Co-Owner of the page @The12Signs","protected":false,"followers_count":1604352,"friends_count":4547,"listed_count":11640,"created_at":"Tue Mar 23 21:40:41 +0000 2010","favourites_count":1178,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":62176,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/813051433\/8f770aad16db8e70f3b9c76cb144645b.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/813051433\/8f770aad16db8e70f3b9c76cb144645b.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3420833131\/273096a4bb4989daf4c2054fe09bb4ab_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3420833131\/273096a4bb4989daf4c2054fe09bb4ab_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":444,"favorite_count":152,"entities":{"hashtags":[{"text":"Leos","indices":[2,7]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Leos","indices":[19,24]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"ZodiacFacts","name":"ZodiacFact","id":125786481,"id_str":"125786481","indices":[3,15]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464939524097,"id_str":"333297464939524097","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224556084,"id_str":"224556084","name":"Mark Bullock","screen_name":"Bully5HVFC","location":"Newcastle upon Tyne","url":null,"description":"Current Hazlerigg VFC Gaffa, HJFC Chairman, Junior Football Coach, Partial to any sport, Football, Cricket & Rugby mainly! \n\n#KebabsbeforeAbs","protected":false,"followers_count":435,"friends_count":428,"listed_count":6,"created_at":"Thu Dec 09 08:52:30 +0000 2010","favourites_count":80,"utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"verified":false,"statuses_count":15156,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2218593729\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2218593729\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224556084\/1352576290","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:25:24 +0000 2013","id":333286736446779392,"id_str":"333286736446779392","text":"I tell you what, I bet the 3 players in the #MCFC squad that actually care are feeling pretty low right now.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360472623,"id_str":"360472623","name":"Arsene's Eyes","screen_name":"Arsenes_Eyes","location":"London","url":null,"description":"Mainly Arsenal, all sport. I will try to make you laugh. I hope to occasionally succeed.","protected":false,"followers_count":27655,"friends_count":551,"listed_count":316,"created_at":"Tue Aug 23 08:04:11 +0000 2011","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3127,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1509491546\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1509491546\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360472623\/1353194765","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":32,"favorite_count":7,"entities":{"hashtags":[{"text":"MCFC","indices":[44,49]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MCFC","indices":[62,67]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Arsenes_Eyes","name":"Arsene's Eyes","id":360472623,"id_str":"360472623","indices":[3,16]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926945280,"id_str":"333297464926945280","text":"RT @bbcdoctorwho: Want more #DoctorWho? Catch the gripping prequel to next week's finale on Red Button or right here: http:\/\/t.co\/SfwD7h9TNj","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066725972,"id_str":"1066725972","name":"chris chadwick","screen_name":"ChristophChad","location":"","url":null,"description":"I've become quite fond of the internet. It's maybe why I'm always on it?","protected":false,"followers_count":6,"friends_count":53,"listed_count":0,"created_at":"Sun Jan 06 21:19:50 +0000 2013","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3423054066\/c109db91b805206189c2172ec6697903_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3423054066\/c109db91b805206189c2172ec6697903_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1066725972\/1358108420","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:46:05 +0000 2013","id":333291942173609985,"id_str":"333291942173609985","text":"Want more #DoctorWho? Catch the gripping prequel to next week's finale on Red Button or right here: http:\/\/t.co\/SfwD7h9TNj","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237670274,"id_str":"237670274","name":"Doctor Who Official","screen_name":"bbcdoctorwho","location":"","url":"http:\/\/www.bbc.co.uk\/doctorwho","description":"The official Twitter feed for the BBC's popular drama, Doctor Who.","protected":false,"followers_count":466360,"friends_count":0,"listed_count":3446,"created_at":"Thu Jan 13 10:45:49 +0000 2011","favourites_count":0,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":true,"statuses_count":1056,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"110201","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/830949886\/037028861bdd1f7631ffc84b0c372eb2.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/830949886\/037028861bdd1f7631ffc84b0c372eb2.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3462766123\/1e29b9d3a50165dad2f5243f6a2c9380_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3462766123\/1e29b9d3a50165dad2f5243f6a2c9380_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237670274\/1364839640","profile_link_color":"FCBC5A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"00304C","profile_text_color":"FFFFFF","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":188,"favorite_count":119,"entities":{"hashtags":[{"text":"DoctorWho","indices":[10,20]}],"symbols":[],"urls":[{"url":"http:\/\/t.co\/SfwD7h9TNj","expanded_url":"http:\/\/bbc.in\/12oYg2Y","display_url":"bbc.in\/12oYg2Y","indices":[100,122]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DoctorWho","indices":[28,38]}],"symbols":[],"urls":[{"url":"http:\/\/t.co\/SfwD7h9TNj","expanded_url":"http:\/\/bbc.in\/12oYg2Y","display_url":"bbc.in\/12oYg2Y","indices":[118,140]}],"user_mentions":[{"screen_name":"bbcdoctorwho","name":"Doctor Who Official","id":237670274,"id_str":"237670274","indices":[3,16]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464905965568,"id_str":"333297464905965568","text":"\u60e1\u306e\u83ef\u306e\u4ef2\u6751\u3055\u3093\u30d0\u30fc\u30b8\u30e7\u30f3\u306eOP\u304c\u3084\u3070\u3044\u3000\u4f5c\u696d\u7528BGM\u306b\u3057\u305f\u3044\u306e\u3067CD\u306f\u3088","source":"\u003ca href=\"https:\/\/chrome.google.com\/extensions\/detail\/encaiiljifbdbjlphpgpiimidegddhic\" rel=\"nofollow\"\u003eSilver Bird\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63504914,"id_str":"63504914","name":"\u4e9c\u9ebb\u4e43\u6f84","screen_name":"kai_ogre","location":"\u30a8\u30eb\u30d5\u30fc\u30f3\u306e\u7fa4\u308c\u306e\u4e2d","url":"http:\/\/www.pixiv.net\/member.php?id=541510","description":"\u3048\u308b\u3075\u30fc\u3093\u3082\u3075\u3082\u3075\u3000\u3075\u3049\u3063\u3053\u3082\u3075\u3082\u3075\u3000\u30a8\u30eb\u30d5\u30fc\u30f3\u2640\u30ec\u30d9\u30eb1\u81c6\u75c5\u306b\u5bbf\u308a\u6728\u306716\u30bf\u30fc\u30f3\u304b\u3051\u3066\u6bba\u3055\u308c\u305f\u3044","protected":false,"followers_count":75,"friends_count":77,"listed_count":4,"created_at":"Thu Aug 06 18:49:02 +0000 2009","favourites_count":89,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":21208,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3550952888\/913e1b41baa4d3db0264a846f0238841_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3550952888\/913e1b41baa4d3db0264a846f0238841_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63504914\/1351171479","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"ja"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918548481,"id_str":"333297464918548481","text":"RT @mo_mo_k1: \u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647 \u0623\u0646\u0647\u0627 \u062a\u062d\u064a\u0641\u0647\n\n#\u062c\u0639\u0644\u0647 \u064a\u0633\u0642\u0649\n\n\u064a\u0648\u0645 \u0641\u0631\u0642\u0627\u0643\u0645 \u0639\u0644\u0649 \u062e\u064a\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":779614712,"id_str":"779614712","name":"( \u0646\u0635\u0631\u0646\u062a\u0648\u0633 1)","screen_name":"fsfdd212","location":"\u0627\u0644\u0631\u064a\u0627\u0636 ","url":null,"description":"\u0641\u0647\u0640\u0640\u062f( \u0627\u0628\u0648 \u0633\u0639\u0648\u062f ) \u0627\u0644\u0635\u062f\u0642 \u0648\u0627\u0644\u0635\u0631\u0627\u062d\u0647 \u0642\u0644\u064a\u0644 \u0627\u0644\u0645\u062a\u0635\u0641 \u0628\u0647\u0627 \u0644\u0630\u0644\u0643 \u0627\u062d\u0628 \u0627\u0644\u0645\u062a\u0635\u0641\u064a\u0646 \u0628\u0647\u0627 \u0648\u0647\u0645 \u0642\u0644\u064a\u0644\u0648\u0646","protected":false,"followers_count":1881,"friends_count":999,"listed_count":1,"created_at":"Sat Aug 25 05:17:19 +0000 2012","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12508,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3207618439\/c99621ba6f8add24da99ad9be64e0f3d_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3207618439\/c99621ba6f8add24da99ad9be64e0f3d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779614712\/1366718809","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:07:14 +0000 2013","id":333297262090391552,"id_str":"333297262090391552","text":"\u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647 \u0623\u0646\u0647\u0627 \u062a\u062d\u064a\u0641\u0647\n\n#\u062c\u0639\u0644\u0647 \u064a\u0633\u0642\u0649\n\n\u064a\u0648\u0645 \u0641\u0631\u0642\u0627\u0643\u0645 \u0639\u0644\u0649 \u062e\u064a\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1317160658,"id_str":"1317160658","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u0631\u064a\u0639\u0631","screen_name":"mo_mo_k1","location":"","url":null,"description":"\u0628\u0633\u0645\u0643 \u0627\u0644\u0644\u0647\u0645 \u0646\u062d\u064a\u0627 \u0648 \u0646\u0645\u0648\u062a \u0648 \u0628\u0641\u0636\u0644\u0643 \u0645\u0627\u0646\u062d\u0646\u062a \u0631\u0624\u0633\u0646\u0627 \u0644\u063a\u064a\u0631\u0643","protected":false,"followers_count":187,"friends_count":126,"listed_count":0,"created_at":"Sat Mar 30 20:48:42 +0000 2013","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3516378668\/e02d37af2371d1b495f8c7a3f5ffd8e1_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3516378668\/e02d37af2371d1b495f8c7a3f5ffd8e1_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u0639\u0644\u0647","indices":[22,27]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ar"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u0639\u0644\u0647","indices":[36,41]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"mo_mo_k1","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u0631\u064a\u0639\u0631","id":1317160658,"id_str":"1317160658","indices":[3,12]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918556672,"id_str":"333297464918556672","text":"RT @GetFUTfree: We verloten Nani via http:\/\/t.co\/gjiK2ZvtEA dus het is totaal willekeurig! Maar daarbij moet je natuurlijk wel promoten wan\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1122502326,"id_str":"1122502326","name":"#NoScam #Verloting","screen_name":"FUTVERLOTING45","location":"","url":null,"description":"promoting! 1x = 300 coins 2x = 500 coins 5x = 1K 10x = 2K 1 maand elke dag 10x = 10K 1 maand elke dag 20x = 25K ik geef ook advies voor je team!","protected":false,"followers_count":312,"friends_count":274,"listed_count":1,"created_at":"Sat Jan 26 16:39:33 +0000 2013","favourites_count":116,"utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":false,"verified":false,"statuses_count":6314,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3643899854\/1cf77b8eae4cb781d840658478af55c3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3643899854\/1cf77b8eae4cb781d840658478af55c3_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 19:07:01 +0000 2013","id":333297206381662208,"id_str":"333297206381662208","text":"We verloten Nani via http:\/\/t.co\/gjiK2ZvtEA dus het is totaal willekeurig! Maar daarbij moet je natuurlijk wel promoten want wij kiezen 1\/2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1418019500,"id_str":"1418019500","name":"GetFUTfree","screen_name":"GetFUTfree","location":"Playstation 3","url":null,"description":"Wij geven spelers weg, zijn bereid te handelen voor je en we scammen niet.","protected":false,"followers_count":56,"friends_count":140,"listed_count":0,"created_at":"Fri May 10 12:41:59 +0000 2013","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":163,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3639860173\/08602318c76cab2369ffbc96ba1e1d97_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3639860173\/08602318c76cab2369ffbc96ba1e1d97_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/gjiK2ZvtEA","expanded_url":"http:\/\/www.random.org","display_url":"random.org","indices":[21,43]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/gjiK2ZvtEA","expanded_url":"http:\/\/www.random.org","display_url":"random.org","indices":[37,59]}],"user_mentions":[{"screen_name":"GetFUTfree","name":"GetFUTfree","id":1418019500,"id_str":"1418019500","indices":[3,14]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464914354176,"id_str":"333297464914354176","text":"@Loki_Charmed Ciao. Be Well, stay crazy","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":333296578766991360,"in_reply_to_status_id_str":"333296578766991360","in_reply_to_user_id":1389356078,"in_reply_to_user_id_str":"1389356078","in_reply_to_screen_name":"Loki_Charmed","user":{"id":1107141967,"id_str":"1107141967","name":"Spoon Media","screen_name":"SpoonMedia_yyz","location":"","url":null,"description":"Technology advocates, enthusiasts, developers. We value innovation, transparency, and expansion of technological frontiers for the betterment of humankind.","protected":false,"followers_count":14,"friends_count":52,"listed_count":0,"created_at":"Sun Jan 20 19:47:57 +0000 2013","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":230,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"380C22","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/768975100\/da3fab7196724d7e76cbf11ad5d56ad5.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/768975100\/da3fab7196724d7e76cbf11ad5d56ad5.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3136305800\/616c98ef7e82aca7c8dfea20d51e3ad1_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3136305800\/616c98ef7e82aca7c8dfea20d51e3ad1_normal.jpeg","profile_link_color":"342045","profile_sidebar_border_color":"D4D9D9","profile_sidebar_fill_color":"89BDBF","profile_text_color":"275278","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Loki_Charmed","name":"Loki Laufeyson","id":1389356078,"id_str":"1389356078","indices":[0,13]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926928896,"id_str":"333297464926928896","text":"RT @bar8_rt: \u26a0\u270b\u0627\u0639\u0644\u0627\u0646 \n\n\u0644\u0645\u062f\u0629 \u062b\u0644\u0627\u062b \u0633\u0627\u0639\u0627\u062a \u060c \u0636\u064a\u0641\u0646\u064a \u0648\u0627\u0636\u064a\u0641\u0643 \u0645\u0628\u0627\u0634\u0631\u0629\n\n\u0648\u0627\u0644\u0644\u064a \u0645\u0627\u0636\u0641\u062a\u0647 \u064a\u0646\u0628\u0647\u0646\u064a","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1272315504,"id_str":"1272315504","name":" .. r\u0455\u043c\u03c4\u03ba *\u0323","screen_name":"fares_852","location":"\u0627\u0644\u0631\u064a\u0627\u0636 ","url":null,"description":"\u062c\u0645\u064a\u0639 \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \ufedf\u0622 \u062a\u0639\u0628\u0631 \u0639\u0646 \u062d\u064a\u0627\u0627\ufb60\u064a \u0628\u0644 \u0645\u062c\u0631\u062f \u0633\u0637\u0648\u0631 \u0631\u0627\u0642\u062a \ufedf\u064a\u0651 \u0641\u062d\u064a\u0627\u062a\u064a \ufedf\u0622 \u062a\u0646\u0637\u0631\u062d \u0627\u0645\u0627\u0645 \u0627\u0644\u062c\u0645\u064a\u0639","protected":false,"followers_count":1079,"friends_count":1051,"listed_count":1,"created_at":"Sat Mar 16 13:26:29 +0000 2013","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4257,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3635440351\/e30850dd6baf635b7dd08f701f9232f2_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3635440351\/e30850dd6baf635b7dd08f701f9232f2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1272315504\/1368105956","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:07:56 +0000 2013","id":333282338115035136,"id_str":"333282338115035136","text":"\u26a0\u270b\u0627\u0639\u0644\u0627\u0646 \n\n\u0644\u0645\u062f\u0629 \u062b\u0644\u0627\u062b \u0633\u0627\u0639\u0627\u062a \u060c \u0636\u064a\u0641\u0646\u064a \u0648\u0627\u0636\u064a\u0641\u0643 \u0645\u0628\u0627\u0634\u0631\u0629\n\n\u0648\u0627\u0644\u0644\u064a \u0645\u0627\u0636\u0641\u062a\u0647 \u064a\u0646\u0628\u0647\u0646\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844120118,"id_str":"844120118","name":"\u0627\u0644\u0628\u0631\u0642 \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 +RT","screen_name":"bar8_rt","location":"\u0627\u0644\u0645\u0646\u0634\u0646","url":null,"description":"\u274c\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0646\u0633\u0627\u0626\u064a\u0629 \u0648\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629 \u0644\u064a\u0633 \u0644\u0647\u0627 \u0631\u064a\u062a\u0648\u064a\u062a\u274c \u0641\u0648\u0644\u0648 \u0645\u064a =\u0641\u0648\u0644\u0648\u0628\u0627\u0643 \u0648\u0627\u0644\u0623\u0646\u0641\u0648\u0644\u0648\u0628\u0645\u062b\u0644\u0647 \u0644\u0644\u0641\u0648\u0644\u0648\u0628\u0627\u0643 \u0627\u0646\u062a\u0638\u0631\u0662\u0664 \u0633\u0627\u0639\u0629 \u0625\u0630\u0627\u062f\u062e\u0644\u062a \u0627\u0644\u0628\u0627\u064a\u0648 \u0642\u0644(\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645)","protected":false,"followers_count":86652,"friends_count":77935,"listed_count":133,"created_at":"Mon Sep 24 19:05:41 +0000 2012","favourites_count":79,"utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"verified":false,"statuses_count":57787,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3411084987\/10ea482c041374d6e07bc0e6d77c2933_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3411084987\/10ea482c041374d6e07bc0e6d77c2933_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844120118\/1368267487","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":43,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ar"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"bar8_rt","name":"\u0627\u0644\u0628\u0631\u0642 \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 +RT","id":844120118,"id_str":"844120118","indices":[3,11]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464901763072,"id_str":"333297464901763072","text":"Ya estoy acostumbrado a un amor desechable (8)","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96430804,"id_str":"96430804","name":"Alexis ","screen_name":"alexiscastroman","location":"","url":null,"description":"A&A 3 22\/12\/12","protected":false,"followers_count":433,"friends_count":548,"listed_count":0,"created_at":"Sat Dec 12 22:23:13 +0000 2009","favourites_count":1553,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":36990,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3643256110\/ffcf6db63e2c17b4bcada8364d00b7a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3643256110\/ffcf6db63e2c17b4bcada8364d00b7a7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96430804\/1367237956","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"es"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926957568,"id_str":"333297464926957568","text":"Peluuuuuk RT @mimiiww20: Dinging bgttttttt zzzzz :&&","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220575843,"id_str":"220575843","name":"Rissa Bella Revita A","screen_name":"rissarevitaaa","location":"","url":null,"description":"Skype\/Line: rissarevita . Bahagia bersama senyuman, tertawa sebanyak kamu bernapas, dan cinta selama kamu hidup \u2665 @adityaiping","protected":false,"followers_count":1043,"friends_count":329,"listed_count":0,"created_at":"Sun Nov 28 05:36:00 +0000 2010","favourites_count":1,"utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":12325,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFE3BA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/845655518\/dd60d2b4e921913b6976ded9b35ff877.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/845655518\/dd60d2b4e921913b6976ded9b35ff877.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3622330096\/4c453703a8a8cdb19dcc4baae4923d73_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3622330096\/4c453703a8a8cdb19dcc4baae4923d73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220575843\/1368190348","profile_link_color":"FF386A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"291C0D","profile_text_color":"53AB8D","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"mimiiww20","name":"Ismi husna hidayah","id":92212858,"id_str":"92212858","indices":[13,23]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"id"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464931127297,"id_str":"333297464931127297","text":"#directionersandbeliebersfollowparty\n1)RT This\n2)Follow The Believers And The Directioners\n3)Follow Me I'll Follow You Back\n4)See The Magic","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954009091,"id_str":"954009091","name":"\u262fLouis Tommo Gravy\u262f","screen_name":"LorenaM_1D","location":"Directioner Land!","url":null,"description":"|Louis Tomlinson Girl | Stalker Alert | @tomandrewsmusi @realmandyrain @Jadagrace @ItsMidnightRed @RealKiddSmyllz @LilDope Followed me | 0\/5 |","protected":false,"followers_count":2337,"friends_count":2353,"listed_count":1,"created_at":"Sat Nov 17 17:35:19 +0000 2012","favourites_count":57,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1309,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/859556344\/415f2c0357810913ae70db7f6593f129.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/859556344\/415f2c0357810913ae70db7f6593f129.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3609676736\/621dc1bb05bb976d9b781def8fb181fc_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3609676736\/621dc1bb05bb976d9b781def8fb181fc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954009091\/1367683120","profile_link_color":"DF7A18","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"07D892","profile_text_color":"D26019","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"741e21eeea82f00a","url":"http:\/\/api.twitter.com\/1\/geo\/id\/741e21eeea82f00a.json","place_type":"city","name":"Joliet","full_name":"Joliet, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-88.280125,41.456794],[-88.280125,41.587475],[-87.990778,41.587475],[-87.990778,41.456794]]]},"attributes":{}},"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"directionersandbeliebersfollowparty","indices":[0,36]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464910159873,"id_str":"333297464910159873","text":"[K-Drama Foods] Unstoppable High Kick and Yun Ho\u2019s Cake http:\/\/t.co\/04lIZwh8Ne (v: soompi)","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130083802,"id_str":"130083802","name":"\uc548\ub2c8\uc0ac","screen_name":"abluensj","location":"JongWoon's Ass =\u00de","url":"http:\/\/ahn-nisa.tumblr.com\/","description":"Just ELF\u2192 EverLastingFriend, EverLastingFamily, EverLastingFangirl, EverLastingFan of \uc288\ud37c\uc8fc\ub2c8\uc5b4. SU-GEN HATERS! #Shadows16 #BlockB. Pickyfollow. That's me. Problem?","protected":false,"followers_count":1333,"friends_count":865,"listed_count":7,"created_at":"Tue Apr 06 07:39:27 +0000 2010","favourites_count":428,"utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"verified":false,"statuses_count":178305,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"92C3EB","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/664504361\/00ae509414fbd012b6f3e5cacbffe048.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/664504361\/00ae509414fbd012b6f3e5cacbffe048.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781933792\/c904fa35a4efcc089617a7a0081a1391_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781933792\/c904fa35a4efcc089617a7a0081a1391_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130083802\/1348140067","profile_link_color":"333399","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"051824","profile_text_color":"CDE0FA","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http:\/\/t.co\/04lIZwh8Ne","expanded_url":"http:\/\/bit.ly\/13O1bUA","display_url":"bit.ly\/13O1bUA","indices":[56,78]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"medium","lang":"en"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464939532289,"id_str":"333297464939532289","text":"That impressionist was so funny! I love him! #bgt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192976676,"id_str":"192976676","name":"Becky Hollis","screen_name":"BeckyHollis_","location":"East Sussex, United Kingdom","url":null,"description":"instagram: beckyhollis_","protected":false,"followers_count":236,"friends_count":221,"listed_count":0,"created_at":"Mon Sep 20 17:24:10 +0000 2010","favourites_count":69,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":5063,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3560239667\/6056ed684738481a11069e987763c376_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3560239667\/6056ed684738481a11069e987763c376_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192976676\/1366398981","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bgt","indices":[45,49]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464922750977,"id_str":"333297464922750977","text":"@cietyjezyk no co Ty !!!","source":"web","truncated":false,"in_reply_to_status_id":333297261528375296,"in_reply_to_status_id_str":"333297261528375296","in_reply_to_user_id":175701464,"in_reply_to_user_id_str":"175701464","in_reply_to_screen_name":"cietyjezyk","user":{"id":389110184,"id_str":"389110184","name":"Ma\u0142go\u015b Q","screen_name":"MalgosiaQbacka","location":"Gdynia","url":"http:\/\/emkaaa.cba.pl","description":"http:\/\/emkaaa.cba.pl","protected":false,"followers_count":56,"friends_count":121,"listed_count":0,"created_at":"Tue Oct 11 21:39:29 +0000 2011","favourites_count":228,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"verified":false,"statuses_count":595,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3480749499\/2bff156e7ac5e5a317c3e24319e4a08a_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3480749499\/2bff156e7ac5e5a317c3e24319e4a08a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389110184\/1365889409","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5ad0e80f1878dc65","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5ad0e80f1878dc65.json","place_type":"admin","name":"Gdynia","full_name":"Gdynia, Pomorskie","country_code":"PL","country":"Polska","bounding_box":{"type":"Polygon","coordinates":[[[18.357961,54.422728],[18.357961,54.58437],[18.569357999999998,54.58437],[18.569357999999998,54.422728]]]},"attributes":{}},"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"cietyjezyk","name":"Ula \u015aw.","id":175701464,"id_str":"175701464","indices":[0,11]}]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"pl"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464910163968,"id_str":"333297464910163968","text":"RT @v3rny: Getting ready to DJ with @SimonWebbe1 TONIGHT\n@Club195\nwith @AntonyCosta\n@NickdaFunk\n@DarrellPrivett1\n@ClubbinCouture http:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251675430,"id_str":"251675430","name":"Avital Karmi ","screen_name":"avitalkarmi","location":"The Netherlands ","url":null,"description":"20, I love singing, good music and writing. #Blue2013 Believe in yourself, #ProudBlueFan since 2002. I can I will I know I can \u2665\u2665\u2665\u2665 http:\/\/t.co\/QtfYThaikg","protected":false,"followers_count":956,"friends_count":1979,"listed_count":1,"created_at":"Sun Feb 13 16:40:52 +0000 2011","favourites_count":15409,"utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":105947,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0EB8","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/670755617\/67a811162a2221bb2a88d1bd56c630d6.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/670755617\/67a811162a2221bb2a88d1bd56c630d6.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3129073709\/9e7ada7fb67decc4f857bbcdfee76842_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3129073709\/9e7ada7fb67decc4f857bbcdfee76842_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251675430\/1366032101","profile_link_color":"138CC4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF9959","profile_text_color":"E1E763","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 11 18:21:07 +0000 2013","id":333285658682589184,"id_str":"333285658682589184","text":"Getting ready to DJ with @SimonWebbe1 TONIGHT\n@Club195\nwith @AntonyCosta\n@NickdaFunk\n@DarrellPrivett1\n@ClubbinCouture http:\/\/t.co\/c2PO2NGZzU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":130539245,"in_reply_to_user_id_str":"130539245","in_reply_to_screen_name":"Club195","user":{"id":20612775,"id_str":"20612775","name":"DJ Vernon James","screen_name":"v3rny","location":"Book: info@WorldWideDJmgt.com","url":"http:\/\/www.VernonJames.com","description":"Pro London & Essex DJ \u260a with 10+ years of domestic & international experience. Resident: @FunkyMojoe @FunkyBuddhaClub @SugarHut & @SwitchBarLondon","protected":false,"followers_count":5107,"friends_count":2467,"listed_count":13,"created_at":"Wed Feb 11 19:10:26 +0000 2009","favourites_count":62,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":5299,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/67932768\/Board.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/67932768\/Board.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3480019693\/0f6595d55f04d39a36089c541e42a3c9_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3480019693\/0f6595d55f04d39a36089c541e42a3c9_normal.jpeg","profile_link_color":"FF00C4","profile_sidebar_border_color":"030003","profile_sidebar_fill_color":"000000","profile_text_color":"FCFCFC","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"simonwebbe1","name":"Simon Webbe","id":50200114,"id_str":"50200114","indices":[25,37]},{"screen_name":"Club195","name":"Club 195","id":130539245,"id_str":"130539245","indices":[46,54]},{"screen_name":"AntonyCosta","name":"Antony Costa","id":125968046,"id_str":"125968046","indices":[60,72]},{"screen_name":"NickdaFunk","name":"NICK da FUNK","id":78013652,"id_str":"78013652","indices":[73,84]},{"screen_name":"DarrellPrivett1","name":"Darrell Privett","id":28425975,"id_str":"28425975","indices":[85,101]},{"screen_name":"ClubbinCouture","name":"Couture","id":309715745,"id_str":"309715745","indices":[102,117]}],"media":[{"id":333197010687635456,"id_str":"333197010687635456","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/BJ_A6nZCMAAy_0S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BJ_A6nZCMAAy_0S.jpg","url":"http:\/\/t.co\/c2PO2NGZzU","display_url":"pic.twitter.com\/c2PO2NGZzU","expanded_url":"http:\/\/twitter.com\/v3rny\/status\/333197010679246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":472,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":737,"h":1024,"resize":"fit"},"medium":{"w":600,"h":834,"resize":"fit"}},"source_status_id":333197010679246848,"source_status_id_str":"333197010679246848"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"v3rny","name":"DJ Vernon James","id":20612775,"id_str":"20612775","indices":[3,9]},{"screen_name":"simonwebbe1","name":"Simon Webbe","id":50200114,"id_str":"50200114","indices":[36,48]},{"screen_name":"Club195","name":"Club 195","id":130539245,"id_str":"130539245","indices":[57,65]},{"screen_name":"AntonyCosta","name":"Antony Costa","id":125968046,"id_str":"125968046","indices":[71,83]},{"screen_name":"NickdaFunk","name":"NICK da FUNK","id":78013652,"id_str":"78013652","indices":[84,95]},{"screen_name":"DarrellPrivett1","name":"Darrell Privett","id":28425975,"id_str":"28425975","indices":[96,112]},{"screen_name":"ClubbinCouture","name":"Couture","id":309715745,"id_str":"309715745","indices":[113,128]}]},"favorited":false,"retweeted":false,"filter_level":"low"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464918564864,"id_str":"333297464918564864","text":"My Girlfriend Be Loyal, And I Just Don't Know How To Behave Myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353450519,"id_str":"353450519","name":"May15\u2661\u2665\u2661","screen_name":"ijusbecoolin","location":"","url":null,"description":"#teamjesus #teamsaved,daying daily for a chance to live foever :)","protected":false,"followers_count":195,"friends_count":293,"listed_count":0,"created_at":"Fri Aug 12 02:51:03 +0000 2011","favourites_count":174,"utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":2054,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/759726873\/363698b2fb4ad1a3071be7513981aaba.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/759726873\/363698b2fb4ad1a3071be7513981aaba.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3101868342\/d4d91eb98e541fcdc3a0f62dc5c69da5_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3101868342\/d4d91eb98e541fcdc3a0f62dc5c69da5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353450519\/1357765714","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"en"} -{"created_at":"Sat May 11 19:08:02 +0000 2013","id":333297464926945281,"id_str":"333297464926945281","text":"\u0443 \u043d\u0430\u0441 \u0442\u0443\u0442 \u0430\u0444\u0442\u0430\u043f\u0430\u0442\u0438 \u0438 \u044f \u0447\u0443\u0432\u0441\u0442\u0432\u0443\u044e \u0447\u0442\u043e \u043f\u0438\u0437\u0434\u0435\u0446","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352513325,"id_str":"352513325","name":"\u0430\u0445\u0443\u0435\u043d\u043d\u0430\u044f \u043b\u043e\u0448\u0430\u0434\u044c","screen_name":"poltaryhina","location":"","url":null,"description":"\u043d\u0438\u0447\u0435\u0433\u043e \u043b\u0438\u0447\u043d\u043e\u0433\u043e","protected":false,"followers_count":74,"friends_count":34,"listed_count":0,"created_at":"Wed Aug 10 18:41:14 +0000 2011","favourites_count":42,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6914,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/783334960\/dc536fc6fd93d491addd514cc2aa26fd.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/783334960\/dc536fc6fd93d491addd514cc2aa26fd.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3450433568\/e7cce5f66473e31ab0e237beaf0a5128_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3450433568\/e7cce5f66473e31ab0e237beaf0a5128_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"ru"} -{ - "delete": { - "status": { - "id": 333297439769522176, - "user_id": 378065731, - "id_str": "333297439769522176", - "user_id_str": "378065731" - } - } -} -{"delete":{"status":{"id":50918460506636288,"user_id":61086951,"id_str":"50918460506636288","user_id_str":"61086951"}}} - diff --git a/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json b/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json deleted file mode 100644 index f0d73a1f8..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TwitterStream.json +++ /dev/null @@ -1,96 +0,0 @@ -{"in_reply_to_status_id_str":null,"text":"I hate this stupid bumper on my iPhone. I want a new case waahhhhh","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656791552","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"C0DEED","location":"Portland, Oregon.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782994666\/db3c2083f2a8840f6e76e9069bfaea61_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"16 & I talk to myself.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/446688343\/1351200744","favourites_count":444,"screen_name":"MsHaileyMary","profile_sidebar_border_color":"C0DEED","id_str":"446688343","verified":false,"lang":"en","statuses_count":2774,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782994666\/db3c2083f2a8840f6e76e9069bfaea61_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Mon Dec 26 01:51:32 +0000 2011","profile_text_color":"333333","name":"Hailey","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":199,"url":null,"id":446688343,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"profile_link_color":"0084B4","followers_count":221},"id":263290764656791552,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"The blues havin blues #NP","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973570","entities":{"user_mentions":[],"hashtags":[{"text":"NP","indices":[22,25]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"709397","location":"Sector 2814","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2651084006\/21ec3f4b10efef83c5a7e851bd7e87b0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"A0C5C7","description":"Nobody, just a guy who loves to write and play his role as a radio personality","favourites_count":6,"screen_name":"glenius","profile_sidebar_border_color":"86A4A6","id_str":"61529198","verified":false,"lang":"en","statuses_count":10600,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2651084006\/21ec3f4b10efef83c5a7e851bd7e87b0_normal.jpeg","listed_count":5,"geo_enabled":false,"created_at":"Thu Jul 30 16:25:21 +0000 2009","profile_text_color":"36A38B","name":"Glen Sahetapy","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme6\/bg.gif","friends_count":241,"url":"http:\/\/www.editorjournal.blogspot.com","id":61529198,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif","utc_offset":25200,"profile_link_color":"36AD9B","followers_count":338},"id":263290764660973570,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"queria muuuuito que a sora n\u00e3o fosse a aula hj . (yn ' nada contra a mae dela q ta doente , mais ngm q matem\u00e1tica hj","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764656771072","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"948D87","location":"Brasil","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2631736632\/88db098ed6e11c1589634d0240cbedd1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FAFAFA","description":"Quem nasceu pra ser figurante nunca vai roubar a cena. \u266b \/ http:\/\/ask.fm\/Rocheler","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/164432967\/1351285156","favourites_count":43,"screen_name":"falobesteira_","profile_sidebar_border_color":"FFFFFF","id_str":"164432967","verified":false,"lang":"pt","statuses_count":15849,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2631736632\/88db098ed6e11c1589634d0240cbedd1_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Thu Jul 08 21:41:46 +0000 2010","profile_text_color":"33F2E2","name":"q issu chelynha ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/694685386\/5acee8c4a14af6d05b4969aacd415444.jpeg","friends_count":132,"url":null,"id":164432967,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/694685386\/5acee8c4a14af6d05b4969aacd415444.jpeg","utc_offset":-14400,"profile_link_color":"0D0C0D","followers_count":188},"id":263290764656771072,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Wonder If Creshawna Smoking .","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660969473","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"","location":"With My Love KENNY .","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2764601408\/89b2c2799396d5c2190f48a4f47d9e28_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Fuck Ah BIO ' Just Follow ME . ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/739055311\/1349564626","favourites_count":91,"screen_name":"2TiGhT_4YoU","profile_sidebar_border_color":"fff","id_str":"739055311","verified":false,"lang":"en","statuses_count":10363,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2764601408\/89b2c2799396d5c2190f48a4f47d9e28_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Aug 05 18:55:18 +0000 2012","profile_text_color":"333333","name":"BabyDOLL : )","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/692115804\/971d7409058ddbbecf73cee376f9bb75.jpeg","friends_count":313,"url":null,"id":739055311,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/692115804\/971d7409058ddbbecf73cee376f9bb75.jpeg","utc_offset":null,"profile_link_color":"51B342","followers_count":372},"id":263290764660969473,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Finally home","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656783360","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","location":"Indiana","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2677750991\/48fc178f342a03f6d1f5cbe6685806bf_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"I have my own story just like everyone else. Want to know it just ask. ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/16125023\/1349296534","favourites_count":15,"screen_name":"karmennoe","profile_sidebar_border_color":"C0DEED","id_str":"16125023","verified":false,"lang":"en","statuses_count":456,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2677750991\/48fc178f342a03f6d1f5cbe6685806bf_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Thu Sep 04 04:14:52 +0000 2008","profile_text_color":"333333","name":"Karmen Noe","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":66,"url":null,"id":16125023,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"profile_link_color":"0084B4","followers_count":38},"id":263290764656783360,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"im so bored. someone please post a video on youtube so i can watch...","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665171969","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Gadsden (Gtown) Alabama","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2780220820\/f33bb55ff32624debebc413a8dffc5c6_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"HOLLA AT ME!! streetaisedent@gmail.com..Bomb! Bomb!","favourites_count":0,"screen_name":"TrumanHughes1","profile_sidebar_border_color":"C0DEED","id_str":"842621592","verified":false,"lang":"en","statuses_count":16,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2780220820\/f33bb55ff32624debebc413a8dffc5c6_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Sep 24 00:04:42 +0000 2012","profile_text_color":"333333","name":"Truman Hughes","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":96,"url":null,"id":842621592,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":4},"id":263290764665171969,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u5927\u91d1\u6255\u3063\u3066\u904a\u3070\u3057\u3066\u3082\u3089\u3046\u3002\u3082\u3046\u3053\u306e\u4e0a\u306a\u3044\u8d05\u6ca2\u3002\u3067\u3082\uff0c\u5b9f\u969b\u306b\u306f\u305d\u306e\u8d05\u6ca2\u306e\u672c\u8cea\u3092\u6e80\u55ab\u3067\u304d\u308b\u4eba\u306f\u9650\u3089\u308c\u3066\u308b\u3002\u305d\u3053\u306b\u76ee\u306b\u898b\u3048\u306a\u3044\u968e\u5c64\u304c\u3042\u308b\u3068\u304a\u3082\u3046\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686155776","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"FFFFFF","location":"Kodaira Tokyo Japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"17451B","description":"KS(Green62)\/WasedaUniv.(Schl Adv Sci\/Eng)\/SynBio\/ChronoBio\/iGEM2010-2012\/Travel\/Airplane\/ \u5bfa\u30fb\u5ead\u3081\u3050\u308a","favourites_count":17,"screen_name":"Merlin_wand","profile_sidebar_border_color":"000000","id_str":"94788486","verified":false,"lang":"ja","statuses_count":8641,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","listed_count":31,"geo_enabled":true,"created_at":"Sat Dec 05 13:07:32 +0000 2009","profile_text_color":"000000","name":"Marin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","friends_count":629,"url":null,"id":94788486,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","utc_offset":32400,"profile_link_color":"ADADAD","followers_count":426},"id":263290764686155776,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"!!\n\n\n\u0645\u0646 \u0639\u0627\u0634 \u0645\u0631\u0636\u064a \u0631\u0628\u0647 \u0648\u0648\u0627\u0644\u062f\u064a\u0646\u0647\n[\u0645\u0627\u0647\u0645\u062a\u0647 \u062f\u0646\u064a\u0627\u0647 \u0648\u0644\u0627\u0647\u0645\u0647 \u0627\u0644\u0646\u0627\u0633 ]\n\n\u0645\u0627\u062f\u0627\u0645\u0647 \u0627\u0644\u0644\u064a \u0635\u0627\u0646 \u0646\u0641\u0633\u0647 \u0628\u062f\u064a\u0646\u0647\n[\u064a\u0628\u0642\u0649 \u0639\u0632\u064a\u0632 \u0648\u0639\u064a\u0634\u062a\u0647 \u062a\u0631\u0641\u0639 \u0627\u0644\u0631\u0627\u0633]\n\n\n!!","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764694540289","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \/ \u062f\u0628\u064a","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2755157729\/ea552dc45f6d6f14767e371ecca35eb2_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"!! \u0643\u064f\u0644 \u0643\u0644\u0645\u0629 \u062a\u062e\u0631\u062c \u0645\u0646 \u0641\u0645\u0643 \u0644\u0646 \u062a\u0639\u0648\u062f \u0641\u062a\u062e\u064a\u0651\u0631 \u0643\u0644\u0645\u0627\u062a\u0643 \u062c\u064a\u062f\u0627\u064b !! (( \u0645\u062a\u0630\u0648\u0642 \u0644\u0644\u0634\u0639\u0631 \u0648\u0644\u0633\u062a \u0634\u0627\u0639\u0631 ))\n\u30c4\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/550736167\/1350079237","favourites_count":5,"screen_name":"humood3766","profile_sidebar_border_color":"C0DEED","id_str":"550736167","verified":false,"lang":"ar","statuses_count":1344,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2755157729\/ea552dc45f6d6f14767e371ecca35eb2_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 11 05:51:17 +0000 2012","profile_text_color":"333333","name":"\u062d\u0645\u0648\u062f \u0628\u0646 \u0646\u0627\u0635\u0631 \u0627\u0644\u0643\u0639\u0628\u064a","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":41,"url":null,"id":550736167,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":64},"id":263290764694540289,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u4e0a\u7d1a\u5546\u6cd5\u3067\u305d\u308d\u305d\u308d\u5f53\u3066\u3089\u308c\u305d\u3046\u306a\u6c17\u304c\u3057\u3066\u6016\u3044","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677763073","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"Tokyo","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1100497469\/ST340002002001_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u90fd\u5185\u306e\u67d0\u30ed\u30fc\u30b9\u30af\u30fc\u30eb\uff12\u5e74\u306e\u7537\u5b50\u5b66\u751f\u3002\u30d9\u30a4\u30b9\u30bf\u30fc\u30ba\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u3002\u3061\u306a\u307f\u306b\u30a2\u30a4\u30b3\u30f3\u306f\u30c9\u30ec\u30b9\u30c7\u30f3\u306e\u8857\u304b\u3089\u898b\u305f\u30a8\u30eb\u30d9\u5ddd\u3002","favourites_count":57,"screen_name":"akirayama0714","profile_sidebar_border_color":"C0DEED","id_str":"177113350","verified":false,"lang":"ja","statuses_count":2575,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1100497469\/ST340002002001_normal.jpg","listed_count":5,"geo_enabled":false,"created_at":"Wed Aug 11 08:09:45 +0000 2010","profile_text_color":"333333","name":"Akira Y.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":648,"url":null,"id":177113350,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":232},"id":263290764677763073,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"1 prob = 1 box of tartlets #CostFatcounting","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681965568","entities":{"user_mentions":[],"hashtags":[{"text":"CostFatcounting","indices":[27,43]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"ACDED6","location":"+62","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2770853520\/f636a4dca20a4487b51877dd8e2b380c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F6F6F6","description":"I faked my birth certificate","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/35099458\/1350364896","favourites_count":97,"screen_name":"RistieTartini","profile_sidebar_border_color":"EEEEEE","id_str":"35099458","verified":false,"lang":"en","statuses_count":25950,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2770853520\/f636a4dca20a4487b51877dd8e2b380c_normal.jpeg","listed_count":6,"geo_enabled":true,"created_at":"Sat Apr 25 01:07:41 +0000 2009","profile_text_color":"333333","name":"Ristie Tartini W.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme18\/bg.gif","friends_count":497,"url":null,"id":35099458,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","utc_offset":25200,"profile_link_color":"038543","followers_count":583},"id":263290764681965568,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u3010\u5b9a\u671f\u3011\u30a2\u30e1\u30d6\u30ed\u3084\u3063\u3066\u307e\u3059\u3002\u826f\u304b\u3063\u305f\u3089http:\/\/t.co\/8mSwdH5k","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003Etwittbot.net\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961474","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/profile.ameba.jp\/kiryulove-0324\/","indices":[19,39],"display_url":"profile.ameba.jp\/kiryulove-0324\/","url":"http:\/\/t.co\/8mSwdH5k"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"C0DEED","location":"\u9ad8\u5c3e\u3063\u3071\u3044\u306e\u8c37\u9593\u306e\u9593","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2754561029\/86181ba159eb44ef31db0ebaa30c24b5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u9ad8\u5c3e\u30af\u30e9\u30b9\u30bf\u3055\u3093\u3067\u3059\/\/\/\/\/\/\uff3c\u3066\u3089\u3057\u30fc\u30e9\u30d6\u30c3!\uff0f\u4ed6\u306b\u306f\u3001\u305f\u3063\u3064\u3093\u3068\u795e\u8c37\u3055\u3093\u3068\u304b\u597d\u304d\u3067\u3059\u3063!!\u30a4\u30e9\u30b9\u30c8\u3092\u63cf\u304f\u306e\u304c\u597d\u304d(*\u00b4\u2200\uff40*)\u898f\u5236\u57a2@kannna2525\u3000\u4e95\u53e3\u88d5\u9999\u3055\u3093\u30e1\u30a4\u30f3\u3067\u58f0\u771f\u4f3c\u3092\u3057\u3066\u307e\u3059\u3002\u30b5\u30d6\u3067\u5c0f\u5009\u552f\u3055\u3093\u3068\u65e9\u898b\u6c99\u7e54\u3055\u3093\u3084\u3063\u3066\u307e\u3059\u3002\u3053\u307f\u3085\u306b\u3066\u3043\u30fc\u306f\u4f11\u6b62\u4e2d..\u3002\u51f8\u5c02\u3057\u3066\u307e\u3059\u3002","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/612998890\/1350997595","favourites_count":183,"screen_name":"kannnaduki2525","profile_sidebar_border_color":"FFFFFF","id_str":"612998890","verified":false,"lang":"ja","statuses_count":9398,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2754561029\/86181ba159eb44ef31db0ebaa30c24b5_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Wed Jun 20 00:49:09 +0000 2012","profile_text_color":"333333","name":"\u3068\u306a\u308a\u306e\u795e\u7121\u304f\u3093\u2661\u30fb\u00b0 ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/691319974\/77e26fcac6c23258ca124b2fefd185dd.gif","friends_count":236,"url":"http:\/\/com.nicovideo.jp\/community\/co1677889","id":612998890,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/691319974\/77e26fcac6c23258ca124b2fefd185dd.gif","utc_offset":32400,"profile_link_color":"FF66CC","followers_count":252},"id":263290764681961474,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u3042\u3063\u305f\u307e\u3063\u305f\u3089\u7de9\u548c\u3055\u308c\u308b\u304b\u306a\uff5e\u3068\u601d\u3063\u3066\u98a8\u5442\u5165\u3063\u305f\u3051\u3069\u7b4b\u8089\u75db\u3058\u3083\u3042\u308b\u307e\u3044\u3057\u610f\u5473\u306a\u304b\u3063\u305f\u308f","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003EJanetter\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686131200","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Osaka","profile_background_color":"0099B9","location":"\u30db\u30e2\u306e\u3042\u308b\u3068\u3053\u308d","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2453147720\/5pblq49eyz45b335fdk7_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"95E8EC","description":"\u9ed2\u5b50\u53d7\u3068\u30e2\u30f3\u30cf\u30f3","favourites_count":2217,"screen_name":"a_somi","profile_sidebar_border_color":"5ED4DC","id_str":"122627808","verified":false,"lang":"ja","statuses_count":80887,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2453147720\/5pblq49eyz45b335fdk7_normal.png","listed_count":17,"geo_enabled":false,"created_at":"Sat Mar 13 10:15:35 +0000 2010","profile_text_color":"3C3940","name":"\u3042\u305d\u307f\u305d\u6c41","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/609482983\/58l0gi5bnp8lvjihpuxf.png","friends_count":120,"url":null,"id":122627808,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/609482983\/58l0gi5bnp8lvjihpuxf.png","utc_offset":32400,"profile_link_color":"0099B9","followers_count":103},"id":263290764686131200,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"http:\/\/t.co\/oUxXm7cb","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758977","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1JaRZ31K3","indices":[0,20],"display_url":"fb.me\/1JaRZ31K3","url":"http:\/\/t.co\/oUxXm7cb"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"LiberdadeCoruja","profile_sidebar_border_color":"C0DEED","id_str":"403509683","verified":false,"lang":"pt","statuses_count":11608,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Nov 02 16:06:15 +0000 2011","profile_text_color":"333333","name":"Liberdade ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":0,"url":null,"id":403509683,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":2},"id":263290764677758977,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u30ac\u30a4\u30ad\u30c1\u306a\u30ec\u30dd\u30fc\u30c8\u306a\u3075","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764677763072","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1921454796\/___normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"sigma2525","profile_sidebar_border_color":"C0DEED","id_str":"531999373","verified":false,"lang":"ja","statuses_count":154,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1921454796\/___normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Mar 21 07:15:32 +0000 2012","profile_text_color":"333333","name":"\u3057\u3050\u307e...\uff8c\uff6b\uff9b\uff8a\uff9e100\uff8a\uff9f\uff70","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":71,"url":null,"id":531999373,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":46},"id":263290764677763072,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u0623\u0631\u0642\u0627\u0645 \u062a\u0647\u0645\u0643 :\n\n\u0628\u0644\u063a \u0639\u062f\u062f \u0627\u0644\u0648\u0642\u064a\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u0635\u0631\u064a\u064a\u0646 \u0641\u064a \u062b\u0648\u0631\u0647 \u064a\u0646\u0627\u064a\u0631 \u0648\u0645\u0627 \u062a\u0628\u0639\u0647\u0627 \u062d\u0648\u0627\u0644\u064a 1000 \u0645\u0635\u0631\u064a\n\u0628\u0644\u063a \u0639\u062f\u062f \u0627\u0644\u0648\u0641\u064a\u0627\u062a \u0641\u064a \u0627\u062d\u062f\u0627\u062b... http:\/\/t.co\/O3jbvi8I","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673564672","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1E4rhrE1L","indices":[112,132],"display_url":"fb.me\/1E4rhrE1L","url":"http:\/\/t.co\/O3jbvi8I"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"9AE4E8","location":"Egypt","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1347033358\/195426_100000114956098_1110937_n_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E0FF92","description":"","favourites_count":2,"screen_name":"mo3taz","profile_sidebar_border_color":"87BC44","id_str":"8374212","verified":false,"lang":"en","statuses_count":3304,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1347033358\/195426_100000114956098_1110937_n_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Thu Aug 23 03:39:04 +0000 2007","profile_text_color":"000000","name":"Moutaz Adel","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":654,"url":"http:\/\/www.facebook.com\/moutaz.adel","id":8374212,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-14400,"profile_link_color":"0000FF","followers_count":581},"id":263290764673564672,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\uff11\u6642\u534a\u306b\u306f\u5bdd\u305f\u3044\u306a","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665171968","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"\u3072\u3087\u3046\u3054","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2724849893\/eb432548d837b5b2e077b28b8c2240a7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u8da3\u5473\u3067\u751f\u304d\u3066\u307e\u3059\u3001\u305f\u3060\u3081\u3093\u3069\u304f\u3055\u304c\u308a\u3002 \u597d\u304d\u306a\u3082\u306e\u3068\u305d\u308c\u4ee5\u5916\u306e\u5dee\u304c\u6fc0\u3057\u3044\u3067\u3059(`\u30fb\u03c9\u30fb\u00b4) Love\uff0aKAT-TUN\/\u99ac\u5834\u5fb9\/\u5de1\u97f3\u30eb\u30ab\/\u6b4c\u3044\u624b\u3055\u3093(nero\/\u3010\u84ee\u3011\/\u308a\u3076\/\u5b9f\u8c37\u306a\u306a\/\u82b1\u305f\u3093etc)\/\u30a2\u30cb\u30e1\/\u58f0\u512aetc","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/365538534\/1350308466","favourites_count":383,"screen_name":"Mi_rosa2541","profile_sidebar_border_color":"C0DEED","id_str":"365538534","verified":false,"lang":"ja","statuses_count":12530,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2724849893\/eb432548d837b5b2e077b28b8c2240a7_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Wed Aug 31 16:15:27 +0000 2011","profile_text_color":"333333","name":"\u307f \u307b","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":202,"url":null,"id":365538534,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":131},"id":263290764665171968,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u3069\u3084\u3063","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003E\u3064\u3044\u3063\u3077\u308b\/twipple\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673568769","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Irkutsk","profile_background_color":"FF6699","location":"\u5927\u962a\u306e\u3069\u3063\u304b","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784911802\/77864eec4fdf358aa80a195fb34b48f7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F5DCE4","description":"\u25bc\u6b4c\u3068\u7d75\u3068\u97f3\u697d\u304c\u3059\u304d\u3067\u3059 \u25bd\u8a73\u3057\u304f\u306f http:\/\/twpf.jp\/mahiru_0718 \u25bcicon\uff1a\u3042\u3044\u304b\u308f\u304f\u3093(ihrpen)\u304b\u3089 \u25bd\u898f\u5236\u57a2\u3010@mhr_ksi\u3011","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/279850797\/1348227627","favourites_count":956,"screen_name":"mahiru_0718","profile_sidebar_border_color":"FFFFFF","id_str":"279850797","verified":false,"lang":"ja","statuses_count":44116,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784911802\/77864eec4fdf358aa80a195fb34b48f7_normal.jpeg","listed_count":18,"geo_enabled":false,"created_at":"Sun Apr 10 04:19:03 +0000 2011","profile_text_color":"B3AFB3","name":"\u307e\u3072\u308b\uff20\u5ddd\u6f84\u9ed2\u5b50\u5145","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665414400\/8c87956eb3ccad94914427b264d2df82.jpeg","friends_count":397,"url":"http:\/\/com.nicovideo.jp\/community\/co1102173","id":279850797,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665414400\/8c87956eb3ccad94914427b264d2df82.jpeg","utc_offset":32400,"profile_link_color":"F08BAD","followers_count":358},"id":263290764673568769,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"Cc @MrSanDelaT http:\/\/t.co\/LnomfIIG","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973571","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"MrSanDelaT","id_str":"171122809","name":"Mr San De La T","id":171122809}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/geology.com\/hurricanes\/hurricane-names.shtml","indices":[15,35],"display_url":"geology.com\/hurricanes\/hur\u2026","url":"http:\/\/t.co\/LnomfIIG"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"642D8B","location":"Bogot\u00e1","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2664324460\/d902d1796f993f12f459e8add3c800a0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Siempre con una bella sorrisa.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/144354321\/1347984202","favourites_count":38,"screen_name":"tahuers","profile_sidebar_border_color":"65B0DA","id_str":"144354321","verified":false,"lang":"es","statuses_count":2475,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2664324460\/d902d1796f993f12f459e8add3c800a0_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Sun May 16 02:14:23 +0000 2010","profile_text_color":"3D1957","name":"andrea huertas ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/423708359\/02.jpg","friends_count":312,"url":null,"id":144354321,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/423708359\/02.jpg","utc_offset":-21600,"profile_link_color":"622B87","followers_count":157},"id":263290764660973571,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263287528923226112","text":"@a_ayk_bright \u3084\u3070\u304b\u3063\u305f\u3002\u305d\u3057\u3066\u3084\u3070\u304f\u3057\u305f(\u7b11)","in_reply_to_user_id_str":"512874215","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677742593","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"a_ayk_bright","id_str":"512874215","name":"\u3042\u3084\u3081\u308d\u3093\n","id":512874215}],"hashtags":[],"urls":[]},"in_reply_to_user_id":512874215,"in_reply_to_status_id":263287528923226112,"place":null,"coordinates":null,"in_reply_to_screen_name":"a_ayk_bright","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2748935901\/84f0a7b02c4b954cccba437306c770ef_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Azione prima delle parole","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/553706398\/1350743588","favourites_count":18,"screen_name":"ayamenmei","profile_sidebar_border_color":"C0DEED","id_str":"553706398","verified":false,"lang":"ja","statuses_count":1119,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2748935901\/84f0a7b02c4b954cccba437306c770ef_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sat Apr 14 17:36:37 +0000 2012","profile_text_color":"333333","name":"mei","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":31,"url":null,"id":553706398,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":33},"id":263290764677742593,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Datanya banyak teing meeb ,ngga tau make yg mana RT @lfikran: Belom,aku gak ngerti meebRT @adamyassar @lfikran @amekkun pr uda belom meeb?","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973569","entities":{"user_mentions":[{"indices":[53,61],"screen_name":"lfikran","id_str":"570384856","name":"fikranlukman","id":570384856},{"indices":[91,102],"screen_name":"adamyassar","id_str":"304852150","name":"Adam Yassar Afzal","id":304852150},{"indices":[103,111],"screen_name":"lfikran","id_str":"570384856","name":"fikranlukman","id":570384856},{"indices":[112,120],"screen_name":"amekkun","id_str":"81303125","name":"radit!","id":81303125}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2721617746\/53918b64d961fea5d7d96579ffe1e844_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000405","description":"","favourites_count":0,"screen_name":"adamyassar","profile_sidebar_border_color":"FFFFFF","id_str":"304852150","verified":false,"lang":"en","statuses_count":3185,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2721617746\/53918b64d961fea5d7d96579ffe1e844_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed May 25 06:42:08 +0000 2011","profile_text_color":"FFFFFF","name":"Adam Yassar Afzal","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/689315091\/b30071d337333d42fb0748049c914e9d.jpeg","friends_count":128,"url":null,"id":304852150,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/689315091\/b30071d337333d42fb0748049c914e9d.jpeg","utc_offset":25200,"profile_link_color":"132D85","followers_count":129},"id":263290764660973569,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"What that mouf do doe RT @lovelyjess_22: 2 of my followers almost made me cuss but nope wont catch me slipping","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003ETweetlogix\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686147584","entities":{"user_mentions":[{"indices":[25,39],"screen_name":"lovelyjess_22","id_str":"545577218","name":"Jessica ","id":545577218}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"140C0A","location":"Nik's world ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2735895121\/e2d82164763370a8d34aa55dc12a57a9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"Silly ass who likes 2 flirt,don't take my tweets seriously cuz I don't \nGot ur moms on my iPhone ;) \nCrushing softly on @msjonez88\n@ReeMUA my twife","favourites_count":23,"screen_name":"NonchalantNik3","profile_sidebar_border_color":"EB0000","id_str":"104362512","verified":false,"lang":"en","statuses_count":91952,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2735895121\/e2d82164763370a8d34aa55dc12a57a9_normal.jpeg","listed_count":8,"geo_enabled":false,"created_at":"Wed Jan 13 03:16:24 +0000 2010","profile_text_color":"AD0505","name":"Nik Da Jerk","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/362707402\/music.jpg","friends_count":505,"url":null,"id":104362512,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/362707402\/music.jpg","utc_offset":-21600,"profile_link_color":"EDDAE5","followers_count":697},"id":263290764686147584,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290057480339456","text":"@nuriesmaismail_ mksud kau?","in_reply_to_user_id_str":"620596575","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764656795649","entities":{"user_mentions":[{"indices":[0,16],"screen_name":"nuriesmaismail_","id_str":"620596575","name":"\u2665UAF\u30c4","id":620596575}],"hashtags":[],"urls":[]},"in_reply_to_user_id":620596575,"in_reply_to_status_id":263290057480339456,"place":null,"coordinates":null,"in_reply_to_screen_name":"nuriesmaismail_","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"96E8EB","location":"Tweetland","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2686962582\/830adeb1dc70f85c1bf91720b3a09bab_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2FC1E6","description":"Islam | 13 | \u02e9\u03c3\u03ba\u043c\u03b1\u0438\u03b9\u03b1\u0438 | #TeamPBS | \u028b\u01a8\u025b \u028f\u03c3\u028b\u044f '\u044f\u025b\u03b1\u2113-\u025b\u028f\u025b\u01a8' \u0442\u03c3 \u044f\u025b\u03b1\u2113\u03b9\u0293\u025b \u0442\u043d\u025b \u044f\u025b\u03b1\u2113-\u2113\u03b9\u025b\u01a8 \u30c5","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/630647504\/1349528657","favourites_count":94,"screen_name":"Rahmann_","profile_sidebar_border_color":"FFFFFF","id_str":"630647504","verified":false,"lang":"en","statuses_count":2717,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2686962582\/830adeb1dc70f85c1bf91720b3a09bab_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon Jul 09 00:40:35 +0000 2012","profile_text_color":"000000","name":"\u024c\u03b1\u0570\u028d\u03b1\u019e\u30c5","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677937399\/0b0cf58eab6fb47e78036a93f5831698.jpeg","friends_count":103,"url":null,"id":630647504,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677937399\/0b0cf58eab6fb47e78036a93f5831698.jpeg","utc_offset":28800,"profile_link_color":"0084B4","followers_count":78},"id":263290764656795649,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Mom: I dont think there's gonna be school tomorrow and even if there is I dont want u to go, no complaining. Me: HELL YESSSS","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677771264","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Atlantic Time (Canada)","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782514334\/8f2e886ca4a7b31a2a16aaf2f75648f0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":258,"screen_name":"Cally_Peterson","profile_sidebar_border_color":"C0DEED","id_str":"802687681","verified":false,"lang":"en","statuses_count":489,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782514334\/8f2e886ca4a7b31a2a16aaf2f75648f0_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Sep 04 15:53:09 +0000 2012","profile_text_color":"333333","name":"Cally Peterson","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":118,"url":null,"id":802687681,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-14400,"profile_link_color":"0084B4","followers_count":65},"id":263290764677771264,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Uhuk*RT@syifatooz: Ternyata msh ada co yg sangat sabar, baik, setia n mau berkorban. So sweet (\u0283\u01aa\u2665\ufeec\u2665)\"","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961472","entities":{"user_mentions":[{"indices":[7,17],"screen_name":"syifatooz","id_str":"350674024","name":"Syifa \u2022\u2323\u0308\u2022","id":350674024}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Bangkok","profile_background_color":"C0DEED","location":"Jakarta-utara","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2735734197\/cf4f85a9cc0f1eb9829d1a426aae7958_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"STMT Trisakti Manajemen Transport Laut. hidup laut! \u263a ","favourites_count":0,"screen_name":"nurkholifaaaah","profile_sidebar_border_color":"C0DEED","id_str":"574199493","verified":false,"lang":"id","statuses_count":2638,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2735734197\/cf4f85a9cc0f1eb9829d1a426aae7958_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue May 08 01:49:29 +0000 2012","profile_text_color":"333333","name":"Nur Kholifah \u263a\u2665 ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":125,"url":null,"id":574199493,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":25200,"profile_link_color":"0084B4","followers_count":88},"id":263290764681961472,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290648092893184","text":"@catballneko \u3068\u3066\u3082\u5f31\u3044\u7cfb","in_reply_to_user_id_str":"399744168","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660981760","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"catballneko","id_str":"399744168","name":"\u306d\u3053\u306a\u3093\u3068\u304b\u306e\u3042\u308c","id":399744168}],"hashtags":[],"urls":[]},"in_reply_to_user_id":399744168,"in_reply_to_status_id":263290648092893184,"place":null,"coordinates":null,"in_reply_to_screen_name":"catballneko","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"1A1B1F","location":"Gunmer\u62f3 Kill you\u6b7b","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2535003734\/3_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"252429","description":"Gunmer\u570f\u3078\u3088\u3046\u3053\u305d\u3002\u4e09\u4e09\u4e09( \u055e\u0679\u055e)\uff7c\uff6d\uff70\uff9d!!!!!!\u8d85!!!!!!!!!!!\uff74\uff77\uff7b\uff72\uff6f\uff83\uff68\uff9d!!!!!!!!!!\u306aHouse\u304c\u5927\u597d\u7269\u306e\u81ea\u79f0DJ\u306e\u3088\u3046\u306a\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u307d\u3044\u4f55\u304b\u3002\u305d\u3053\u306f\u304b\u3068\u306a\u304f\u65cf\u9577\u3001\u30d7\u30ea\u30ad\u30e5\u30a2\u306b\u306a\u308a\u305f\u3044\u300cautumn-grass\u300d\u306e\u3057\u3085\u3055\u3044(\u307c\u3063\u3061)\u3002\/TELEXISTENCE\/\u7d9a\u304d\u306fWeb\u3067","favourites_count":27708,"screen_name":"crussfire","profile_sidebar_border_color":"FFFFFF","id_str":"116627106","verified":false,"lang":"ja","statuses_count":153670,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2535003734\/3_normal.jpg","listed_count":137,"geo_enabled":false,"created_at":"Tue Feb 23 03:37:36 +0000 2010","profile_text_color":"666666","name":"\u3061\u3087\u308d\u3059","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","friends_count":476,"url":"http:\/\/autumn-grass.jimdo.com\/","id":116627106,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":32400,"profile_link_color":"2FC2EF","followers_count":720},"id":263290764660981760,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290286124453889","text":"@izaizan_ que mios :C. n\u00e3o sei , porque neim comprei o convite ainda :C vou ver c da pra compra hoje aushauhs.","in_reply_to_user_id_str":"320492282","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764665176064","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"izaizan_","id_str":"320492282","name":"izabela n","id":320492282}],"hashtags":[],"urls":[]},"in_reply_to_user_id":320492282,"in_reply_to_status_id":263290286124453889,"place":null,"coordinates":null,"in_reply_to_screen_name":"izaizan_","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"642D8B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782109812\/e2a7b7363c4e48b9646cec5dc3c84da6_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"\u2665 @pqpdoritos \u2665 \/ SOLTEIRA MEMO. ","favourites_count":240,"screen_name":"BiaMemo","profile_sidebar_border_color":"000","id_str":"520859712","verified":false,"lang":"pt","statuses_count":31005,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782109812\/e2a7b7363c4e48b9646cec5dc3c84da6_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sun Mar 11 00:26:22 +0000 2012","profile_text_color":"3D1957","name":"Beatriz Martins.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme10\/bg.gif","friends_count":387,"url":null,"id":520859712,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","utc_offset":-10800,"profile_link_color":"191a1a","followers_count":617},"id":263290764665176064,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"@tinaaPW tin, amb jadi beli plastik kau yo. Besok bawak ;)","in_reply_to_user_id_str":"268307821","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660994049","entities":{"user_mentions":[{"indices":[0,8],"screen_name":"tinaaPW","id_str":"268307821","name":"\u0394TNAP","id":268307821}],"hashtags":[],"urls":[]},"in_reply_to_user_id":268307821,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"tinaaPW","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","location":"LET'S VISIT BENGKULU,INDONESIA","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2712969760\/150d3e8c11d2402b7b007757715e1673_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"Official Daily activities and fangirl posting twitter account. Proud directioner who Addicted to tekwan,chocolate&the sims3. More? Check my favourites\u2665ZaynMalik","favourites_count":172,"screen_name":"PutriCS7","profile_sidebar_border_color":"EEEEEE","id_str":"92480686","verified":false,"lang":"en","statuses_count":19975,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2712969760\/150d3e8c11d2402b7b007757715e1673_normal.jpeg","listed_count":10,"geo_enabled":false,"created_at":"Wed Nov 25 08:47:44 +0000 2009","profile_text_color":"333333","name":"\u26651D_PutriCempakaSari","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/431576103\/Favim.com-36468.jpg","friends_count":536,"url":"http:\/\/theworldofpcs.tumblr.com","id":92480686,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/431576103\/Favim.com-36468.jpg","utc_offset":-28800,"profile_link_color":"0E0E0F","followers_count":676},"id":263290764660994049,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Missyou! :(","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669382656","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"FF6699","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2418735234\/mhnzxz13dtveusavpje1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E5507E","description":"Jamina Ly C. David \/\/ 14 \/\/ Junior student \/\/ Jamasura : instagram \/\/ Start loving, forget about Hating :)","favourites_count":14,"screen_name":"UbeJammm","profile_sidebar_border_color":"CC3366","id_str":"299655027","verified":false,"lang":"en","statuses_count":577,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2418735234\/mhnzxz13dtveusavpje1_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon May 16 13:34:50 +0000 2011","profile_text_color":"362720","name":"JamDavid ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme11\/bg.gif","friends_count":134,"url":null,"id":299655027,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme11\/bg.gif","utc_offset":-36000,"profile_link_color":"B40B43","followers_count":141},"id":263290764669382656,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"@AidaBarber Quan trobem algo li dire a Don Miguel que tooques les campanes!! jajajajajaj #ANIMOOO","in_reply_to_user_id_str":"361277138","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764656791553","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"AidaBarber","id_str":"361277138","name":"\u2661 A \u00a1 D A \u2661 :)","id":361277138}],"hashtags":[{"text":"ANIMOOO","indices":[90,98]}],"urls":[]},"in_reply_to_user_id":361277138,"in_reply_to_status_id":null,"place":{"country_code":"ES","attributes":{},"full_name":"Palma de Gand\u00eda, Valencia","place_type":"city","name":"Palma de Gand\u00eda","country":"Spain","id":"1cf74738bd6d37b9","url":"http:\/\/api.twitter.com\/1\/geo\/id\/1cf74738bd6d37b9.json","bounding_box":{"type":"Polygon","coordinates":[[[-0.2808945,38.9207246],[-0.1948057,38.9207246],[-0.1948057,38.9665145],[-0.2808945,38.9665145]]]}},"coordinates":null,"in_reply_to_screen_name":"AidaBarber","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"452B12","location":"Miramar","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2642924926\/dfc9ba926c8fe943a62930ffbe63be8e_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"BEC2B1","description":"Somriure dia a dia","favourites_count":2,"screen_name":"BrianaMir","profile_sidebar_border_color":"FFFFFF","id_str":"730765465","verified":false,"lang":"es","statuses_count":996,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2642924926\/dfc9ba926c8fe943a62930ffbe63be8e_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Aug 01 14:15:21 +0000 2012","profile_text_color":"AA825E","name":"Briana Serquera","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/668208971\/4f219d2c5a11d95ed8e334425e3212d9.png","friends_count":139,"url":null,"id":730765465,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/668208971\/4f219d2c5a11d95ed8e334425e3212d9.png","utc_offset":null,"profile_link_color":"DB6018","followers_count":150},"id":263290764656791553,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"En fin...","in_reply_to_user_id_str":null,"retweet_count":0,"geo":{"type":"Point","coordinates":[37.600738,-4.3180951]},"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673564673","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":{"country_code":"ES","place_type":"city","attributes":{},"full_name":"Baena, Cordova","name":"Baena","country":"Spain","id":"f24a02a93a40359e","url":"http:\/\/api.twitter.com\/1\/geo\/id\/f24a02a93a40359e.json","bounding_box":{"type":"Polygon","coordinates":[[[-4.4269893,37.5392279],[-4.1646598,37.5392279],[-4.1646598,37.8195711],[-4.4269893,37.8195711]]]}},"coordinates":{"type":"Point","coordinates":[-4.3180951,37.600738]},"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"baena","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2677307082\/5ab9c5331cfebbc30147e284686cb8ba_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"tobe_92","profile_sidebar_border_color":"C0DEED","id_str":"483207845","verified":false,"lang":"es","statuses_count":287,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2677307082\/5ab9c5331cfebbc30147e284686cb8ba_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Sat Feb 04 19:14:38 +0000 2012","profile_text_color":"333333","name":"Alberto Lara","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":146,"url":null,"id":483207845,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":72},"id":263290764673564673,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290470808039424","text":"@tara__nugent dunno catching up on sleep haha","in_reply_to_user_id_str":"554533412","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758978","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"tara__nugent","id_str":"554533412","name":"Tara Nugent","id":554533412}],"hashtags":[],"urls":[]},"in_reply_to_user_id":554533412,"in_reply_to_status_id":263290470808039424,"place":null,"coordinates":null,"in_reply_to_screen_name":"tara__nugent","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Dublin","profile_background_color":"131516","location":"Ireland","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2771956838\/8bb9149be63c553209c8ffbba3dbe916_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"","favourites_count":58,"screen_name":"EmmaHill_","profile_sidebar_border_color":"EEEEEE","id_str":"56695941","verified":false,"lang":"en","statuses_count":2432,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2771956838\/8bb9149be63c553209c8ffbba3dbe916_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Jul 14 13:41:39 +0000 2009","profile_text_color":"333333","name":"Emma Hill \u2661","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/630735375\/zswa3olxt01wa0jahiv8.png","friends_count":347,"url":null,"id":56695941,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/630735375\/zswa3olxt01wa0jahiv8.png","utc_offset":0,"profile_link_color":"009999","followers_count":268},"id":263290764677758978,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"262992950273916929","text":"@EffBeeee Emma Phil Claire and you. So all fabulous people. You staying over?","in_reply_to_user_id_str":"200263852","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673556480","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"EffBeeee","id_str":"200263852","name":"Francesca","id":200263852}],"hashtags":[],"urls":[]},"in_reply_to_user_id":200263852,"in_reply_to_status_id":262992950273916929,"place":null,"coordinates":null,"in_reply_to_screen_name":"EffBeeee","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1675382561\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"east london, cycling, racing cars, travel, hint of financial svcs, food booze and bois... all personal comments","favourites_count":1,"screen_name":"sanguine_andrew","profile_sidebar_border_color":"C0DEED","id_str":"52718193","verified":false,"lang":"en","statuses_count":351,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1675382561\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Wed Jul 01 13:00:08 +0000 2009","profile_text_color":"333333","name":"Andrew Strange","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":75,"url":null,"id":52718193,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":87},"id":263290764673556480,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290439224922114","text":"@ZachSoma ohhh hahahah, i gotchuuu.","in_reply_to_user_id_str":"586692351","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686135296","entities":{"user_mentions":[{"indices":[0,9],"screen_name":"ZachSoma","id_str":"586692351","name":"Zach Soma","id":586692351}],"hashtags":[],"urls":[]},"in_reply_to_user_id":586692351,"in_reply_to_status_id":263290439224922114,"place":{"country_code":"US","place_type":"city","attributes":{},"full_name":"Southington, CT","name":"Southington","country":"United States","id":"f19f8cc1d91b38e3","url":"http:\/\/api.twitter.com\/1\/geo\/id\/f19f8cc1d91b38e3.json","bounding_box":{"type":"Polygon","coordinates":[[[-72.946348,41.544764],[-72.814188,41.544764],[-72.814188,41.655715],[-72.946348,41.655715]]]}},"coordinates":null,"in_reply_to_screen_name":"ZachSoma","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","location":"Southington, CT","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2767922514\/b42568f15e0031fd0d6f0302bdca32ae_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"Enjoy your youth, you'll never be younger than you are at this very moment;*","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/586936243\/1350178873","favourites_count":95,"screen_name":"marisaaaaaxo","profile_sidebar_border_color":"000000","id_str":"586936243","verified":false,"lang":"en","statuses_count":1378,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2767922514\/b42568f15e0031fd0d6f0302bdca32ae_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon May 21 22:27:20 +0000 2012","profile_text_color":"000000","name":"Marisa Caruso","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/666780656\/531f99e5d1eb37014a471cccacb9338e.jpeg","friends_count":91,"url":null,"id":586936243,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/666780656\/531f99e5d1eb37014a471cccacb9338e.jpeg","utc_offset":-18000,"profile_link_color":"F04684","followers_count":107},"id":263290764686135296,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Ngapa ? RT @SyifaMonica: *pantesan* RT @injiltambun: Gua udah rada2 gila dah -_-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764686135297","entities":{"user_mentions":[{"indices":[11,23],"screen_name":"SyifaMonica","id_str":"530933014","name":"SM","id":530933014},{"indices":[39,51],"screen_name":"injiltambun","id_str":"562123216","name":"Sipit (\u0482'\u0300\u2323'\u0301)","id":562123216}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"477594","location":"In Heart JESUS","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784835538\/a34f112f2dcf579786675a568acf889a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"3A0C0F","description":"NiVefam's \u03b5\u02d8`) \u2022 Single \u2022 22091998 \u2022 Virgo girl \u2022 Be simple \u2022 Just call me injil \u2022 Mention for Followback (\u0283\u01aa\u2665o\u2665)","favourites_count":23,"screen_name":"injiltambun","profile_sidebar_border_color":"793050","id_str":"562123216","verified":false,"lang":"id","statuses_count":4128,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784835538\/a34f112f2dcf579786675a568acf889a_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Apr 24 15:40:50 +0000 2012","profile_text_color":"DD9C37","name":"Sipit (\u0482'\u0300\u2323'\u0301)","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/615689810\/x9jq7125abhm3plmbkwb.jpeg","friends_count":114,"url":"http:\/\/www.facebook.com\/injilya.tambun","id":562123216,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/615689810\/x9jq7125abhm3plmbkwb.jpeg","utc_offset":null,"profile_link_color":"60BDA6","followers_count":159},"id":263290764686135297,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @laurarivasvr: Arribaaa oye si tu..bendigo tu existir, no te rindas no estas solo! Levantate usa rojo o rosa y sonriele a la hermosa ...","in_reply_to_user_id_str":null,"retweet_count":19,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764694540288","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"laurarivasvr","id_str":"191935591","name":"Laura Rivas","id":191935591}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Arribaaa oye si tu..bendigo tu existir, no te rindas no estas solo! Levantate usa rojo o rosa y sonriele a la hermosa vida! Amanecio Bonito","in_reply_to_user_id_str":null,"retweet_count":19,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263257736110809088","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:35:10 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"642D8B","location":"Ubicad\u00edsima","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2224702951\/IMG01030-20120418-1750_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Vidente&Medium Escritora del libro Sue\u00f1os y Se\u00f1al\u00e9s creo en la Magia! Enamorada\u2665Tranquila Feliz y Acompa\u00f1ada \u2605Mam\u00e1 de @javosabio13","favourites_count":624,"screen_name":"laurarivasvr","profile_sidebar_border_color":"65B0DA","id_str":"191935591","verified":false,"lang":"es","statuses_count":24081,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2224702951\/IMG01030-20120418-1750_normal.jpg","listed_count":424,"geo_enabled":false,"created_at":"Fri Sep 17 19:02:18 +0000 2010","profile_text_color":"3D1957","name":"Laura Rivas","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/154590384\/Magia.jpg","friends_count":239,"url":"http:\/\/www.laurarivas.com.mx","id":191935591,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/154590384\/Magia.jpg","utc_offset":-21600,"profile_link_color":"FF0000","followers_count":47868},"id":263257736110809088,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2747975479\/ec46d404bd4f1d6828362a121d4f6ae7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Mama de 3 hermoso hijos,hermana,hija,es\r\nposa,buena amiga,divertida,y orgullosamente michoacana!! ","favourites_count":0,"screen_name":"CristinaDeAndaR","profile_sidebar_border_color":"C0DEED","id_str":"132978978","verified":false,"lang":"es","statuses_count":102,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2747975479\/ec46d404bd4f1d6828362a121d4f6ae7_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Apr 14 17:53:39 +0000 2010","profile_text_color":"333333","name":"Cristina De Anda R.","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":29,"url":null,"id":132978978,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":6},"id":263290764694540288,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Cieeeeeee RT @santsantmor: hati siapa yang tau~ RT @Handriaaan Abisan kasmaran terus di TL haha RT @santsantmor: jangan sok t","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669374464","entities":{"user_mentions":[{"indices":[13,25],"screen_name":"santsantmor","id_str":"254584176","name":"santikamorinaginting","id":254584176},{"indices":[51,62],"screen_name":"Handriaaan","id_str":"407552665","name":"Handrian Apriyanto","id":407552665},{"indices":[99,111],"screen_name":"santsantmor","id_str":"254584176","name":"santikamorinaginting","id":254584176}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","location":"Medan|Sumatera Utara|Indonesia","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773614358\/410e4d014dc8fa4fd3de3f29d187051c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"842E9E","description":"Photographer | Owner Clothing Company Fight The World Est MMXII | Life Free And Enjoy | 30041994 | Humoris, Maybe.","favourites_count":3,"screen_name":"Handriaaan","profile_sidebar_border_color":"000","id_str":"407552665","verified":false,"lang":"en","statuses_count":21445,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773614358\/410e4d014dc8fa4fd3de3f29d187051c_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Nov 08 06:58:12 +0000 2011","profile_text_color":"FFFFFF","name":"Handrian Apriyanto","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697588660\/8411b7be5569a741ae5f6fa42982693b.png","friends_count":220,"url":"http:\/\/www.facebook.com\/profile.php?id=100000570107568","id":407552665,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697588660\/8411b7be5569a741ae5f6fa42982693b.png","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":500},"id":263290764669374464,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @goo_mgcl: \u30de\u30ea\u30fc\u3061\u3083\u3093\u306e\u30de\u30b9\u30af\u3092\u501f\u308a\u3066\u4e8c\u91cd\u306b\u30de\u30b9\u30af\u3092\u3064\u3051\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3001\u30b9\u30cd\u592b\u307f\u305f\u3044\u306b\u306a\u3063\u305f\u30b0\u30fc\u30d5\u30a3\u30fc http:\/\/t.co\/rTqKkTao","in_reply_to_user_id_str":null,"retweet_count":91,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669358080","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"goo_mgcl","id_str":"462917079","name":"m","id":462917079}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/twitpic.com\/b8rg1n","indices":[61,81],"display_url":"twitpic.com\/b8rg1n","url":"http:\/\/t.co\/rTqKkTao"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u30de\u30ea\u30fc\u3061\u3083\u3093\u306e\u30de\u30b9\u30af\u3092\u501f\u308a\u3066\u4e8c\u91cd\u306b\u30de\u30b9\u30af\u3092\u3064\u3051\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3001\u30b9\u30cd\u592b\u307f\u305f\u3044\u306b\u306a\u3063\u305f\u30b0\u30fc\u30d5\u30a3\u30fc http:\/\/t.co\/rTqKkTao","in_reply_to_user_id_str":null,"retweet_count":91,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetli.st\/\" rel=\"nofollow\"\u003ETweetList!\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263262998758563840","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/twitpic.com\/b8rg1n","indices":[47,67],"display_url":"twitpic.com\/b8rg1n","url":"http:\/\/t.co\/rTqKkTao"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:56:04 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2443139831\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u5171\u901a\u6301\u3061\/\u30b0\u30f2\u30bf\/\u30df\u30cb\u30fc\/\u30b0\u30df\u30cb\/\u89aa\u5b50\/\u72ac\u30b3\u30f3\u30d3\/\u30ac\u30fc\u30eb\u30ba\/\u30f4\u30a3\u30e9\u30f3\u30ba\/E\u30d1\u30ec\u3001\u30ef\u30f3\u30de\u30f3\u3001BBB\u3001\u30df\u30b7\u30ab\u3001\u6d77\u5e95\/\n\n\u3064\u3044\u306b\u9999\u6e2f\u30c7\u30a3\u30ba\u30cb\u30fc\u30c7\u30d3\u30e5\u30fc\u3057\u307e\u3057\u305f(\u00b4\u03c9\uff40)\u5922\u306f\u6d77\u5916\u30c7\u30a3\u30ba\u30cb\u30fc\u5236\u8987\uff01\n\u30d5\u30a9\u30ed\u30fc\u3001\u30ea\u30d7\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u266a","favourites_count":96,"screen_name":"goo_mgcl","profile_sidebar_border_color":"C0DEED","id_str":"462917079","verified":false,"lang":"ja","statuses_count":1757,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2443139831\/image_normal.jpg","listed_count":1,"geo_enabled":false,"created_at":"Fri Jan 13 14:25:33 +0000 2012","profile_text_color":"333333","name":"m","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":56,"url":null,"id":462917079,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":121},"id":263262998758563840,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2618901434\/mgt6i7h67uf4gcgd6kdb_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u306f\u3058\u3081\u3066\u307f\u307e\u3057\u305f\u3002 \u307e\u3060\u3088\u304f\u308f\u304b\u3063\u3066\u306a\u304f\u5931\u793c\u304c\u3042\u3063\u305f\u3089\u3054\u3081\u3093\u306a\u3055\u3044\uff01 \u30c7\u30a3\u30ba\u30cb\u30fc\u3084\u7279\u64ae(\u30b9\u30fc\u30d1\u30fc\u30d2\u30fc\u30ed\u30fc\u30bf\u30a4\u30e0)\u5927\u597d\u304d\u3067\u3059(*^\u03c9^*) \u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u3001\u306a\u3069 \u30dd\u30b1\u30e2\u30f3\u306f\u30a2\u30c1\u30e3\u30e2\u5927\u597d\u304d\u3067\u3059 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u266a \u30c7\u30a3\u30ba\u30cb\u30fcblog\u3092\u306f\u3058\u3081\u305f\u3070\u304b\u308a\u3067\u3059\u3002\u826f\u304b\u3063\u305f\u3089\u8997\u304d\u306b\u304d\u3066\u304f\u3060\u3055\u3044\uff01","favourites_count":0,"screen_name":"mayumilkchan","profile_sidebar_border_color":"C0DEED","id_str":"222582815","verified":false,"lang":"ja","statuses_count":483,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2618901434\/mgt6i7h67uf4gcgd6kdb_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Fri Dec 03 20:58:40 +0000 2010","profile_text_color":"333333","name":"\u221e\u307e\u3086\u3061\u3083\u3093\u221e","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":16,"url":"http:\/\/lovedisney8.blog.fc2.com\/","id":222582815,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":9},"id":263290764669358080,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @AstigGram: \"Taken ka nga.. Taken for granted naman.\" xD","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677742595","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"AstigGram","id_str":"599925580","name":"AstigGram Kowts","id":599925580}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\"Taken ka nga.. Taken for granted naman.\" xD","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290657836261376","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:59 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Arizona","profile_background_color":"FFFFFF","location":"Pilipinas kong mahal","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2539051470\/uo6lx8qolpxf79nc4tah_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Astig ka ba? Kung oo, ano pa hinihintay mo? hit mo na ang follow button, siguradong relate ka sa mga quotes namin :D #AstigGram ","favourites_count":339,"screen_name":"AstigGram","profile_sidebar_border_color":"FFFFFF","id_str":"599925580","verified":false,"lang":"en","statuses_count":13477,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2539051470\/uo6lx8qolpxf79nc4tah_normal.jpeg","listed_count":21,"geo_enabled":true,"created_at":"Tue Jun 05 07:57:05 +0000 2012","profile_text_color":"333333","name":"AstigGram Kowts","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/642125100\/1rvgw0pgngk4pbmv99cw.jpeg","friends_count":114,"url":null,"id":599925580,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/642125100\/1rvgw0pgngk4pbmv99cw.jpeg","utc_offset":-25200,"profile_link_color":"0084B4","followers_count":9700},"id":263290657836261376,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hong Kong","profile_background_color":"80AABF","location":"Iligan City","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2695221517\/320cde1d88830e4c7360c5a41400a145_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"follow me and everything is alright. ;)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/771190699\/1348396549","favourites_count":1834,"screen_name":"alititow","profile_sidebar_border_color":"C0DEED","id_str":"771190699","verified":false,"lang":"en","statuses_count":3923,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2695221517\/320cde1d88830e4c7360c5a41400a145_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Aug 21 09:37:33 +0000 2012","profile_text_color":"333333","name":"Alit Mangotara","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/640407876\/vhtsikwhd4mcoa2m0zbp.jpeg","friends_count":127,"url":"https:\/\/www.facebook.com\/pUnkaTok","id":771190699,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/640407876\/vhtsikwhd4mcoa2m0zbp.jpeg","utc_offset":28800,"profile_link_color":"0084B4","followers_count":111},"id":263290764677742595,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290489544011778","text":"@anneRizeline HAHAHAHA. AYOS LANG!!","in_reply_to_user_id_str":"349528960","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686139392","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"anneRizeline","id_str":"349528960","name":"AnneRizelineGothico","id":349528960}],"hashtags":[],"urls":[]},"in_reply_to_user_id":349528960,"in_reply_to_status_id":263290489544011778,"place":null,"coordinates":null,"in_reply_to_screen_name":"anneRizeline","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"London","profile_background_color":"FFFFFF","location":"Daniel's Heart","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2713325711\/b242a0cde4086db9cfea02a11f4ad2ec_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"252429","description":"We're not Daniel Padilla, we are just simple fans from Ireland, France & Philippines. This is just a FANPAGE. http:\/\/www.twitlonger.com\/show\/ji0i6u - TextClan.\u263a","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/333089518\/1348493104","favourites_count":1164,"screen_name":"DjPadillaFans","profile_sidebar_border_color":"FFFFFF","id_str":"333089518","verified":false,"lang":"en","statuses_count":32459,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2713325711\/b242a0cde4086db9cfea02a11f4ad2ec_normal.jpeg","listed_count":36,"geo_enabled":true,"created_at":"Sun Jul 10 23:44:03 +0000 2011","profile_text_color":"666666","name":"DanielPadillaFans \u25b2","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677067560\/c88b948e3ad311ef791f8e480f43c6aa.jpeg","friends_count":245,"url":"http:\/\/www.facebook.com\/DJPADILLAFansOfficialFanPage","id":333089518,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677067560\/c88b948e3ad311ef791f8e480f43c6aa.jpeg","utc_offset":0,"profile_link_color":"000000","followers_count":79381},"id":263290764686139392,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @pimpstar0230: \u3057\u3083\u3063\u304f\u308a\u304c\u3068\u307e\u3089.......\uff8b\uff6f\uff78\u3002 \u306d\u3047\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681945088","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"pimpstar0230","id_str":"185997314","name":"\u3084\u3093\u3061\u3083\u5e8aJAWS aka \u30ef\u30a4\u5144","id":185997314}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\u3057\u3083\u3063\u304f\u308a\u304c\u3068\u307e\u3089.......\uff8b\uff6f\uff78\u3002 \u306d\u3047\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263288362335600640","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:36:51 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"nagoya JAPAN ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2640385759\/acb3f92fc5cc0de7cb5eb4f4e2c31577_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"I'm baaaaaack \uff01\uff01\uff01\uff01 PIMPSTA LIFE STYLE \u3069\u3082\u3002\u30ef\u30a4\u5144\u3063\u3059\u3002\u308f\u3084\u3067\u3059\u3002\u4eca\u65e5\u3082\u3069\u3053\u304b\u3067\u9154\u3044\u6f70\u308c\u3066\u307e\u3059\u3002\u308f\u3084\u3067\u3059\u3002 \u5ac1\u3068\u606f\u5b50\u3092\u3042\u3044\u3057\u3066\u307e\u3059\u3093\u3002\u3002\u3002\u3002\u3002\u308f\u3084\u3067\u3059\u3002\u3002\u3002\u3002\u3002\u3061\u3047\u3044\u30fd(\uffe3\u25bd\uffe3)\u30ce ","favourites_count":54,"screen_name":"pimpstar0230","profile_sidebar_border_color":"C0DEED","id_str":"185997314","verified":false,"lang":"ja","statuses_count":9972,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2640385759\/acb3f92fc5cc0de7cb5eb4f4e2c31577_normal.png","listed_count":5,"geo_enabled":false,"created_at":"Thu Sep 02 10:14:17 +0000 2010","profile_text_color":"333333","name":"\u3084\u3093\u3061\u3083\u5e8aJAWS aka \u30ef\u30a4\u5144","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":214,"url":null,"id":185997314,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":245},"id":263288362335600640,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"kasugai aichi japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2262989185\/20120530_201711_31624_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u6700\u8fd1\u306e\u30de\u30a4\u30d6\u30fc\u30e0\u308f\u30d1\u30a4\u30ca\u30c3\u30d7\u30eb( \u00b4 \u25bd ` )\uff89","favourites_count":6,"screen_name":"hiitun1013","profile_sidebar_border_color":"C0DEED","id_str":"392666985","verified":false,"lang":"ja","statuses_count":2359,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2262989185\/20120530_201711_31624_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Mon Oct 17 11:51:07 +0000 2011","profile_text_color":"333333","name":"\u3072\uff68\u3064\u3093","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":234,"url":null,"id":392666985,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":270},"id":263290764681945088,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @TacoBell: #FreeDoritosTacos for America at participating Taco Bell locations Tuesday, October 30 from 2-6 p.m. Retweet this if you'r ...","in_reply_to_user_id_str":null,"retweet_count":6928,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764690333696","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"TacoBell","id_str":"7831092","name":"TACO BELL","id":7831092}],"hashtags":[{"text":"FreeDoritosTacos","indices":[14,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#FreeDoritosTacos for America at participating Taco Bell locations Tuesday, October 30 from 2-6 p.m. Retweet this if you're going!","in_reply_to_user_id_str":null,"retweet_count":6928,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263014874009960448","entities":{"user_mentions":[],"hashtags":[{"text":"FreeDoritosTacos","indices":[0,17]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 29 20:30:07 +0000 2012","user":{"notifications":null,"contributors_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"050505","location":"United States","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1863247981\/tw_brand_profile_pic_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"ECDAF4","description":"Live M\u00e1s","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/7831092\/1351375003","favourites_count":14472,"screen_name":"TacoBell","profile_sidebar_border_color":"FFFFFF","id_str":"7831092","verified":true,"lang":"en","statuses_count":16646,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1863247981\/tw_brand_profile_pic_normal.jpg","listed_count":2416,"geo_enabled":false,"created_at":"Mon Jul 30 21:52:37 +0000 2007","profile_text_color":"3C1D59","name":"TACO BELL","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695386005\/6a3f5d0fa25430765da6a73aec47dd52.jpeg","friends_count":8,"url":"http:\/\/www.TacoBell.com","id":7831092,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695386005\/6a3f5d0fa25430765da6a73aec47dd52.jpeg","utc_offset":-28800,"profile_link_color":"FA8405","followers_count":280176},"id":263014874009960448,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","location":"Alexandria, Louisiana","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2446941558\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFBFA","description":"","favourites_count":136,"screen_name":"Joshuacherndon","profile_sidebar_border_color":"080000","id_str":"50956986","verified":false,"lang":"en","statuses_count":1822,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2446941558\/image_normal.jpg","listed_count":2,"geo_enabled":false,"created_at":"Fri Jun 26 07:00:11 +0000 2009","profile_text_color":"000000","name":"Josh","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/535079153\/gffg.png","friends_count":126,"url":null,"id":50956986,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/535079153\/gffg.png","utc_offset":-21600,"profile_link_color":"0084B4","followers_count":136},"id":263290764690333696,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @jooooj22: \u618e\u3044\u65e5\u672c\u4eba\u306e\u30d5\u30ea\u3092\u3057\u3066\u91d1\u5132\u3051\u3000\u79fb\u6c11\u5148\u3067\u65e5\u672c\u6599\u7406\u306e\u5e97\u3092\u958b\u304f\u97d3\u56fd\u4eba http:\/\/t.co\/yNZxRmQC","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764673568768","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"jooooj22","id_str":"327265749","name":"not a number","id":327265749}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/riro0630.blog.fc2.com\/blog-entry-6943.html","indices":[46,66],"display_url":"riro0630.blog.fc2.com\/blog-entry-694\u2026","url":"http:\/\/t.co\/yNZxRmQC"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"\u618e\u3044\u65e5\u672c\u4eba\u306e\u30d5\u30ea\u3092\u3057\u3066\u91d1\u5132\u3051\u3000\u79fb\u6c11\u5148\u3067\u65e5\u672c\u6599\u7406\u306e\u5e97\u3092\u958b\u304f\u97d3\u56fd\u4eba http:\/\/t.co\/yNZxRmQC","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/blog.fc2.com\/\" rel=\"nofollow\"\u003EFC2 Blog Notify\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290145107738625","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/riro0630.blog.fc2.com\/blog-entry-6943.html","indices":[32,52],"display_url":"riro0630.blog.fc2.com\/blog-entry-694\u2026","url":"http:\/\/t.co\/yNZxRmQC"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:56 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"FFF04D","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1421972894\/IMG_0010_normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"f6ffd1","description":"\u4f8d\u305f\u3061\u3088\u3000\u76ee\u899a\u3081\u308b\u6642\u304c\u6765\u305f\u3088\u3046\u3067\u3059\u3002\r\n","favourites_count":56,"screen_name":"jooooj22","profile_sidebar_border_color":"fff8ad","id_str":"327265749","verified":false,"lang":"ja","statuses_count":9210,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1421972894\/IMG_0010_normal.JPG","listed_count":108,"geo_enabled":false,"created_at":"Fri Jul 01 08:20:48 +0000 2011","profile_text_color":"333333","name":"not a number","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme19\/bg.gif","friends_count":11237,"url":null,"id":327265749,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme19\/bg.gif","utc_offset":-36000,"profile_link_color":"0099CC","followers_count":10382},"id":263290145107738625,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2762603311\/52cd4cbf1077f7f7ecaf029c3b66a8dd_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":24,"screen_name":"anegatos","profile_sidebar_border_color":"C0DEED","id_str":"401318626","verified":false,"lang":"ja","statuses_count":5302,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2762603311\/52cd4cbf1077f7f7ecaf029c3b66a8dd_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sun Oct 30 11:15:03 +0000 2011","profile_text_color":"333333","name":"\u4f50\u6cbb\u885b\u9580","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":461,"url":null,"id":401318626,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":283},"id":263290764673568768,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @onedirection_ID: #imagine1D Liam buatin kamu dinner sambil senyum2, terus kamu nanya knp dia senyum dan Liam jawab \"aku senyum karna ...","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/www.writelonger.com\" rel=\"nofollow\"\u003EWrite Longer\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764660973568","entities":{"user_mentions":[{"indices":[3,19],"screen_name":"onedirection_ID","id_str":"260974316","name":"One Direction","id":260974316}],"hashtags":[{"text":"imagine1D","indices":[21,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#imagine1D Liam buatin kamu dinner sambil senyum2, terus kamu nanya knp dia senyum dan Liam jawab \"aku senyum karna aku punya kamu\" <3","in_reply_to_user_id_str":null,"retweet_count":4,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290590278602753","entities":{"user_mentions":[],"hashtags":[{"text":"imagine1D","indices":[0,10]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:43 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"072275","location":"Indonesia","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2657926596\/b423071d6e05774eee6761a7cc2614ff_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"This Is The Official Fan Page Of @onedirection Family In Indonesia (050311) Supported By: @SonyMusicID @CreativeDisc ContactMumun: (+6285755666009 @rosiyta)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/260974316\/1348304980","favourites_count":1124,"screen_name":"onedirection_ID","profile_sidebar_border_color":"FFFFFF","id_str":"260974316","verified":false,"lang":"en","statuses_count":71031,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2657926596\/b423071d6e05774eee6761a7cc2614ff_normal.jpeg","listed_count":142,"geo_enabled":true,"created_at":"Sat Mar 05 00:24:11 +0000 2011","profile_text_color":"E6DFD4","name":"One Direction","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/431463712\/AkAwdz5CAAADzTf.jpg","friends_count":4079,"url":"https:\/\/www.facebook.com\/pages\/One-Direction-Indonesia-Official\/219307418081687","id":260974316,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/431463712\/AkAwdz5CAAADzTf.jpg","utc_offset":25200,"profile_link_color":"DB1557","followers_count":126163},"id":263290590278602753,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"445CBD","location":"Jauuuuuuhh","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784349215\/3d1cf25bc6e03ceccdb217afa2735dda_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"26BAD4","description":"Jakarta, 28Nov'95 | I really love you, Myfirstlove | Someday, we would become lovers (again)","favourites_count":71,"screen_name":"ajengnovia","profile_sidebar_border_color":"39DB21","id_str":"151762644","verified":false,"lang":"en","statuses_count":9656,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784349215\/3d1cf25bc6e03ceccdb217afa2735dda_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Fri Jun 04 05:24:15 +0000 2010","profile_text_color":"6712E6","name":"Ajeng NoviaNiall","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/313438345\/images__16_.jpg","friends_count":365,"url":"http:\/\/facebook.com\/ajeng.n.pratiwi","id":151762644,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/313438345\/images__16_.jpg","utc_offset":25200,"profile_link_color":"1637DE","followers_count":382},"id":263290764660973568,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @Donkeyji: Arvind Kejriwal has filed an RTI with DERC asking questions regarding hike in electricity tariff.","in_reply_to_user_id_str":null,"retweet_count":5,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681961473","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"Donkeyji","id_str":"174222069","name":"Don Key","id":174222069}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Arvind Kejriwal has filed an RTI with DERC asking questions regarding hike in electricity tariff.","in_reply_to_user_id_str":null,"retweet_count":5,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263263156204351489","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 12:56:42 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Seoul","profile_background_color":"BADFCD","location":"Pyongyang, North Korea","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1158846960\/phpuq1dno_normal","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"Demanding Bharat Ratna for Koda\/Kalmadi\/Maino\/Arundhatiji\/Rahul Baba\/Vadra\/Khurshid\/Telgi\/Advani\/Maya\/Mamta\/Mulayam\/Paswan\/Shivpal\/Ramgopal\/Lalu\/Karuna\/Dayalu\/","favourites_count":119,"screen_name":"Donkeyji","profile_sidebar_border_color":"F2E195","id_str":"174222069","verified":false,"lang":"en","statuses_count":38389,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1158846960\/phpuq1dno_normal","listed_count":20,"geo_enabled":false,"created_at":"Tue Aug 03 11:53:03 +0000 2010","profile_text_color":"0C3E53","name":"Don Key","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/448062549\/1.png","friends_count":8,"url":"http:\/\/twitter.com","id":174222069,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/448062549\/1.png","utc_offset":32400,"profile_link_color":"FF0000","followers_count":1372},"id":263263156204351489,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mumbai","profile_background_color":"9AE4E8","location":"INDIA","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784901062\/5f33feaff8df50e6f072545c62c3b434_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"To oppose corruption in government is the highest obligation of patriotism.\n\n\u092e\u0948\u0902 \u0939\u0942\u0901 \u0906\u092e \u0906\u0926\u092e\u0940, \u092e\u0941\u091d\u0947 \u091a\u093e\u0939\u093f\u090f \u091c\u0928\u0932\u094b\u0915\u092a\u093e\u0932 \u3002\n\nfacebook.com\/FinalWarAgainstCorruption\n\n\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/261040794\/1348955633","favourites_count":153,"screen_name":"Djjpn","profile_sidebar_border_color":"C0DEED","id_str":"261040794","verified":false,"lang":"en","statuses_count":8798,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784901062\/5f33feaff8df50e6f072545c62c3b434_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Mar 05 03:36:53 +0000 2011","profile_text_color":"0A0201","name":"The Patriot","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme16\/bg.gif","friends_count":168,"url":"http:\/\/www.indiaagainstcorruption.org\/","id":261040794,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","utc_offset":19800,"profile_link_color":"0084B4","followers_count":138},"id":263290764681961473,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @oddni_: @KYRApractor__ goodmorning kyrazzzzzz (:","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764665167872","entities":{"user_mentions":[{"indices":[3,10],"screen_name":"oddni_","id_str":"557396385","name":"dope peddler. ","id":557396385},{"indices":[12,26],"screen_name":"KYRApractor__","id_str":"255828429","name":"Oct. 1st , \u2764","id":255828429}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":"263290404449964032","text":"@KYRApractor__ goodmorning kyrazzzzzz (:","in_reply_to_user_id_str":"255828429","retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290723238043648","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"KYRApractor__","id_str":"255828429","name":"Oct. 1st , \u2764","id":255828429}],"hashtags":[],"urls":[]},"in_reply_to_user_id":255828429,"in_reply_to_status_id":263290404449964032,"place":null,"coordinates":null,"in_reply_to_screen_name":"KYRApractor__","created_at":"Tue Oct 30 14:46:14 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Atlantic Time (Canada)","profile_background_color":"000203","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773465298\/a2d2bfc4327ec7b81eeee7f3337621b8_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"@trillmuffin is my baby. go follow my hooka @jordiecvt \ue409 instagram: oddni_","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/557396385\/1350229995","favourites_count":35,"screen_name":"oddni_","profile_sidebar_border_color":"FFFFFF","id_str":"557396385","verified":false,"lang":"en","statuses_count":27123,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773465298\/a2d2bfc4327ec7b81eeee7f3337621b8_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 18 23:44:26 +0000 2012","profile_text_color":"333333","name":"dope peddler. ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673451659\/1e17ade7897fce2c30f83713a9d3c0b8.jpeg","friends_count":364,"url":"http:\/\/america81.tumblr.com\/","id":557396385,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673451659\/1e17ade7897fce2c30f83713a9d3c0b8.jpeg","utc_offset":-14400,"profile_link_color":"0084B4","followers_count":441},"id":263290723238043648,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"DBE9ED","location":"doing the money dance(:","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773340929\/4005dc53c6ac1520b8ccc6336cc84f8a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2692D1","description":"what's understood doesn't have to be explained \u2728 p.s i love Mya N. Jackson \u2665","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/255828429\/1351446264","favourites_count":74,"screen_name":"KYRApractor__","profile_sidebar_border_color":"000000","id_str":"255828429","verified":false,"lang":"en","statuses_count":8523,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773340929\/4005dc53c6ac1520b8ccc6336cc84f8a_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Feb 22 03:43:44 +0000 2011","profile_text_color":"C71AC7","name":"Oct. 1st , \u2764","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/689424090\/b2a0a54649499a1349c4c8b03f4cfffe.jpeg","friends_count":206,"url":null,"id":255828429,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/689424090\/b2a0a54649499a1349c4c8b03f4cfffe.jpeg","utc_offset":-32400,"profile_link_color":"9900FF","followers_count":273},"id":263290764665167872,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263243235944714240","text":"@RaiNk0N \u305d\u3093\u306a\u3053\u305f\u3041\u306a\u3044w \u3060\u306c\u3002\u30d6\u30eb\u30fc\u30de\u30f3\u30c7\u30fc\u3067\u3059w","in_reply_to_user_id_str":"386912722","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003ETwipple Pro for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764669370368","entities":{"user_mentions":[{"indices":[0,8],"screen_name":"RaiNk0N","id_str":"386912722","name":"SiRain","id":386912722}],"hashtags":[],"urls":[]},"in_reply_to_user_id":386912722,"in_reply_to_status_id":263243235944714240,"place":null,"coordinates":null,"in_reply_to_screen_name":"RaiNk0N","created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"642D8B","location":"\u3042\u306a\u305f\u306e\u5f8c\u308d(\u80cc\u4e2d\u306b\u30c1\u30e7\u30b3\u3064\u3051\u3066\u3042\u3052ry)","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2551590816\/twipple1346140194301_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"(\u3002\u30fb\u2200\u30fb)\u30ce\u309b\u304a\u3063\u306f~ \u3055\u304f\u308c\u306a\u3068\u7533\u3057\u307e\u3059\u266a CS\u3084CSO\u3084\u3063\u3066\u308b\u65b9\u3084\u30cb\u30b3\u751f\u306e\u30ea\u30b9\u30ca\u30fc\u3055\u3093\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u306a\u3069\u3057\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059(o\uff65\u03c9\uff65o) \u30d6\u30ed\u30b0\uff1ahttp:\/\/ameblo.jp\/sakurena123\/","favourites_count":34,"screen_name":"sakurena1919","profile_sidebar_border_color":"65B0DA","id_str":"213687593","verified":false,"lang":"ja","statuses_count":11156,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2551590816\/twipple1346140194301_normal.jpg","listed_count":4,"geo_enabled":false,"created_at":"Tue Nov 09 15:01:43 +0000 2010","profile_text_color":"3D1957","name":"\u3055\u304f\u308c\u306a","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/248389199\/389844.jpg","friends_count":241,"url":"http:\/\/com.nicovideo.jp\/community\/co242964","id":213687593,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/248389199\/389844.jpg","utc_offset":32400,"profile_link_color":"FF0000","followers_count":265},"id":263290764669370368,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @XSTROLOGY: If a #Taurus becomes really mad at you, then you will become a complete stranger to them.","in_reply_to_user_id_str":null,"retweet_count":1188,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764665159681","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"XSTROLOGY","id_str":"130734452","name":"Xstrology\u2122 Zodiac","id":130734452}],"hashtags":[{"text":"Taurus","indices":[20,27]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"If a #Taurus becomes really mad at you, then you will become a complete stranger to them.","in_reply_to_user_id_str":null,"retweet_count":1188,"geo":null,"source":"\u003Ca href=\"http:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003ESocialOomph\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263279788767182848","entities":{"user_mentions":[],"hashtags":[{"text":"Taurus","indices":[5,12]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:02:47 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1436287439\/xstrology-cardositumorang_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Most followed Astrology on Twitter. Tweeting real shit since April 7, 2010 by a real astrologer. This is not sexstrology. Advertising: Xstrology@gmail.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/130734452\/1348192637","favourites_count":2658,"screen_name":"XSTROLOGY","profile_sidebar_border_color":"FFFFFF","id_str":"130734452","verified":true,"lang":"en","statuses_count":77139,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1436287439\/xstrology-cardositumorang_normal.png","listed_count":11890,"geo_enabled":false,"created_at":"Thu Apr 08 04:19:36 +0000 2010","profile_text_color":"333333","name":"Xstrology\u2122 Zodiac","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/287567550\/xstrology-cardositumorang.png","friends_count":8,"url":"http:\/\/XstrologyScopes.com","id":130734452,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/287567550\/xstrology-cardositumorang.png","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":2581981},"id":263279788767182848,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"FFFFFF","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2717851790\/f24063c5e33d33573f048e8239b26f62_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"","favourites_count":6,"screen_name":"brendameidyta","profile_sidebar_border_color":"030303","id_str":"44330028","verified":false,"lang":"en","statuses_count":12568,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2717851790\/f24063c5e33d33573f048e8239b26f62_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Wed Jun 03 09:55:23 +0000 2009","profile_text_color":"000000","name":"brenda meidyta","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/649468092\/fhy3r3q9ftf9f5d288o5.jpeg","friends_count":221,"url":null,"id":44330028,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/649468092\/fhy3r3q9ftf9f5d288o5.jpeg","utc_offset":25200,"profile_link_color":"000000","followers_count":483},"id":263290764665159681,"contributors":null,"favorited":false} -{"text":"RT @t0ribayb3e: my stomach hurts :-(","contributors":null,"favorited":false,"in_reply_to_status_id_str":null,"in_reply_to_user_id_str":null,"geo":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"t0ribayb3e","name":"TORI_not Victoria ","id_str":"237114515","id":237114515}],"hashtags":[],"urls":[]},"retweeted":false,"truncated":false,"id_str":"263290764656795648","place":null,"coordinates":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","retweeted_status":{"text":"my stomach hurts :-(","contributors":null,"favorited":false,"in_reply_to_status_id_str":null,"in_reply_to_user_id_str":null,"geo":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"retweeted":false,"truncated":false,"id_str":"263289362450636802","place":null,"coordinates":null,"created_at":"Tue Oct 30 14:40:50 +0000 2012","user":{"notifications":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":519,"is_translator":false,"default_profile":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","followers_count":545,"location":"at ur moma house ;-)","contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","description":"unsure about being #taken #teamLesbo (only if she bad doe) i keepa #badbitch and mosty importantly ION BULLSHIT ! 5'3 and as sweet as i can be ^_^ ","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2734395581\/a803084d380329ba6d6b851baba6b63c_normal.png","screen_name":"t0ribayb3e","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","favourites_count":28,"lang":"en","profile_sidebar_border_color":"C0DEED","protected":false,"id_str":"237114515","verified":false,"created_at":"Wed Jan 12 03:19:49 +0000 2011","name":"TORI_not Victoria ","statuses_count":9242,"profile_use_background_image":true,"url":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2734395581\/a803084d380329ba6d6b851baba6b63c_normal.png","id":237114515,"listed_count":1,"following":null,"geo_enabled":true,"utc_offset":null,"profile_text_color":"333333"},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"id":263289362450636802,"in_reply_to_screen_name":null},"user":{"notifications":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695491051\/a1577d7a1e95e8ecfb8108666ac3e6cd.jpeg","friends_count":536,"is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695491051\/a1577d7a1e95e8ecfb8108666ac3e6cd.jpeg","profile_link_color":"46A8CB","followers_count":479,"location":":) Loyalty City (:","contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"030B4A","description":"\u2665 College Girl \u2665 living for me & mine ; 6a6y 6oy 6y the name of KINGston have my heart in his hand ; est.05\/08\/12 \u2665 irrelevant shit idont do ; so follow me (:","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2772291616\/cf52c84b45d8994b14d6a25c82a2ad7c_normal.jpeg","screen_name":"WeFound_Lovee","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"2EB9D8","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/516376946\/1351385550","favourites_count":39,"lang":"en","profile_sidebar_border_color":"fff","protected":false,"id_str":"516376946","verified":false,"created_at":"Tue Mar 06 09:38:38 +0000 2012","name":"\u2665 Your 6add Ha6it \u2665","statuses_count":9045,"profile_use_background_image":true,"url":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2772291616\/cf52c84b45d8994b14d6a25c82a2ad7c_normal.jpeg","id":516376946,"listed_count":1,"following":null,"geo_enabled":true,"utc_offset":-18000,"profile_text_color":"86CEC2"},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"id":263290764656795648,"in_reply_to_screen_name":null} -{"in_reply_to_status_id_str":null,"text":"RT @TrillAssKing: @PoeticCheifa TrillAssKing","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764677758976","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"TrillAssKing","id_str":"317331185","name":"\u2020Makaveli","id":317331185},{"indices":[18,31],"screen_name":"PoeticCheifa","id_str":"157409499","name":"R.Castro","id":157409499}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":"263289475227078658","text":"@PoeticCheifa TrillAssKing","in_reply_to_user_id_str":"157409499","retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290432358858754","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"PoeticCheifa","id_str":"157409499","name":"R.Castro","id":157409499}],"hashtags":[],"urls":[]},"in_reply_to_user_id":157409499,"in_reply_to_status_id":263289475227078658,"place":null,"coordinates":null,"in_reply_to_screen_name":"PoeticCheifa","created_at":"Tue Oct 30 14:45:05 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2778713086\/6bb08d7415a929e59a0475dd0bfee7cb_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"Whats a king w\/o a crown ... #TeameATEnGOOD #KingTV | #Tupac #Aaliyah instagram:TrillAssKing","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/317331185\/1351355016","favourites_count":320,"screen_name":"TrillAssKing","profile_sidebar_border_color":"000000","id_str":"317331185","verified":false,"lang":"en","statuses_count":44689,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2778713086\/6bb08d7415a929e59a0475dd0bfee7cb_normal.jpeg","listed_count":1,"geo_enabled":true,"created_at":"Tue Jun 14 19:38:35 +0000 2011","profile_text_color":"A89C9C","name":"\u2020Makaveli","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/624965753\/aejknx8jcfadqiu8hwc9.jpeg","friends_count":1158,"url":null,"id":317331185,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/624965753\/aejknx8jcfadqiu8hwc9.jpeg","utc_offset":-28800,"profile_link_color":"FF0000","followers_count":1648},"id":263290432358858754,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mountain Time (US & Canada)","profile_background_color":"DB961F","location":"THE END.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779290863\/4315aa9cd46069a6c191ec1dccbe84e9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Roxe \u2661 Kevin Castro.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/157409499\/1351579452","favourites_count":2409,"screen_name":"PoeticCheifa","profile_sidebar_border_color":"000000","id_str":"157409499","verified":false,"lang":"en","statuses_count":90081,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779290863\/4315aa9cd46069a6c191ec1dccbe84e9_normal.jpeg","listed_count":24,"geo_enabled":true,"created_at":"Sat Jun 19 18:35:38 +0000 2010","profile_text_color":"050505","name":"R.Castro","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/280988600\/step4-lego-men-rolling-a-joint.jpg","friends_count":3855,"url":null,"id":157409499,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/280988600\/step4-lego-men-rolling-a-joint.jpg","utc_offset":-25200,"profile_link_color":"000000","followers_count":4700},"id":263290764677758976,"contributors":null,"favorited":false} -{"delete":{"status":{"user_id_str":"303390508","id_str":"168073571103547392","id":168073571103547392,"user_id":303390508}}} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"La he dado envidia y quiere tumbarse en el sof\u00e1 conmigo. \ud83d\udc36 http:\/\/t.co\/CkKduYKy","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764694523905","entities":{"user_mentions":[],"media":[{"type":"photo","expanded_url":"http:\/\/twitter.com\/isaChevisa\/status\/263290764694523905\/photo\/1","indices":[59,79],"media_url_https":"https:\/\/p.twimg.com\/A6dljjaCEAEbTcR.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":800,"w":600,"resize":"fit"},"large":{"h":1024,"w":768,"resize":"fit"},"small":{"h":453,"w":340,"resize":"fit"}},"id_str":"263290764698718209","media_url":"http:\/\/p.twimg.com\/A6dljjaCEAEbTcR.jpg","id":263290764698718209,"url":"http:\/\/t.co\/CkKduYKy","display_url":"pic.twitter.com\/CkKduYKy"}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Madrid","profile_background_color":"C0DEED","location":"Pedrajas.","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2733658634\/fe673037e01acfb9fec7dc674d6871f5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Quien mucho se ausenta, pronto deja de hacer falta.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/473429531\/1350578041","favourites_count":37,"screen_name":"isaChevisa","profile_sidebar_border_color":"C0DEED","id_str":"473429531","verified":false,"lang":"es","statuses_count":2515,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2733658634\/fe673037e01acfb9fec7dc674d6871f5_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Jan 24 23:48:52 +0000 2012","profile_text_color":"333333","name":"Chabeliiiis. ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":149,"url":null,"id":473429531,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":3600,"profile_link_color":"0084B4","followers_count":275},"id":263290764694523905,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @Jfred_21: Feels so good to sleep in","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290764681949184","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"Jfred_21","id_str":"520012252","name":"Jordan Frederick","id":520012252}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Feels so good to sleep in","in_reply_to_user_id_str":null,"retweet_count":1,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290094767718400","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:44 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2768203678\/5a25822b66f8b0bf2930efd6a30340e5_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/520012252\/1349646417","favourites_count":66,"screen_name":"Jfred_21","profile_sidebar_border_color":"C0DEED","id_str":"520012252","verified":false,"lang":"en","statuses_count":1464,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2768203678\/5a25822b66f8b0bf2930efd6a30340e5_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sat Mar 10 02:17:54 +0000 2012","profile_text_color":"333333","name":"Jordan Frederick","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":210,"url":null,"id":520012252,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":227},"id":263290094767718400,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Quito","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401636544\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"#DBempire\r\n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/248467481\/1348707571","favourites_count":58,"screen_name":"T_ryda5","profile_sidebar_border_color":"C0DEED","id_str":"248467481","verified":false,"lang":"en","statuses_count":2876,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401636544\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Mon Feb 07 02:06:16 +0000 2011","profile_text_color":"333333","name":"Tanner Houska","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/410026358\/KOBEEEE.jpg","friends_count":192,"url":null,"id":248467481,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/410026358\/KOBEEEE.jpg","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":316},"id":263290764681949184,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Mein Vater f\u00e4hrt Donnerstag in irgendeine Stadt wegen einer Messe und morgen fr\u00fch will er die Winterreifen ranmachen lassen.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855293953","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Berlin","profile_background_color":"C0DEED","location":"BERLIN","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2651787290\/bf8016f4a19c6eef4db64012429657b9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Alevi.| \u2764 Fenerbahce. \u2764| Cool.|Waldorfsch\u00fclerin.|halb T\u00fcrkin,halb Perserin.| Ahmet Kaya, @LanaDelRey , Baris Manco & Cem Karaca. \u2764| kik: CananS. | D.D.S.\u2764!!!","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/385929294\/1349356290","favourites_count":352,"screen_name":"EineCanan","profile_sidebar_border_color":"FFFFFF","id_str":"385929294","verified":false,"lang":"de","statuses_count":14815,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2651787290\/bf8016f4a19c6eef4db64012429657b9_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Thu Oct 06 11:35:13 +0000 2011","profile_text_color":"333333","name":" Canan ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/676398010\/9dec5cbcbf9792de5fb3851ad2c62a44.jpeg","friends_count":90,"url":null,"id":385929294,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/676398010\/9dec5cbcbf9792de5fb3851ad2c62a44.jpeg","utc_offset":3600,"profile_link_color":"0084B4","followers_count":169},"id":263290768855293953,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u305f\u3089\u3053\u30d1\u30b9\u30bf\u306b\u3059\u308b\u304b\u30ab\u30eb\u30dc\u30ca\u30fc\u30e9\u306b\u3059\u308b\u304b","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768859475968","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"\u516d\u5e74\u9577\u5c4b\u306e\u5929\u4e95","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2723299312\/0bf8adafab1d1c8ef7380bbd5dfb23e1_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u4e03\u677e\u5c0f\u5e73\u592a\u306f\u4ffa\u306e\u5ac1\uff3c(^p^)\uff0f\u5fcd\u8853\u5b66\u5712\u306b\u5165\u5b66\u5e0c\u671b\u3002CP\u5927\u597d\u7269\u306e\u96d1\u98df\u8150\u5973\u5b50\u3067\u3059!!\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u57fa\u672c\u8fd4\u3057\u307e\u305b\u3093\u3002\u4e00\u8a00\u9802\u3051\u308c\u3070\u8fd4\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002rkrn\/\u30dd\u30b1\u30e2\u30f3\/\u30dd\u30b1\u5fcd\/\u30b1\u30ed\u30ed\/BASARA\u3000\u4e00\u8aad\u9802\u3051\u308c\u3070\u5e78\u3044\u3067\u3059\u3002 ","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/463549012\/1348149994","favourites_count":182,"screen_name":"nyanta_bsr","profile_sidebar_border_color":"C0DEED","id_str":"463549012","verified":false,"lang":"ja","statuses_count":24713,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2723299312\/0bf8adafab1d1c8ef7380bbd5dfb23e1_normal.jpeg","listed_count":7,"geo_enabled":false,"created_at":"Sat Jan 14 06:39:38 +0000 2012","profile_text_color":"333333","name":"\u767a\u60c5\u671f\u3088\u3081\u307c","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":265,"url":"http:\/\/twpf.jp\/nyanta_bsr","id":463549012,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":256},"id":263290768859475968,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"ansarap tlga ng nachos ng Checkpoint!","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863686656","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Alaska","profile_background_color":"080708","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2679328001\/20d5dad6ae9aabf015ac6338989b6be4_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"0F1263","description":"I never used to finish anything but now I","favourites_count":4,"screen_name":"ZZZoeDramaQueen","profile_sidebar_border_color":"CC0E41","id_str":"18096473","verified":false,"lang":"en","statuses_count":16769,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2679328001\/20d5dad6ae9aabf015ac6338989b6be4_normal.jpeg","listed_count":1,"geo_enabled":true,"created_at":"Sat Dec 13 09:44:02 +0000 2008","profile_text_color":"D4E612","name":"Jamie G","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/217895093\/x19e558faecc104da20fe615f3634be6.jpg","friends_count":1040,"url":null,"id":18096473,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/217895093\/x19e558faecc104da20fe615f3634be6.jpg","utc_offset":-32400,"profile_link_color":"E8196C","followers_count":302},"id":263290768863686656,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Resting -__-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888844288","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"E8CC6F","location":"Marabahan, Indonesia","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2386822320\/profile_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C32B29","description":"Suka Puisi? Cek Favorite ane :D | Kaskuser RKS |User ID: 1895732 | fB : Hariskage Kaskus| PIN? DM ya ( \u2665\u0361\u25bd\u2665\u0361 ) ","favourites_count":17,"screen_name":"Hariskage","profile_sidebar_border_color":"572C2C","id_str":"166455293","verified":false,"lang":"en","statuses_count":8741,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2386822320\/profile_normal.jpg","listed_count":1,"geo_enabled":false,"created_at":"Wed Jul 14 05:27:18 +0000 2010","profile_text_color":"DEAB45","name":"Haris Fadillah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/278501191\/x06fb2174836e0b867af2b5b4628af97.jpg","friends_count":70,"url":"http:\/\/hariskage.blogspot.com","id":166455293,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/278501191\/x06fb2174836e0b867af2b5b4628af97.jpg","utc_offset":28800,"profile_link_color":"D97630","followers_count":251},"id":263290768888844288,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"iya mau nulis apa lagi vit lalalalla \u201c@alvitasapphira: Weh ni quality management bsok cuma tulis nama nim kelas tanggal??????\u201d","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884658176","entities":{"user_mentions":[{"indices":[38,53],"screen_name":"alvitasapphira","id_str":"55500841","name":"Alvita Sapphira","id":55500841}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"B1F2C7","location":"My Parents's arms","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2725350925\/bc834af5d76ba6ca34f649255e5878de_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"F5D2D0","description":"Jesus's - Dream Maker - Pastry Chef wanna be -\u2665ES","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/77733444\/1351528129","favourites_count":111,"screen_name":"codiclaudia","profile_sidebar_border_color":"C0DEED","id_str":"77733444","verified":false,"lang":"en","statuses_count":28831,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2725350925\/bc834af5d76ba6ca34f649255e5878de_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Sep 27 13:18:14 +0000 2009","profile_text_color":"EB4141","name":"Claudia Wong \u2665 ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/424874258\/IMG_0668.JPG","friends_count":290,"url":"http:\/\/claudiacodi.blogspot.com","id":77733444,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/424874258\/IMG_0668.JPG","utc_offset":-28800,"profile_link_color":"B04FBD","followers_count":430},"id":263290768884658176,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"kijk tv en eten","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768872046593","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Athens","profile_background_color":"C0DEED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2716232950\/30213c14ebaa0d06e1b84ecf9dd69aae_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Obc Elst MH1C\/ Hcm C6\/ Love mn schatjes Inge,Julie en @isa_donna I love AWKWARD\/ I am team Matty\/ I am Directioner","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/798838422\/1350138391","favourites_count":1,"screen_name":"crazyybrownhair","profile_sidebar_border_color":"FFFFFF","id_str":"798838422","verified":false,"lang":"nl","statuses_count":217,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2716232950\/30213c14ebaa0d06e1b84ecf9dd69aae_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Sun Sep 02 18:54:35 +0000 2012","profile_text_color":"333333","name":"Eliana","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/683686934\/b2375d4d3f3242dbd6ed95c5ffc09e24.jpeg","friends_count":315,"url":null,"id":798838422,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/683686934\/b2375d4d3f3242dbd6ed95c5ffc09e24.jpeg","utc_offset":7200,"profile_link_color":"0084B4","followers_count":52},"id":263290768872046593,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"I posted a new photo to Facebook http:\/\/t.co\/My492qlV","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823810","entities":{"user_mentions":[],"hashtags":[],"urls":[{"expanded_url":"http:\/\/fb.me\/1KWxtqDnT","indices":[33,53],"display_url":"fb.me\/1KWxtqDnT","url":"http:\/\/t.co\/My492qlV"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","location":"Selinsgrove, PA","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1551955490\/Y-Logo_normal_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Live. Local. & Lovin twitter! http:\/\/y106.fm","favourites_count":0,"screen_name":"Y1065fm","profile_sidebar_border_color":"C0DEED","id_str":"376818645","verified":false,"lang":"en","statuses_count":635,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1551955490\/Y-Logo_normal_normal.jpg","listed_count":1,"geo_enabled":true,"created_at":"Tue Sep 20 15:04:03 +0000 2011","profile_text_color":"520752","name":"Y106.5","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/333456384\/bg.jpg","friends_count":33,"url":"http:\/\/y106.fm","id":376818645,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/333456384\/bg.jpg","utc_offset":-18000,"profile_link_color":"4E00B3","followers_count":43},"id":263290768888823810,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"SAO\u3063\u30662010\u5e74\u304b\u3089\u6709\u540d\u3060\u3063\u305f\u306e\uff1f","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884645888","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"\u552f\u306e\u3068\u306a\u308a","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2644107598\/29f681233cda49b0b0e05ed567dab850_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u6771\u5317\u30671\u756a\u306e\uff71\uff97\uff72\uff8c\uff9e\u3001\uff7c\uff9e\uff6c\uff9d\uff84\uff9e\u4f7f\u3044\u3092\u76ee\u6307\u3057\u3066\u3044\u307e\u3059\u3002\u552f\u3068\u548c\u594f\u3092\u611b\u3057\u3066\u307e\u3059\u3002\uff71\uff97\uff72\uff8c\uff9e\u3001\uff7c\uff9e\uff6c\uff9d\uff84\uff9e\u30012\u6b21\u5143\u304c\u597d\u304d\u306a\u65b9\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u304f\u3060\u3055\u3044\uff01 \u5b9f\u7e3e \u7b2c1\u56de\u4ed9\u53f0CS4\u4f4d \u7b2c2\u56de\u4ed9\u53f0CS\uff8d\uff9e\uff7d\uff848 \u7b2c1\u56de\u77f3\u5dfbCS3\u4f4d","favourites_count":15,"screen_name":"RED1002019","profile_sidebar_border_color":"C0DEED","id_str":"527102035","verified":false,"lang":"ja","statuses_count":5703,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2644107598\/29f681233cda49b0b0e05ed567dab850_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Sat Mar 17 04:49:24 +0000 2012","profile_text_color":"333333","name":"\uff32\uff25\uff24\uff20TARITARI\u53a8\u3067\u3082\u604b\u304c\u3057\u305f\u3044","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":37,"url":"http:\/\/freedomnared.blog.fc2.com\/","id":527102035,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":99},"id":263290768884645888,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Had to run to apex today. \n\n& drive like a maniac in this fog \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863686657","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"01080A","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773983343\/1d378a20bd4a2d67fda35fed02ccb9b0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"These hoes want attention. I want respect.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/95122679\/1350454788","favourites_count":149,"screen_name":"thelilmirmaid","profile_sidebar_border_color":"D6274A","id_str":"95122679","verified":false,"lang":"en","statuses_count":14803,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773983343\/1d378a20bd4a2d67fda35fed02ccb9b0_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Mon Dec 07 02:56:53 +0000 2009","profile_text_color":"FFA83D","name":"Miranda Truj\u00edllo","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/130789654\/zzzz.gif","friends_count":348,"url":null,"id":95122679,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/130789654\/zzzz.gif","utc_offset":-28800,"profile_link_color":"FF00F7","followers_count":565},"id":263290768863686657,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\ud2b8\uce5c\uc18c\ud574\uc918\u3160\u3160","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880435201","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hawaii","profile_background_color":"C0DEED","location":"@ZICO\ub2d8\uc774 \ub098\ub97c \ud314\ub85c\uc6b0\ud569\ub2c8\ub2e4","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779845226\/e1b90f375e929e23fb7d59012d98f2e9_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"YO DO YOU WANNA B BLOCK B","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/497643441\/1350187597","favourites_count":28,"screen_name":"l3lock_l3_BBC","profile_sidebar_border_color":"C0DEED","id_str":"497643441","verified":false,"lang":"ko","statuses_count":7841,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779845226\/e1b90f375e929e23fb7d59012d98f2e9_normal.png","listed_count":0,"geo_enabled":true,"created_at":"Mon Feb 20 06:29:28 +0000 2012","profile_text_color":"333333","name":"\uc560\ub514@'-'@","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":209,"url":null,"id":497643441,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-36000,"profile_link_color":"0084B4","followers_count":113},"id":263290768880435201,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"changing my twitter name . tired of this one.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768859463682","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"34DBBF","location":"ohio bound thrown into ks !","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2660149786\/d9336390bfeae0c9c471fd1434677c16_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"A8F0DE","description":"thaa R E A L E S T person you could ever follow&&kno(: yes, i admit that shiit, im a Herbist d-_-b !!! i dont f.ck around with thaa f.ck arounds;)","favourites_count":48,"screen_name":"_DiamondKinggg","profile_sidebar_border_color":"F0A6EE","id_str":"376898608","verified":false,"lang":"en","statuses_count":4746,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2660149786\/d9336390bfeae0c9c471fd1434677c16_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Tue Sep 20 17:44:04 +0000 2011","profile_text_color":"83EB61","name":"ReputationForTrillin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/598330081\/7ipotj77mon0yfqri7r1.jpeg","friends_count":306,"url":null,"id":376898608,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/598330081\/7ipotj77mon0yfqri7r1.jpeg","utc_offset":-21600,"profile_link_color":"F098CA","followers_count":313},"id":263290768859463682,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"He doing what he can..#TeamObama","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629506","entities":{"user_mentions":[],"hashtags":[{"text":"TeamObama","indices":[22,32]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"BADFCD","location":"**Yellow Brick Rd**","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2782165858\/8021b5b53cea2202dc1553f816fd09ad_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"**Head held high..Even in defeat** #TeamMommy #TeamSelfMade #TeamIndependent #TeamCollege #TeamMe )","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/313688117\/1350474587","favourites_count":8,"screen_name":"AlmondySkin","profile_sidebar_border_color":"F2E195","id_str":"313688117","verified":false,"lang":"en","statuses_count":10986,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2782165858\/8021b5b53cea2202dc1553f816fd09ad_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jun 09 02:00:15 +0000 2011","profile_text_color":"0C3E53","name":"Almondy Skin ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme12\/bg.gif","friends_count":204,"url":null,"id":313688117,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","utc_offset":-21600,"profile_link_color":"FF0000","followers_count":187},"id":263290768884629506,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"ikut falah,lu ? RT @alabrori: ikut gathering ngak lu? RT @faherzananda: oke,bakso jabrig lagi \\(\u00b4\u25bd`)\/","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/fluppy.me\" rel=\"nofollow\"\u003Efluppyme@\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768867864576","entities":{"user_mentions":[{"indices":[19,28],"screen_name":"alabrori","id_str":"46351871","name":"falah al abrori","id":46351871},{"indices":[57,70],"screen_name":"faherzananda","id_str":"71985468","name":"faherzananda","id":71985468}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","location":"padang-dayeuh kolot,bandung","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2725319274\/713fc2e237c95f72d51c9082027588ff_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"(\u25cf\u2267\u25bd\u2266)\u266a IT Telkom~Telecommunication Engineering\\\\\\'12\r\n","favourites_count":293,"screen_name":"faherzananda","profile_sidebar_border_color":"65B0DA","id_str":"71985468","verified":false,"lang":"en","statuses_count":10832,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2725319274\/713fc2e237c95f72d51c9082027588ff_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Sun Sep 06 06:54:49 +0000 2009","profile_text_color":"3D1957","name":"faherzananda","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/637676287\/5pucrk1cp3xl4pgjv09m.jpeg","friends_count":177,"url":null,"id":71985468,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/637676287\/5pucrk1cp3xl4pgjv09m.jpeg","utc_offset":-28800,"profile_link_color":"FF0000","followers_count":237},"id":263290768867864576,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"tidur ga ya .. -_-","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003ETweetCaster for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629504","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"In your mind :D","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2749873517\/2a24b6b066bade8858f1872dbee29983_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Simple boy | BARCELONITAS | just mention for follback","favourites_count":21,"screen_name":"KataYudhaa","profile_sidebar_border_color":"C0DEED","id_str":"856525016","verified":false,"lang":"id","statuses_count":814,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2749873517\/2a24b6b066bade8858f1872dbee29983_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Oct 01 15:10:39 +0000 2012","profile_text_color":"333333","name":"AdenYudhaPratama","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":42,"url":null,"id":856525016,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":109},"id":263290768884629504,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Eh si radit RT @aciLciLoo Makasih iih km meni segituny (\u01a0\u0361\u0334\u0334\u0334\u0334\u0334\u0334.\u032e\u01a0\u0361\u0334\u0334) RT @rhie_qiun: Ya ALLOH ,baim wong teh mini kasep. http:\/\/t.","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twidroyd.com\" rel=\"nofollow\"\u003ETwidroyd for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863657984","entities":{"user_mentions":[{"indices":[15,25],"screen_name":"aciLciLoo","id_str":"85090437","name":"indra wahyudi","id":85090437},{"indices":[75,85],"screen_name":"rhie_qiun","id_str":"161525122","name":"\u0633\u0631\u064a \u0648\u0647\u064a\u0648\u0646\u064a","id":161525122}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","location":"www.harrishotels.com","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2776148064\/c9e86de5ec6c782a113c038bbbaa2cd7_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Instagram: Rhieqiun| Law Faculty of UNPAR| hotelier @HarrisCTlinkBdg| make-up artist freelancer|\u2661dance| follow @IslamDiaries ,it has a good influence .","favourites_count":29,"screen_name":"rhie_qiun","profile_sidebar_border_color":"C0DEED","id_str":"161525122","verified":false,"lang":"en","statuses_count":22101,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2776148064\/c9e86de5ec6c782a113c038bbbaa2cd7_normal.jpeg","listed_count":3,"geo_enabled":false,"created_at":"Thu Jul 01 02:28:54 +0000 2010","profile_text_color":"333333","name":"\u0633\u0631\u064a \u0648\u0647\u064a\u0648\u0646\u064a","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/607220794\/u9vkz4nu9s6atknnsjpc.jpeg","friends_count":362,"url":null,"id":161525122,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/607220794\/u9vkz4nu9s6atknnsjpc.jpeg","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":538},"id":263290768863657984,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"Udh sampek mblo emg knpa nek ga d slametin mbloo :p RT \"@olimesayu: Klo yg depan ga nyelametin yg dibelakang awas aja, iya to mblo","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823809","entities":{"user_mentions":[{"indices":[56,66],"screen_name":"olimesayu","id_str":"193741814","name":"Wenitya R Mesayu N","id":193741814}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Jakarta","profile_background_color":"FFFFFF","location":"Magelang","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2783508289\/b670e33f1e3133c0978fa3b8b0737494_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"B8B8BA","description":"a toast to all of us here,\r\nwith these glasses we understand each other,","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/243517483\/1351583904","favourites_count":0,"screen_name":"DhenPutraa","profile_sidebar_border_color":"fff","id_str":"243517483","verified":false,"lang":"en","statuses_count":464,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2783508289\/b670e33f1e3133c0978fa3b8b0737494_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jan 27 06:27:30 +0000 2011","profile_text_color":"666666","name":"D H E N","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697614672\/5e897f6c4a6cdef3b27d73e356ca3ea0.jpeg","friends_count":46,"url":null,"id":243517483,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697614672\/5e897f6c4a6cdef3b27d73e356ca3ea0.jpeg","utc_offset":25200,"profile_link_color":"FF0000","followers_count":41},"id":263290768888823809,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"me voy a hechar un ratito para estar a tope en el entrenooo","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768880435200","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"sevilla","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2514186443\/yp827q1dcsst0xc8rb59_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"sonreir y no estar nunca triste :)) Me encanta estar con mis amigos hechando risas y tambien me encanta sobre todo jugar al futbol","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/528450655\/1350394696","favourites_count":1,"screen_name":"campos_4","profile_sidebar_border_color":"fff","id_str":"528450655","verified":false,"lang":"es","statuses_count":3478,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2514186443\/yp827q1dcsst0xc8rb59_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Mar 18 12:03:04 +0000 2012","profile_text_color":"333333","name":"Campos","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/635601878\/bx2ba3h5j3wta4rcc8ww.jpeg","friends_count":217,"url":null,"id":528450655,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/635601878\/bx2ba3h5j3wta4rcc8ww.jpeg","utc_offset":null,"profile_link_color":"0084B4","followers_count":249},"id":263290768880435200,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263287145152802817","text":"@desantagputra maklum lah mas udh jrng nntn tv. haha","in_reply_to_user_id_str":"365973785","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863670273","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"desantagputra","id_str":"365973785","name":"Desanta G Putra","id":365973785}],"hashtags":[],"urls":[]},"in_reply_to_user_id":365973785,"in_reply_to_status_id":263287145152802817,"place":null,"coordinates":null,"in_reply_to_screen_name":"desantagputra","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"8B542B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"EADEAA","description":"","favourites_count":1,"screen_name":"luluunaziah","profile_sidebar_border_color":"FFFFFF","id_str":"277922664","verified":false,"lang":"en","statuses_count":301,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Wed Apr 06 07:43:59 +0000 2011","profile_text_color":"333333","name":"luluunaziah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/696642357\/284f3ddb42248466a8a64302be1ea915.jpeg","friends_count":53,"url":null,"id":277922664,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/696642357\/284f3ddb42248466a8a64302be1ea915.jpeg","utc_offset":-28800,"profile_link_color":"9D582E","followers_count":58},"id":263290768863670273,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290628480311297","text":"@rosaa_bee79 @xo_nessaa yay \u263a","in_reply_to_user_id_str":"871531068","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855277568","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"rosaa_bee79","id_str":"871531068","name":"rosabonilla","id":871531068},{"indices":[13,23],"screen_name":"xo_nessaa","id_str":"494544884","name":"Nessaaaa . ","id":494544884}],"hashtags":[],"urls":[]},"in_reply_to_user_id":871531068,"in_reply_to_status_id":263290628480311297,"place":null,"coordinates":null,"in_reply_to_screen_name":"rosaa_bee79","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"ACDED6","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2503268791\/IMG954574_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFF7CC","description":"","favourites_count":706,"screen_name":"McGovernx3","profile_sidebar_border_color":"F2E195","id_str":"349749107","verified":false,"lang":"en","statuses_count":13065,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2503268791\/IMG954574_normal.jpg","listed_count":0,"geo_enabled":true,"created_at":"Sat Aug 06 16:41:03 +0000 2011","profile_text_color":"0C3E53","name":"Jess McGovern","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme12\/bg.gif","friends_count":214,"url":null,"id":349749107,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","utc_offset":null,"profile_link_color":"FF0000","followers_count":289},"id":263290768855277568,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290259025063936","text":"okesiaaaap jangan lupa yaa;;)RT @Gagaaannnn Engke enya di bawa klo udh engga di pake sama bayi yah wkwkw RT\"@vitriaspianti: aslinya","in_reply_to_user_id_str":"298319509","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872062976","entities":{"user_mentions":[{"indices":[32,43],"screen_name":"Gagaaannnn","id_str":"298319509","name":"Agan Renaldy ","id":298319509},{"indices":[108,122],"screen_name":"vitriaspianti","id_str":"192088903","name":"vitri ","id":192088903}],"hashtags":[],"urls":[]},"in_reply_to_user_id":298319509,"in_reply_to_status_id":263290259025063936,"place":null,"coordinates":null,"in_reply_to_screen_name":"Gagaaannnn","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2773462164\/c3a24d08ef932e681525231c89842d90_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"8B2DE3","description":"@tinker_bell\u2665\u265b","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/192088903\/1351001488","favourites_count":61,"screen_name":"vitriaspianti","profile_sidebar_border_color":"FFFFFF","id_str":"192088903","verified":false,"lang":"en","statuses_count":24427,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2773462164\/c3a24d08ef932e681525231c89842d90_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Sep 18 04:20:35 +0000 2010","profile_text_color":"E61070","name":"vitri ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/695605068\/921c45771ee81012d84a6c6a5c1071af.jpeg","friends_count":943,"url":null,"id":192088903,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/695605068\/921c45771ee81012d84a6c6a5c1071af.jpeg","utc_offset":-28800,"profile_link_color":"6BE2F7","followers_count":1070},"id":263290768872062976,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290514252632064","text":"@ChrissieHayman get me a needle and thread I just split my sides","in_reply_to_user_id_str":"380429906","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768872046592","entities":{"user_mentions":[{"indices":[0,15],"screen_name":"ChrissieHayman","id_str":"380429906","name":"Christabel Hayman ","id":380429906}],"hashtags":[],"urls":[]},"in_reply_to_user_id":380429906,"in_reply_to_status_id":263290514252632064,"place":null,"coordinates":null,"in_reply_to_screen_name":"ChrissieHayman","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Harpenden","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2767384769\/e9f0f60b012b3da63fa8df0055998691_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"16 year old Sgt Panda","favourites_count":3,"screen_name":"adambirch123","profile_sidebar_border_color":"C0DEED","id_str":"110485633","verified":false,"lang":"en","statuses_count":229,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2767384769\/e9f0f60b012b3da63fa8df0055998691_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Mon Feb 01 18:28:25 +0000 2010","profile_text_color":"333333","name":"Adam Birch","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":103,"url":null,"id":110485633,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":16},"id":263290768872046592,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290193862328321","text":"@BaisdenLive #virginislandwives they are users and has no respect for no one but themselves.","in_reply_to_user_id_str":"73458781","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768867880960","entities":{"user_mentions":[{"indices":[0,12],"screen_name":"BaisdenLive","id_str":"73458781","name":"Michael Baisden","id":73458781}],"hashtags":[{"text":"virginislandwives","indices":[13,31]}],"urls":[]},"in_reply_to_user_id":73458781,"in_reply_to_status_id":263290193862328321,"place":null,"coordinates":null,"in_reply_to_screen_name":"BaisdenLive","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"82D5D9","location":"Atlanta","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1535964481\/Rhea_second_copy_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDFFCC","description":"CEO\/ Founder of the upcoming Reality show Virgin Island Wives.Virgin Islands Wives is about beauty to the utmost pleasure of the viewers.","favourites_count":3,"screen_name":"VirginIslandWiv","profile_sidebar_border_color":"BDDCAD","id_str":"370575170","verified":false,"lang":"en","statuses_count":223,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1535964481\/Rhea_second_copy_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Fri Sep 09 08:02:57 +0000 2011","profile_text_color":"333333","name":"Virgin Island Wives","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/404366482\/VIWIVESlogo_redone.jpg","friends_count":1264,"url":"http:\/\/www.virginislandwives.com\/","id":370575170,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/404366482\/VIWIVESlogo_redone.jpg","utc_offset":-21600,"profile_link_color":"0065B3","followers_count":417},"id":263290768867880960,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263286048874967041","text":"@HanneMesselink gefeliciteerd! :D","in_reply_to_user_id_str":"368880803","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884629507","entities":{"user_mentions":[{"indices":[0,15],"screen_name":"HanneMesselink","id_str":"368880803","name":"Hanneke ","id":368880803}],"hashtags":[],"urls":[]},"in_reply_to_user_id":368880803,"in_reply_to_status_id":263286048874967041,"place":null,"coordinates":null,"in_reply_to_screen_name":"HanneMesselink","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Amsterdam","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2763923186\/aec8a9b5b84099dd2250cbfed332c840_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"R.i.p @rolstoelertonko || Crazy, but not boring, || Employee of Rolls Royce & Bentley || Cars are my life.|| \u2665\u2665 iloveyou swaggerboy xxx gr van je verloofde","favourites_count":20,"screen_name":"woutervdp","profile_sidebar_border_color":"C0DEED","id_str":"84675476","verified":false,"lang":"nl","statuses_count":17384,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2763923186\/aec8a9b5b84099dd2250cbfed332c840_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Fri Oct 23 20:04:34 +0000 2009","profile_text_color":"333333","name":"Wouter ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":92,"url":"http:\/\/www.pipashop.nl","id":84675476,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":3600,"profile_link_color":"0084B4","followers_count":124},"id":263290768884629507,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290404189908992","text":"@asdfghjklchelle @krxyrmlk HAHAHA. I hope sooooo. :( :))))","in_reply_to_user_id_str":"284958013","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884637696","entities":{"user_mentions":[{"indices":[0,16],"screen_name":"asdfghjklchelle","id_str":"284958013","name":"rachellethepro","id":284958013},{"indices":[17,26],"screen_name":"krxyrmlk","id_str":"155108313","name":"tayswift1Dzayner\u2654","id":155108313}],"hashtags":[],"urls":[]},"in_reply_to_user_id":284958013,"in_reply_to_status_id":263290404189908992,"place":null,"coordinates":null,"in_reply_to_screen_name":"asdfghjklchelle","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Arizona","profile_background_color":"131516","location":"Hermosa Bataan Philippines.","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2769768866\/237be68bd8041cdcd951d3f3a18f4162_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"efefef","description":"Sophomore \/ Zayn Malik \u2665 \/ Baliw \/ Yeye Bonel! \/AYAYAY! Baho baho BUMBAY! XD\r\nFollow me and i'll follow you back =))))))))\r\n","favourites_count":115,"screen_name":"iamairaraymundo","profile_sidebar_border_color":"eeeeee","id_str":"826662690","verified":false,"lang":"en","statuses_count":808,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2769768866\/237be68bd8041cdcd951d3f3a18f4162_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Sun Sep 16 07:13:10 +0000 2012","profile_text_color":"333333","name":"@MAVRaymundo","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":244,"url":"http:\/\/twitter.com\/justbesimple","id":826662690,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":-25200,"profile_link_color":"009999","followers_count":79},"id":263290768884637696,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263287914920812545","text":"@raihansalaska hahahahahahaha *ngakak","in_reply_to_user_id_str":"387491267","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888823808","entities":{"user_mentions":[{"indices":[0,14],"screen_name":"raihansalaska","id_str":"387491267","name":"raihan salaska","id":387491267}],"hashtags":[],"urls":[]},"in_reply_to_user_id":387491267,"in_reply_to_status_id":263287914920812545,"place":null,"coordinates":null,"in_reply_to_screen_name":"raihansalaska","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Bangkok","profile_background_color":"DBE9ED","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2754408540\/cb48d2da9ce873c7ca0a72d2b7743202_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E5507E","description":"Yang unfoll gue gak papa , tapi dosa nya tanggu sendiri ye \u2603","favourites_count":17,"screen_name":"adifamadjid","profile_sidebar_border_color":"CC3366","id_str":"624305689","verified":false,"lang":"id","statuses_count":219,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2754408540\/cb48d2da9ce873c7ca0a72d2b7743202_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Mon Jul 02 02:56:29 +0000 2012","profile_text_color":"362720","name":"Adifa R ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/608931244\/8h1s8kozb31dhhnse9ll.jpeg","friends_count":99,"url":null,"id":624305689,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/608931244\/8h1s8kozb31dhhnse9ll.jpeg","utc_offset":25200,"profile_link_color":"CC3366","followers_count":108},"id":263290768888823808,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @LoversAliceW: Odeio ter que explicar o que significa \"coisar\"","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768855289856","entities":{"user_mentions":[{"indices":[3,16],"screen_name":"LoversAliceW","id_str":"608452458","name":"carolegal l FAD ","id":608452458}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Odeio ter que explicar o que significa \"coisar\"","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290472208945152","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:14 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"FFFFFF","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2756620608\/223a4625af21a1e18d6c069d2929af55_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"ei, alice teu nome \u00e9 mentira??? pq vc \u00e9 mto linda pra ser verdade","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/608452458\/1351088605","favourites_count":658,"screen_name":"LoversAliceW","profile_sidebar_border_color":"FFFFFF","id_str":"608452458","verified":false,"lang":"pt","statuses_count":29287,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2756620608\/223a4625af21a1e18d6c069d2929af55_normal.png","listed_count":2,"geo_enabled":true,"created_at":"Thu Jun 14 18:29:11 +0000 2012","profile_text_color":"333333","name":"carolegal l FAD ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/680924015\/e15c6e21f22f17dc7fe16a85aba2331d.jpeg","friends_count":437,"url":"http:\/\/loversalicew.tumblr.com\/","id":608452458,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/680924015\/e15c6e21f22f17dc7fe16a85aba2331d.jpeg","utc_offset":-10800,"profile_link_color":"E3529F","followers_count":1814},"id":263290472208945152,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mid-Atlantic","profile_background_color":"f0f3f5","location":" pqpanda HAHA *","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781754584\/d73a28c9a680b1b21b9a881af3124c42_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Mesmo depois de conhecer v\u00e1rios sorrisos o seu foi, \u00e9 e sempre ser\u00e1 meu favorito @alice_correa, E bem mais do que amor *----* since 29\/10\/12","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/913195794\/1351544388","favourites_count":7,"screen_name":"AliceCWMyLove","profile_sidebar_border_color":"fff","id_str":"913195794","verified":false,"lang":"pt","statuses_count":168,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781754584\/d73a28c9a680b1b21b9a881af3124c42_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Mon Oct 29 20:42:31 +0000 2012","profile_text_color":"333333","name":"Lice *-----* ","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697764279\/273b9f2043acea43bebde71f693556ce.jpeg","friends_count":44,"url":"http:\/\/umapoetamorta.tumblr.com\/","id":913195794,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697764279\/273b9f2043acea43bebde71f693556ce.jpeg","utc_offset":-7200,"profile_link_color":"0084B4","followers_count":55},"id":263290768855289856,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290499371249665","text":"@HanyaJawab pernah hehehe #HJ","in_reply_to_user_id_str":"385402204","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768876244993","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"HanyaJawab","id_str":"385402204","name":"BEBEK KEPO\u2122","id":385402204}],"hashtags":[{"text":"HJ","indices":[26,29]}],"urls":[]},"in_reply_to_user_id":385402204,"in_reply_to_status_id":263290499371249665,"place":null,"coordinates":null,"in_reply_to_screen_name":"HanyaJawab","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"Banjarmasin \/ indonesia","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2779101641\/abcb21ca737aceec9ab3b0af89a4a967_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Salma nanda alumni Sdn Sn kuripan 2 \/ nak smp 7 Bjm klas 7b \/ basket putri spensev Bjm ","favourites_count":42,"screen_name":"NandaAdik","profile_sidebar_border_color":"C0DEED","id_str":"357479598","verified":false,"lang":"en","statuses_count":596,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2779101641\/abcb21ca737aceec9ab3b0af89a4a967_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Aug 18 12:41:43 +0000 2011","profile_text_color":"333333","name":"\u2122salma nanda .kh.p \u2122","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":282,"url":null,"id":357479598,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":48},"id":263290768876244993,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290135129497600","text":"@melvinapo @jralmadin at malapit lang sa camp! :D","in_reply_to_user_id_str":"48340489","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768859463680","entities":{"user_mentions":[{"indices":[0,10],"screen_name":"melvinapo","id_str":"48340489","name":"Melvin Alonzo Apo","id":48340489},{"indices":[11,21],"screen_name":"jralmadin","id_str":"347063233","name":"JR Almadin","id":347063233}],"hashtags":[],"urls":[]},"in_reply_to_user_id":48340489,"in_reply_to_status_id":263290135129497600,"place":null,"coordinates":null,"in_reply_to_screen_name":"melvinapo","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Hong Kong","profile_background_color":"A1957E","location":"Manila, Philippines","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1913633958\/259878_10150233070160474_677860473_7791077_5732764_n2_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"000000","description":"AHS B2014 | 28578F05 | Prepare to fall, but keep dreaming big","favourites_count":151,"screen_name":"ciscosuplico","profile_sidebar_border_color":"9E6400","id_str":"112982661","verified":false,"lang":"en","statuses_count":4558,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1913633958\/259878_10150233070160474_677860473_7791077_5732764_n2_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Wed Feb 10 09:36:36 +0000 2010","profile_text_color":"5C5C5C","name":"Tom Suplico","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/454181400\/tumblr_lwwoqvSOYU1qzleu4o1_500.jpg","friends_count":554,"url":null,"id":112982661,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/454181400\/tumblr_lwwoqvSOYU1qzleu4o1_500.jpg","utc_offset":28800,"profile_link_color":"404040","followers_count":372},"id":263290768859463680,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":"263290473484001280","text":"@gabrrieldias desse tipo..","in_reply_to_user_id_str":"283756595","retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872058880","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"gabrrieldias","id_str":"283756595","name":"gabriel dias","id":283756595}],"hashtags":[],"urls":[]},"in_reply_to_user_id":283756595,"in_reply_to_status_id":263290473484001280,"place":null,"coordinates":null,"in_reply_to_screen_name":"gabrrieldias","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"929CA1","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2778201451\/d52507a4b45dd7357bac1168122eb632_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":10,"screen_name":"hrmln","profile_sidebar_border_color":"FFFFFF","id_str":"627804339","verified":false,"lang":"en","statuses_count":1717,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2778201451\/d52507a4b45dd7357bac1168122eb632_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Thu Jul 05 20:49:52 +0000 2012","profile_text_color":"333333","name":"Mila","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/674622824\/3dcbe74154bd070680b40531cf9acf7e.jpeg","friends_count":20,"url":"http:\/\/brokenpromisses.tumblr.com\/","id":627804339,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/674622824\/3dcbe74154bd070680b40531cf9acf7e.jpeg","utc_offset":-10800,"profile_link_color":"9B76F7","followers_count":33},"id":263290768872058880,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @ysor29: Yo a ti no te odio, por que el odio es sentimiento y yo por ti no siento nada.","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768867876864","entities":{"user_mentions":[{"indices":[3,10],"screen_name":"ysor29","id_str":"157440346","name":"Lynda","id":157440346}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Yo a ti no te odio, por que el odio es sentimiento y yo por ti no siento nada.","in_reply_to_user_id_str":null,"retweet_count":2,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290576974266369","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:39 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mexico City","profile_background_color":"262916","location":"M\u00e9xico","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2722841066\/316b7cf830300218a7de532d0f666b82_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"E3E9A3","description":"Mujer,mexicana, Un verdadero amigo es aquel que entra cuando todos los dem\u00e1s se van. ...SI ME SIGUES... TE SIGO,","favourites_count":205,"screen_name":"ysor29","profile_sidebar_border_color":"000000","id_str":"157440346","verified":false,"lang":"es","statuses_count":1169,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2722841066\/316b7cf830300218a7de532d0f666b82_normal.jpeg","listed_count":1,"geo_enabled":false,"created_at":"Sat Jun 19 20:42:36 +0000 2010","profile_text_color":"C8D353","name":"Lynda","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/680439848\/eb559109bbd8e73e5645f489a35e8d81.jpeg","friends_count":2762,"url":null,"id":157440346,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/680439848\/eb559109bbd8e73e5645f489a35e8d81.jpeg","utc_offset":-21600,"profile_link_color":"9EA927","followers_count":2607},"id":263290576974266369,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784710041\/31ccca949324329b8b6214479407990c_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/913527668\/1351556331","favourites_count":1,"screen_name":"y0nitow","profile_sidebar_border_color":"FFFFFF","id_str":"913527668","verified":false,"lang":"es","statuses_count":25,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784710041\/31ccca949324329b8b6214479407990c_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Oct 30 00:12:34 +0000 2012","profile_text_color":"333333","name":"y0nitow\u263bM\u20acdrano","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697379124\/00a0fba41ead403ef76534c6a690d26e.jpeg","friends_count":505,"url":null,"id":913527668,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697379124\/00a0fba41ead403ef76534c6a690d26e.jpeg","utc_offset":null,"profile_link_color":"0084B4","followers_count":104},"id":263290768867876864,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @WeSagittarius: #Sagittarius smile more than they cry, give more than they take, and love more than they hate.","in_reply_to_user_id_str":null,"retweet_count":139,"geo":null,"source":"\u003Ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003ETweetCaster for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768888840192","entities":{"user_mentions":[{"indices":[3,17],"screen_name":"WeSagittarius","id_str":"750840786","name":"We Sagittarius","id":750840786}],"hashtags":[{"text":"Sagittarius","indices":[19,31]}],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"#Sagittarius smile more than they cry, give more than they take, and love more than they hate.","in_reply_to_user_id_str":null,"retweet_count":139,"geo":null,"source":"\u003Ca href=\"https:\/\/www.twitter.com\" rel=\"nofollow\"\u003EZodiac Facts\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290479297310720","entities":{"user_mentions":[],"hashtags":[{"text":"Sagittarius","indices":[0,12]}],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:45:16 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Chennai","profile_background_color":"131516","location":"","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2630662706\/1e97dd83510b24be53cf31316d9cf1cd_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":"Zodiac Sign Sagittarius : November 22 - December 21. Sagittarius know the truth and they know where they are going.Daily #Sagittarius astrology facts.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/750840786\/1348166272","favourites_count":0,"screen_name":"WeSagittarius","profile_sidebar_border_color":"FFFFFF","id_str":"750840786","verified":false,"lang":"en","statuses_count":2560,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2630662706\/1e97dd83510b24be53cf31316d9cf1cd_normal.jpeg","listed_count":101,"geo_enabled":false,"created_at":"Sat Aug 11 07:19:16 +0000 2012","profile_text_color":"333333","name":"We Sagittarius","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":4812,"url":"http:\/\/www.picksor.com","id":750840786,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":19800,"profile_link_color":"000000","followers_count":59739},"id":263290479297310720,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Kuala Lumpur","profile_background_color":"131516","location":"\u2605Bumi Kenyalang,Malaysia :)\u2605","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2643610824\/40e94f5319d2ba3279ed85dced6bbbd0_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"EFEFEF","description":" \ub09c \ub110 \uc6d0\ud574...\uac15\uac1c\ub9ac!! \n","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/56614623\/1348651272","favourites_count":25,"screen_name":"AgentGally89","profile_sidebar_border_color":"000000","id_str":"56614623","verified":false,"lang":"en","statuses_count":30370,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2643610824\/40e94f5319d2ba3279ed85dced6bbbd0_normal.jpeg","listed_count":11,"geo_enabled":false,"created_at":"Tue Jul 14 05:14:59 +0000 2009","profile_text_color":"333333","name":"\u2605~Hafiza Yaman ~\u2605","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":126,"url":"http:\/\/mybrainsaid.blogspot.com\/","id":56614623,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":28800,"profile_link_color":"0A0AFC","followers_count":146},"id":263290768888840192,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @stouonline: furac\u00e3o sandy derruba tudo at\u00e9 as folhas no quintal s\u00f3 n\u00e3o cai o meu amor pois n\u00e3o tem jeito n\u00e3o, \u00e9 imortal","in_reply_to_user_id_str":null,"retweet_count":127,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768872071168","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"stouonline","id_str":"524890522","name":"acabei de entrar","id":524890522}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"furac\u00e3o sandy derruba tudo at\u00e9 as folhas no quintal s\u00f3 n\u00e3o cai o meu amor pois n\u00e3o tem jeito n\u00e3o, \u00e9 imortal","in_reply_to_user_id_str":null,"retweet_count":127,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263289622656872449","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:41:52 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Buenos Aires","profile_background_color":"F0F0F0","location":"sc - sp ","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2429715356\/qkq6h4py9is49z0qbu6p_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"perfil lotado add no 2","favourites_count":2343,"screen_name":"stouonline","profile_sidebar_border_color":"FFFFFF","id_str":"524890522","verified":false,"lang":"en","statuses_count":11561,"profile_use_background_image":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2429715356\/qkq6h4py9is49z0qbu6p_normal.jpeg","listed_count":232,"geo_enabled":true,"created_at":"Thu Mar 15 00:56:05 +0000 2012","profile_text_color":"333333","name":"acabei de entrar","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/677211961\/f8af8be0c170fcc3411f1a81d3d9fb48.jpeg","friends_count":218,"url":null,"id":524890522,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/677211961\/f8af8be0c170fcc3411f1a81d3d9fb48.jpeg","utc_offset":-10800,"profile_link_color":"0F1A85","followers_count":112965},"id":263289622656872449,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Santiago","profile_background_color":"642D8B","location":"cwbeleza!","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2707395136\/b35e7abb6efd8f75418d7ef90ba2cae8_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"7AC3EE","description":"Que nossa amizade nunca acabe, que voce esteja sempre comigo, que voce nao chore, mas se precisar que eu esteja junto pra ter dar apoio. s2 Minha Perfeita s2.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/174470598\/1351000279","favourites_count":17,"screen_name":"nooovinha_","profile_sidebar_border_color":"000000","id_str":"174470598","verified":false,"lang":"pt","statuses_count":20107,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2707395136\/b35e7abb6efd8f75418d7ef90ba2cae8_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Aug 04 00:42:17 +0000 2010","profile_text_color":"193957","name":"Gabriele Augusta *-*","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/681712022\/b6cf2fc31cd5eaf91300af610560a568.jpeg","friends_count":244,"url":"http:\/\/tuua-maloqueiraa.tumblr.com","id":174470598,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/681712022\/b6cf2fc31cd5eaf91300af610560a568.jpeg","utc_offset":-14400,"profile_link_color":"FF0000","followers_count":304},"id":263290768872071168,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @MenHumor: We live in a dark age. An age where it's not okay to commit murder but it's okay for fat girls to wear leggings.","in_reply_to_user_id_str":null,"retweet_count":589,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880455682","entities":{"user_mentions":[{"indices":[3,12],"screen_name":"MenHumor","id_str":"131480042","name":"Men Humor","id":131480042}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"We live in a dark age. An age where it's not okay to commit murder but it's okay for fat girls to wear leggings.","in_reply_to_user_id_str":null,"retweet_count":589,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263106718119124992","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:35:04 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Mumbai","profile_background_color":"022330","location":"Worldwide","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2756279207\/fc9c8bbaab3abd57d74f3c2bec85ea32_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"Tweeting EPIC Humor that pops in a Men's Mind! \r\n\r\n *Parody Account* (For Advertising Contact: MenHumour@gmail.com) \r\n\r\n\r\n\r\n\r\n\r\n","favourites_count":137,"screen_name":"MenHumor","profile_sidebar_border_color":"A8C7F7","id_str":"131480042","verified":false,"lang":"en","statuses_count":6606,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2756279207\/fc9c8bbaab3abd57d74f3c2bec85ea32_normal.jpeg","listed_count":666,"geo_enabled":false,"created_at":"Sat Apr 10 11:43:15 +0000 2010","profile_text_color":"333333","name":"Men Humor","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/644566477\/yh2iz5qicwa8xuofi6np.gif","friends_count":113241,"url":null,"id":131480042,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/644566477\/yh2iz5qicwa8xuofi6np.gif","utc_offset":19800,"profile_link_color":"0084B4","followers_count":657010},"id":263106718119124992,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"FCEBB6","location":"Johannesburg, South Africa \u2661","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775647750\/f1ba18bb4f95200fe2415e6baba32724_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"78C0A8","description":"Brenda 17, follow me and @Zach_the1 or purple unicorns will eat you and your family.","favourites_count":274,"screen_name":"b34chbum","profile_sidebar_border_color":"F0A830","id_str":"552252506","verified":false,"lang":"en","statuses_count":6836,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775647750\/f1ba18bb4f95200fe2415e6baba32724_normal.jpeg","listed_count":2,"geo_enabled":true,"created_at":"Thu Apr 12 23:24:44 +0000 2012","profile_text_color":"CE7834","name":"\u2022BeachBum\u2022","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/696011789\/0a6c9f4d9614963e09faff9ccb3a83fc.gif","friends_count":634,"url":"http:\/\/www.diskobiskit.tumblr.com","id":552252506,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/696011789\/0a6c9f4d9614963e09faff9ccb3a83fc.gif","utc_offset":null,"profile_link_color":"5E412F","followers_count":526},"id":263290768880455682,"contributors":null,"favorited":false} -{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"RT @raywert: OMG. Just took this photo of cars floating in the submerged parking garage at the South end of Stone Street. http:\/\/t.co\/30 ...","in_reply_to_user_id_str":null,"retweet_count":1199,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768863682560","entities":{"user_mentions":[{"indices":[3,11],"screen_name":"raywert","id_str":"1648351","name":"Ray Wert","id":1648351}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/t.co\/30","indices":[122,136],"display_url":"t.co\/30","url":"http:\/\/t.co\/30"}]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"OMG. Just took this photo of cars floating in the submerged parking garage at the South end of Stone Street. http:\/\/t.co\/30G4qs3L","in_reply_to_user_id_str":null,"retweet_count":1199,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263102070989680640","entities":{"user_mentions":[],"media":[{"type":"photo","expanded_url":"http:\/\/twitter.com\/raywert\/status\/263102070989680640\/photo\/1","indices":[109,129],"media_url_https":"https:\/\/p.twimg.com\/A6a58ImCcAIKFnr.jpg","sizes":{"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":337,"w":600,"resize":"fit"},"large":{"h":575,"w":1024,"resize":"fit"},"small":{"h":191,"w":340,"resize":"fit"}},"id_str":"263102070998069250","media_url":"http:\/\/p.twimg.com\/A6a58ImCcAIKFnr.jpg","id":263102070998069250,"url":"http:\/\/t.co\/30G4qs3L","display_url":"pic.twitter.com\/30G4qs3L"}],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:16:36 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","location":"New York, Detroit","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/341867101\/Ray_Wert_Twitter_2_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"efefef","description":"Executive Director of Content for Gawker Media. I used to run Jalopnik. Also, Will Ferrell nicknamed him Dinosaur Shit.","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/1648351\/1347994731","favourites_count":236,"screen_name":"raywert","profile_sidebar_border_color":"eeeeee","id_str":"1648351","verified":true,"lang":"en","statuses_count":17705,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/341867101\/Ray_Wert_Twitter_2_normal.jpg","listed_count":613,"geo_enabled":true,"created_at":"Tue Mar 20 17:03:47 +0000 2007","profile_text_color":"333333","name":"Ray Wert","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","friends_count":4853,"url":"http:\/\/jalopnik.com\/","id":1648351,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","utc_offset":-18000,"profile_link_color":"009999","followers_count":13236},"id":263102070989680640,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"719","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2671158778\/6404a8eb6992059f0ae6018bea78e28a_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":7,"screen_name":"Novac90","profile_sidebar_border_color":"C0DEED","id_str":"369245494","verified":false,"lang":"en","statuses_count":796,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2671158778\/6404a8eb6992059f0ae6018bea78e28a_normal.jpeg","listed_count":0,"geo_enabled":true,"created_at":"Wed Sep 07 01:11:34 +0000 2011","profile_text_color":"333333","name":"Zach ","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":84,"url":null,"id":369245494,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":7},"id":263290768863682560,"contributors":null,"favorited":false} -{"contributors":null,"text":"RT @emy_igb: a @Giiregioli, ta namorando ! k \n\u00ea coisa linda ! :D","geo":null,"truncated":false,"retweeted_status":{"contributors":null,"text":"a @Giiregioli, ta namorando ! k \n\u00ea coisa linda ! :D","geo":null,"truncated":false,"retweeted":false,"in_reply_to_screen_name":null,"source":"web","coordinates":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"retweet_count":0,"in_reply_to_status_id_str":null,"entities":{"user_mentions":[{"indices":[2,13],"screen_name":"Giiregioli","name":"s\u00f3 do m\u00f4 :3","id":268572390,"id_str":"268572390"}],"hashtags":[],"urls":[]},"favorited":false,"created_at":"Tue Oct 30 05:37:19 +0000 2012","in_reply_to_user_id_str":null,"place":null,"user":{"following":null,"geo_enabled":true,"profile_use_background_image":true,"friends_count":554,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2784596448\/e311e991c58a5471d48d9d0ae1085a3d_normal.jpeg","is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","profile_text_color":"3D1957","location":"brazil bitch :)","statuses_count":13854,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme10\/bg.gif","profile_link_color":"FF0000","description":"Sei ser meiga, sei ser fofa, sei ser legal, S\u00f3 n\u00e3o quero. :)\r\namo mais que tudo e todos, a minha prot\u00ea gatinha *-* @_CathsSiqueira. \u2665\r\n","screen_name":"emy_igb","follow_request_sent":null,"contributors_enabled":false,"verified":false,"time_zone":"Paris","followers_count":637,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2784596448\/e311e991c58a5471d48d9d0ae1085a3d_normal.jpeg","default_profile_image":false,"profile_background_color":"642D8B","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/290146290\/1351604726","profile_background_tile":true,"favourites_count":0,"profile_sidebar_fill_color":"7AC3EE","protected":false,"lang":"en","notifications":null,"created_at":"Fri Apr 29 20:12:29 +0000 2011","name":"emy pfvr (:","profile_sidebar_border_color":"65B0DA","url":"http:\/\/sinceridaades-de-uma-garota.tumblr.com\/","id":290146290,"id_str":"290146290","listed_count":0,"utc_offset":3600},"id":263152582795599872,"id_str":"263152582795599872"},"retweeted":false,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","coordinates":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"retweet_count":0,"in_reply_to_status_id_str":null,"entities":{"user_mentions":[{"indices":[3,11],"screen_name":"emy_igb","name":"emy pfvr (:","id":290146290,"id_str":"290146290"},{"indices":[15,26],"screen_name":"Giiregioli","name":"s\u00f3 do m\u00f4 :3","id":268572390,"id_str":"268572390"}],"hashtags":[],"urls":[]},"favorited":false,"created_at":"Tue Oct 30 14:46:25 +0000 2012","in_reply_to_user_id_str":null,"place":null,"user":{"following":null,"geo_enabled":true,"profile_use_background_image":true,"friends_count":261,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2667939272\/cf51613a26215c18753ca0fa9b3374b1_normal.jpeg","is_translator":false,"default_profile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/681434302\/339c9bf39b7eb7c0254405c71706a255.jpeg","profile_text_color":"000000","location":"To l\u00e1 (:","statuses_count":23249,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/681434302\/339c9bf39b7eb7c0254405c71706a255.jpeg","profile_link_color":"AD32A9","description":"Amo os meus* @Luucaas_Barbosa, @biiiabarbosa_, @tlgGaabx, @mansini_isa, @marcospfvr e n\u00e3o divido eles com ningu\u00e9m :*","screen_name":"Giiregioli","follow_request_sent":null,"contributors_enabled":false,"verified":false,"time_zone":"Brasilia","followers_count":378,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2667939272\/cf51613a26215c18753ca0fa9b3374b1_normal.jpeg","default_profile_image":false,"profile_background_color":"B30DB0","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/268572390\/1348353845","profile_background_tile":true,"favourites_count":126,"profile_sidebar_fill_color":"DDEEF6","protected":false,"lang":"pt","notifications":null,"created_at":"Sat Mar 19 01:47:34 +0000 2011","name":"s\u00f3 do m\u00f4 :3","profile_sidebar_border_color":"FFFFFF","url":null,"id":268572390,"id_str":"268572390","listed_count":0,"utc_offset":-10800},"id":263290768863662080,"id_str":"263290768863662080"} -{"in_reply_to_status_id_str":null,"text":"RT @Twetbijak: Awal dari cinta adalah membiarkan orang yang kita cintai menjadi dirinya sendiri dan tak mengubahnya seperti keinginan kita","in_reply_to_user_id_str":null,"retweet_count":1264,"geo":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768880455680","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"Twetbijak","id_str":"442967132","name":"Twetbijak","id":442967132}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Awal dari cinta adalah membiarkan orang yang kita cintai menjadi dirinya sendiri dan tak mengubahnya seperti keinginan kita","in_reply_to_user_id_str":null,"retweet_count":1264,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"262448685932244992","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Sun Oct 28 07:00:17 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","location":"Media promo 08161941328","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2738902938\/65b21e17e63db7f4839624ee2ad0af16_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Jika kamu ingin mendapatkan kata-kata bijak yang mendamaikan hati, Follow @Twetbijak, tweet bijaknya selalu memberi inspirasi..","favourites_count":80,"screen_name":"Twetbijak","profile_sidebar_border_color":"C0DEED","id_str":"442967132","verified":false,"lang":"en","statuses_count":9287,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2738902938\/65b21e17e63db7f4839624ee2ad0af16_normal.jpeg","listed_count":211,"geo_enabled":false,"created_at":"Wed Dec 21 17:21:57 +0000 2011","profile_text_color":"333333","name":"Twetbijak","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":5,"url":null,"id":442967132,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":230070},"id":262448685932244992,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","location":"Espada, SMAN 17 Surabaya","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2448097009\/Espada_20In_20Joga_20_42__normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"33 My Beloved","favourites_count":27,"screen_name":"ramasafr","profile_sidebar_border_color":"A8C7F7","id_str":"120556293","verified":false,"lang":"en","statuses_count":4139,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2448097009\/Espada_20In_20Joga_20_42__normal.JPG","listed_count":0,"geo_enabled":false,"created_at":"Sat Mar 06 20:26:19 +0000 2010","profile_text_color":"333333","name":"Rama Firmansyah","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/311119425\/Venom-spider-man-654973_1600_1054.jpg","friends_count":330,"url":null,"id":120556293,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/311119425\/Venom-spider-man-654973_1600_1054.jpg","utc_offset":-28800,"profile_link_color":"0084B4","followers_count":134},"id":263290768880455680,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @rbeaulieu17: @ally_pytlak3 alligator","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768867860480","entities":{"user_mentions":[{"indices":[3,15],"screen_name":"rbeaulieu17","id_str":"98183924","name":"\u26beRyan Beaulieu\u26be","id":98183924},{"indices":[17,30],"screen_name":"ally_pytlak3","id_str":"592932834","name":"Ally Pytlak","id":592932834}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"@ally_pytlak3 alligator","in_reply_to_user_id_str":"592932834","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290524818092032","entities":{"user_mentions":[{"indices":[0,13],"screen_name":"ally_pytlak3","id_str":"592932834","name":"Ally Pytlak","id":592932834}],"hashtags":[],"urls":[]},"in_reply_to_user_id":592932834,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"ally_pytlak3","created_at":"Tue Oct 30 14:45:27 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Quito","profile_background_color":"022330","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2691851854\/64bbf25c855516e5a444cd5deeef7d26_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"C0DFEC","description":"The official twitter of Ryan M Beaulieu. NRHS 12. #italianswag","favourites_count":908,"screen_name":"rbeaulieu17","profile_sidebar_border_color":"a8c7f7","id_str":"98183924","verified":false,"lang":"en","statuses_count":13089,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2691851854\/64bbf25c855516e5a444cd5deeef7d26_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Sun Dec 20 19:02:28 +0000 2009","profile_text_color":"333333","name":"\u26beRyan Beaulieu\u26be","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","friends_count":137,"url":null,"id":98183924,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-18000,"profile_link_color":"0084B4","followers_count":197},"id":263290524818092032,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2258849596\/image_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":192,"screen_name":"ally_pytlak3","profile_sidebar_border_color":"C0DEED","id_str":"592932834","verified":false,"lang":"en","statuses_count":340,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2258849596\/image_normal.jpg","listed_count":0,"geo_enabled":false,"created_at":"Mon May 28 16:12:51 +0000 2012","profile_text_color":"333333","name":"Ally Pytlak","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":80,"url":null,"id":592932834,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":58},"id":263290768867860480,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @CycloneATH: Former @CycloneMBB player Garrett realized his lifelong dream today by making the roster of the Phoenix Suns! http:\/\/t.c ...","in_reply_to_user_id_str":null,"retweet_count":41,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768888844290","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"CycloneATH","id_str":"113379481","name":"Iowa State Athletics","id":113379481},{"indices":[23,34],"screen_name":"CycloneMBB","id_str":"36973175","name":"Cyclone Basketball","id":36973175}],"hashtags":[],"urls":[]},"retweeted_status":{"possibly_sensitive":false,"in_reply_to_status_id_str":null,"text":"Former @CycloneMBB player Garrett realized his lifelong dream today by making the roster of the Phoenix Suns! http:\/\/t.co\/lvdK1gMs","in_reply_to_user_id_str":null,"retweet_count":41,"geo":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263105808693354497","entities":{"user_mentions":[{"indices":[7,18],"screen_name":"CycloneMBB","id_str":"36973175","name":"Cyclone Basketball","id":36973175}],"hashtags":[],"urls":[{"expanded_url":"http:\/\/ow.ly\/eRVND","indices":[110,130],"display_url":"ow.ly\/eRVND","url":"http:\/\/t.co\/lvdK1gMs"}]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 02:31:27 +0000 2012","possibly_sensitive_editable":true,"user":{"notifications":null,"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"030303","location":"Ames, Iowa","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2162787967\/Iowa_State_Twitter_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FAD963","description":"The official Twitter feed of Iowa State Athletics. \r\n#Cyclones #cyclONEnation","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/113379481\/1348498817","favourites_count":12,"screen_name":"CycloneATH","profile_sidebar_border_color":"FFFFFF","id_str":"113379481","verified":false,"lang":"en","statuses_count":8000,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2162787967\/Iowa_State_Twitter_normal.jpg","listed_count":261,"geo_enabled":false,"created_at":"Thu Feb 11 15:31:47 +0000 2010","profile_text_color":"A70000","name":"Iowa State Athletics","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665612598\/2306328f34a669c93d9c05b5f55b62d5.jpeg","friends_count":167,"url":"http:\/\/www.cyclones.com\/","id":113379481,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665612598\/2306328f34a669c93d9c05b5f55b62d5.jpeg","utc_offset":-21600,"profile_link_color":"A70000","followers_count":16244},"id":263105808693354497,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile_image":true,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"","favourites_count":0,"screen_name":"briggsy75","profile_sidebar_border_color":"C0DEED","id_str":"149239232","verified":false,"lang":"en","statuses_count":13,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","listed_count":0,"geo_enabled":false,"created_at":"Fri May 28 19:49:17 +0000 2010","profile_text_color":"333333","name":"Vicky Briggs","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":32,"url":null,"id":149239232,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":2},"id":263290768888844290,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"como a minha vergonha maior do que a miha vontade eu nao vo chamar ele no face","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290768863670272","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Brasilia","profile_background_color":"131516","location":"Apucarana","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2781826242\/275076449831b293b23db13ffd98fcfd_normal.png","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"FFFFFF","description":"Tente, corra, lute. Mas nunca desista.\r\nhttp:\/\/www.facebook.com\/maria.ravelli","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/407378075\/1351546415","favourites_count":38,"screen_name":"gmvrs","profile_sidebar_border_color":"FFFFFF","id_str":"407378075","verified":false,"lang":"pt","statuses_count":6316,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2781826242\/275076449831b293b23db13ffd98fcfd_normal.png","listed_count":0,"geo_enabled":true,"created_at":"Tue Nov 08 00:38:55 +0000 2011","profile_text_color":"D915AB","name":"mariazinha","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/697255196\/398000036e2f4b44ebd5381508f88a0b.jpeg","friends_count":118,"url":"http:\/\/ask.fm\/littlemaaria","id":407378075,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/697255196\/398000036e2f4b44ebd5381508f88a0b.jpeg","utc_offset":-10800,"profile_link_color":"161717","followers_count":143},"id":263290768863670272,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"\u304a\u3084\u3059\u307f\u306a\u3055\u3044\uff08\u00b4\u03c9\uff40\uff09\uff09\u307f\u306a\u3055\u307e\u4eca\u65e5\u3082\uff11\u65e5\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\u3002\u660e\u65e5\u3082\u4eca\u65e5\u3088\u308a\u826f\u3044\u65e5\u306b\u306a\u308a\u307e\u3059\u3088\u3046\u306b(*^^*)\u309e","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003EKeitai Web\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884654080","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"C0DEED","location":"\u6771\u4eac\u90fd \u516b\u738b\u5b50","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2199037368\/L06A0089_normal.JPG","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u8da3\u5473\u306f\u300e\u65c5\u884c\u30fb\u304a\u83d3\u5b50\u9020\u308a\u300f\u300e\u81ea\u8ee2\u8eca\u300f\u3084\u300e\u30c0\u30f3\u30a8\u30dc\u300f\u306a\u3069\u3067\u3059\u3002 \u306a\u304b\u306a\u304b\u306b\u4e0d\u5668\u7528\u3067\u3059\u304c\u2026\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3067\u3059m(_ _)m","favourites_count":137,"screen_name":"yamakenqun","profile_sidebar_border_color":"C0DEED","id_str":"568352107","verified":false,"lang":"ja","statuses_count":4750,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2199037368\/L06A0089_normal.JPG","listed_count":7,"geo_enabled":false,"created_at":"Tue May 01 16:38:59 +0000 2012","profile_text_color":"333333","name":"\u3084\u307e\u3051\u3093\uff12\uff10","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":118,"url":null,"id":568352107,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":32400,"profile_link_color":"0084B4","followers_count":106},"id":263290768884654080,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @chikakotty: \u672c\u539a\u6728\u301c\u753a\u7530\u5468\u8fba\u3050\u3089\u3044\u3067\u3001\n\u3044\u3044\u7f8e\u5bb9\u9662\u77e5\u3063\u3066\u308b\u3072\u3068\u3044\u305f\u3089\n\u81f3\u6025\u7d39\u4ecb\u304a\u9858\u3044\u3057\u307e\u3059(;_;)\uff01","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768884658178","entities":{"user_mentions":[{"indices":[3,14],"screen_name":"chikakotty","id_str":"433395861","name":"\u7b39 \u667a\u590f\u5b50","id":433395861}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"\u672c\u539a\u6728\u301c\u753a\u7530\u5468\u8fba\u3050\u3089\u3044\u3067\u3001\n\u3044\u3044\u7f8e\u5bb9\u9662\u77e5\u3063\u3066\u308b\u3072\u3068\u3044\u305f\u3089\n\u81f3\u6025\u7d39\u4ecb\u304a\u9858\u3044\u3057\u307e\u3059(;_;)\uff01","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263283754825560066","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:18:33 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u795e\u5948\u5ddd","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775481849\/4cfb6eefd92d0bcc83e1b6c4e7434594_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u539a\u6728\u53172\u5e74 \u9678\u4e0a\u90e8\u6240\u5c5e long sprinter\u3067\u3059\uff01\uff01 200 400 4\u7d99 \u30de\u30a4\u30eb \/ \u305f\u306e\u3057\u3044\u3053\u3068\u5927\u597d\u304d\u2661 TOP\u5de6 \u3075\u3049\u308d\u30fc\u307f\u30fc (\u0e51\u2727\u25e1\u2727\u0e51)","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/433395861\/1350726866","favourites_count":107,"screen_name":"chikakotty","profile_sidebar_border_color":"C0DEED","id_str":"433395861","verified":false,"lang":"ja","statuses_count":4723,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775481849\/4cfb6eefd92d0bcc83e1b6c4e7434594_normal.jpeg","listed_count":2,"geo_enabled":false,"created_at":"Sat Dec 10 14:24:36 +0000 2011","profile_text_color":"333333","name":"\u7b39 \u667a\u590f\u5b50","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":452,"url":"http:\/\/s.ameblo.jp\/100429-ocean\/","id":433395861,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":472},"id":263283754825560066,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"\u706b\u661f\u2606","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2775154440\/1d94dc61c1474c717279df5d137a57ca_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u539a\u6728\u6e05\u5357\u3002\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u3066\u308b\u7686\u3055\u3093\u306b\u308f\u79c1\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059(*\u00b4\u2207\uff40*)\u7686\u69d8\u3088\u308d\u3066\u3051\uff01","favourites_count":0,"screen_name":"Dragon817G","profile_sidebar_border_color":"C0DEED","id_str":"756212617","verified":false,"lang":"ja","statuses_count":542,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2775154440\/1d94dc61c1474c717279df5d137a57ca_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Tue Aug 14 01:33:00 +0000 2012","profile_text_color":"333333","name":"\u3086\u3061\u307e\u3080","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":122,"url":"http:\/\/blog.crooz.jp\/143235386","id":756212617,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":101},"id":263290768884658178,"contributors":null,"favorited":false} -{"delete":{"status":{"id":3179185988182016,"id_str":"3179185988182016","user_id_str":"126735178","user_id":126735178}}} -{"in_reply_to_status_id_str":"263289137749180416","text":"@AyameroChu \u3042\u308a\u304c\u3068\u3046\uff01\u9811\u5f35\u308c\u308b\u308f\u3041\u30fc\uff01","in_reply_to_user_id_str":"580999778","retweet_count":0,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855293952","entities":{"user_mentions":[{"indices":[0,11],"screen_name":"AyameroChu","id_str":"580999778","name":"\u3082\u3093\u3061\u3083\u3093","id":580999778}],"hashtags":[],"urls":[]},"in_reply_to_user_id":580999778,"in_reply_to_status_id":263289137749180416,"place":null,"coordinates":null,"in_reply_to_screen_name":"AyameroChu","created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2420184470\/O6b71H9z_normal","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\uff5e\u5317\u6d77\uff5e\u5317\u6d77\u5b66\u5712\u7d4c\u55b6\u60c5\u5831\uff5eEXILE\uff5eJSB3\uff5eSOCCER\uff5e","favourites_count":0,"screen_name":"__syun__","profile_sidebar_border_color":"C0DEED","id_str":"467890439","verified":false,"lang":"ja","statuses_count":1176,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2420184470\/O6b71H9z_normal","listed_count":0,"geo_enabled":false,"created_at":"Wed Jan 18 23:27:15 +0000 2012","profile_text_color":"333333","name":"\u68ee\u5ddd\u99ff","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":152,"url":null,"id":467890439,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":143},"id":263290768855293952,"contributors":null,"favorited":false} -{"in_reply_to_status_id_str":null,"text":"RT @ohohmario: Wenmwbwe\nW","in_reply_to_user_id_str":null,"retweet_count":74,"geo":null,"source":"\u003Ca href=\"http:\/\/tweetli.st\/\" rel=\"nofollow\"\u003ETweetList!\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290768855273472","entities":{"user_mentions":[{"indices":[3,13],"screen_name":"ohohmario","id_str":"154609624","name":"mario","id":154609624}],"hashtags":[],"urls":[]},"retweeted_status":{"in_reply_to_status_id_str":null,"text":"Wenmwbwe\nW","in_reply_to_user_id_str":null,"retweet_count":74,"geo":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"truncated":false,"id_str":"263290018494283779","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:43:26 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"bkk","profile_background_tile":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1868748016\/AnCZ9sGCAAESy-z_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"Actor and I was born from love of siam thx my all fans I love u","favourites_count":3,"screen_name":"ohohmario","profile_sidebar_border_color":"C0DEED","id_str":"154609624","verified":false,"lang":"en","statuses_count":3011,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1868748016\/AnCZ9sGCAAESy-z_normal.jpg","listed_count":2747,"geo_enabled":false,"created_at":"Fri Jun 11 18:26:33 +0000 2010","profile_text_color":"E833E8","name":"mario","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/111113023\/kanye-west-808-heartbreak-cover-by-kaws.jpg","friends_count":37,"url":"http:\/\/www.oohmario.com","id":154609624,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/111113023\/kanye-west-808-heartbreak-cover-by-kaws.jpg","utc_offset":null,"profile_link_color":"0084B4","followers_count":509895},"id":263290018494283779,"contributors":null,"favorited":false},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:25 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":null,"profile_background_color":"C0DEED","location":"special1004....Wait\u2764637 DAY","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2783189253\/8116cece5491b2fd277659f413f94ef9_normal.jpeg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"DDEEF6","description":"\u2665SUPER JUNIOR \nSuper junior will always be waiting for me back at the end of 13 again.\n(T.T ) ( T.T)............\u0e08\u0e30\u0e23\u0e2d Only 13 \u2764Everlasting Friends....E.L.F~\u2764\u2764","favourites_count":1368,"screen_name":"nu_good","profile_sidebar_border_color":"C0DEED","id_str":"314537567","verified":false,"lang":"en","statuses_count":22789,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2783189253\/8116cece5491b2fd277659f413f94ef9_normal.jpeg","listed_count":0,"geo_enabled":false,"created_at":"Fri Jun 10 12:25:33 +0000 2011","profile_text_color":"333333","name":"\u0e23\u0e2d....\u0e1e\u0e35\u0e48\u0e17\u0e36\u0e01T^T","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":179,"url":null,"id":314537567,"is_translator":false,"default_profile":true,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"profile_link_color":"0084B4","followers_count":169},"id":263290768855273472,"contributors":null,"favorited":false} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/TypeInference.json b/tests/FSharp.Data.Core.Tests/Data/TypeInference.json deleted file mode 100644 index 0f75e99b7..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TypeInference.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "intLike" : "123" , - "boolLike1" : 0 , - "boolLike2" : "1" - }, - { - "intLike" : "321" , - "boolLike1" : 1 , - "boolLike2" : "0" - } -] diff --git a/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml b/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml deleted file mode 100644 index 28310b2c8..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/TypeInference.xml +++ /dev/null @@ -1,4 +0,0 @@ - - 0{"a":1} - 1{"a":3} - diff --git a/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html b/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html deleted file mode 100644 index 0400ff770..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/UKDepartures.html +++ /dev/null @@ -1,1396 +0,0 @@ - - - - - - - - - - - - - - - - - - National Rail Enquiries - - - - - - - - - - - - - - - - - - - - - -
      -
      - -
      - - - - - -
      - - - - - -
      - -
      - - -
      - - -
      -
      -
      - - -
      - - - - - - - - - - - - - - - - - - - - - - -
      - - - - -
      -

      Live departure boards

      - - Reload - -
      - -
      - - - - Departing - Arriving - - -
      -
      - -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      From:London VictoriaEdit
      -

      Trains through Horsham are being delayed by up to 30 minutes. More details can be found in Latest Travel News.

      -
      - -

      Train departures

      - -
      - -
      -
      - -
      - -
        -
        - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html b/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html deleted file mode 100644 index b391c0515..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/UKLiveProgress.html +++ /dev/null @@ -1,89 +0,0 @@ - - - -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        -

        Live departure boards

        - Reload -
        -
        -
        - - - - - - - - - -
        23:19London Bridge
        To:London Charing Cross Southeastern
        -
        -
        -
          - - -
        • - 22:44
          On time
          Hayes (Kent) - - - - -
        • - - 22:47
          - On time -
          - West Wickham - - - - -
        • - 22:49
          On time
          Eden Park - - - - -
        • - 22:53
          On time
          Elmers End - - - - - - -
        • - 22:55
          On time
          Clock House - - - - -
        • 22:57
          On time
          New Beckenham -
        • 22:59
          On time
          Lower Sydenham -
        • 23:02
          On time
          Catford Bridge -
        • 23:04
          On time
          Ladywell -
        • 23:08
          On time
          Lewisham -
        • 23:10
          On time
          St Johns (London) -
        • 23:12
          On time
          New Cross -
        • 23:19
          On time
          London BridgeLast reported station
        • -
        • 23:23
          On time
          London Waterloo East
        • -
        • 23:27
          On time
          London Charing Cross
        • -

        -

          -
          - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Vindinium.json b/tests/FSharp.Data.Core.Tests/Data/Vindinium.json deleted file mode 100644 index 80375245e..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Vindinium.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "game":{ - "id":"s2xh3aig", - "turn":1100, - "maxTurns":1200, - "heroes":[ - { - "id":1, - "name":"vjousse", - "userId":"j07ws669", - "elo":1200, - "pos":{ - "x":5, - "y":6 - }, - "life":60, - "gold":0, - "mineCount":0, - "spawnPos":{ - "x":5, - "y":6 - }, - "crashed":true - }, - { - "id":2, - "name":"vjousse", - "userId":"j07ws669", - "elo":1200, - "pos":{ - "x":12, - "y":6 - }, - "life":100, - "gold":0, - "mineCount":0, - "spawnPos":{ - "x":12, - "y":6 - }, - "crashed":true - }, - { - "id":3, - "name":"vjousse", - "userId":"j07ws669", - "elo":1200, - "pos":{ - "x":12, - "y":11 - }, - "life":80, - "gold":0, - "mineCount":0, - "spawnPos":{ - "x":12, - "y":11 - }, - "crashed":true - }, - { - "id":4, - "name":"vjousse", - "userId":"j07ws669", - "elo":1200, - "pos":{ - "x":4, - "y":8 - }, - "life":38, - "gold":1078, - "mineCount":6, - "spawnPos":{ - "x":5, - "y":11 - }, - "crashed":false - } - ], - "board":{ - "size":18, - "tiles":"############## ############################ ############################## ##############################$4 $4############################ @4 ######################## @1## ## #################### [] [] ################## #### #################### $4####$4 ######################## $4####$4 #################### #### ################## [] [] #################### @2## ##@3 ######################## ############################$- $-############################## ############################## ############################ ##############" - }, - "finished":true - }, - "hero":{ - "id":4, - "name":"vjousse", - "userId":"j07ws669", - "elo":1200, - "pos":{ - "x":4, - "y":8 - }, - "life":38, - "gold":1078, - "mineCount":6, - "spawnPos":{ - "x":5, - "y":11 - }, - "crashed":false - }, - "token":"lte0", - "viewUrl":"http://localhost:9000/s2xh3aig", - "playUrl":"http://localhost:9000/api/s2xh3aig/lte0/play" -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/WikiData.json b/tests/FSharp.Data.Core.Tests/Data/WikiData.json deleted file mode 100644 index 88490e2be..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/WikiData.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "firstName": "John", - "lastName" : "Doe", - "age" : 42, - "address" : - { - "streetAddress": "21 2nd Street", - "city" : "New York", - "state" : "NY", - "postalCode" : "10021" - } -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/WorldBank.json b/tests/FSharp.Data.Core.Tests/Data/WorldBank.json deleted file mode 100644 index a5fe445bb..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/WorldBank.json +++ /dev/null @@ -1,699 +0,0 @@ -[ - { - "page": 1, - "pages": 1, - "per_page": "1000", - "total": 53 - }, - [ - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "2012" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "2011" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "35.1422970266502", - "decimal": "1", - "date": "2010" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "31.034880222506", - "decimal": "1", - "date": "2009" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "25.475163645463", - "decimal": "1", - "date": "2008" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "24.1933198328061", - "decimal": "1", - "date": "2007" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "23.7080545570765", - "decimal": "1", - "date": "2006" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "22.0334615295746", - "decimal": "1", - "date": "2005" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "20.1083787500358", - "decimal": "1", - "date": "2004" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "18.2677252058791", - "decimal": "1", - "date": "2003" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "15.4255646477354", - "decimal": "1", - "date": "2002" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "14.8744342075761", - "decimal": "1", - "date": "2001" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "13.2188686145055", - "decimal": "1", - "date": "2000" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "11.3566955774787", - "decimal": "1", - "date": "1999" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "10.1787800927734", - "decimal": "1", - "date": "1998" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "10.1535658732129", - "decimal": "1", - "date": "1997" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "10.5203014347956", - "decimal": "1", - "date": "1996" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "12.7078339884043", - "decimal": "1", - "date": "1995" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "14.7818078232509", - "decimal": "1", - "date": "1994" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": "16.6567773464055", - "decimal": "1", - "date": "1993" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1992" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1991" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1990" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1989" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1988" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1987" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1986" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1985" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1984" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1983" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1982" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1981" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1980" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1979" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1978" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1977" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1976" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1975" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1974" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1973" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1972" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1971" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1970" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1969" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1968" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1967" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1966" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1965" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1964" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1963" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1962" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1961" - }, - { - "indicator": { - "id": "GC.DOD.TOTL.GD.ZS", - "value": "Central government debt, total (% of GDP)" - }, - "country": { - "id": "CZ", - "value": "Czech Republic" - }, - "value": null, - "decimal": "1", - "date": "1960" - } - ] -] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/Writers.xml b/tests/FSharp.Data.Core.Tests/Data/Writers.xml deleted file mode 100644 index e701366e3..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/Writers.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/banklist.csv b/tests/FSharp.Data.Core.Tests/Data/banklist.csv deleted file mode 100644 index cea689dcd..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/banklist.csv +++ /dev/null @@ -1,498 +0,0 @@ -Bank Name,City,State,CERT #,Acquiring Institution,Closing Date,Updated Date -,,,,,, -"Alabama Trust Bank, National Association",Sylacauga,AL,35224,Southern States Bank,18-May-12,31-Oct-12 -Frontier Bank,LaGrange,GA,16431,HeritageBank of the South,8-Mar-13,12-Mar-13 -Covenant Bank,Chicago,IL,22476,Liberty Bank and Trust Company,15-Feb-13,4-Mar-13 -1st Regents Bank,Andover,MN,57157,First Minnesota Bank,18-Jan-13,28-Feb-13 -Westside Community Bank,University Place,WA,33997,Sunwest Bank,11-Jan-13,24-Jan-13 -Community Bank of the Ozarks,Sunrise Beach,MO,27331,Bank of Sullivan,14-Dec-12,24-Jan-13 -Hometown Community Bank,Braselton,GA,57928,"CertusBank, National Association",16-Nov-12,24-Jan-13 -Citizens First National Bank,Princeton,IL,3731,Heartland Bank and Trust Company,2-Nov-12,24-Jan-13 -Heritage Bank of Florida,Lutz,FL,35009,Centennial Bank,2-Nov-12,24-Jan-13 -NOVA Bank,Berwyn,PA,27148,No Acquirer,26-Oct-12,24-Jan-13 -Excel Bank,Sedalia,MO,19189,Simmons First National Bank,19-Oct-12,24-Jan-13 -First East Side Savings Bank,Tamarac,FL,28144,Stearns Bank N.A.,19-Oct-12,24-Jan-13 -GulfSouth Private Bank,Destin,FL,58073,SmartBank,19-Oct-12,24-Jan-13 -First United Bank,Crete,IL,20685,"Old Plank Trail Community Bank, National Association",28-Sep-12,15-Nov-12 -Truman Bank,St. Louis,MO,27316,Simmons First National Bank,14-Sep-12,17-Dec-12 -First Commercial Bank,Bloomington,MN,35246,Republic Bank & Trust Company,7-Sep-12,17-Dec-12 -Waukegan Savings Bank,Waukegan,IL,28243,First Midwest Bank,3-Aug-12,11-Oct-12 -Jasper Banking Company,Jasper,GA,16240,Stearns Bank N.A.,27-Jul-12,17-Dec-12 -Second Federal Savings and Loan Association of Chicago,Chicago,IL,27986,Hinsdale Bank & Trust Company,20-Jul-12,14-Jan-13 -Heartland Bank,Leawood,KS,1361,Metcalf Bank,20-Jul-12,17-Dec-12 -First Cherokee State Bank,Woodstock,GA,32711,Community & Southern Bank,20-Jul-12,31-Oct-12 -Georgia Trust Bank,Buford,GA,57847,Community & Southern Bank,20-Jul-12,17-Dec-12 -The Royal Palm Bank of Florida,Naples,FL,57096,First National Bank of the Gulf Coast,20-Jul-12,7-Jan-13 -Glasgow Savings Bank,Glasgow,MO,1056,Regional Missouri Bank,13-Jul-12,11-Oct-12 -Montgomery Bank & Trust,Ailey,GA,19498,Ameris Bank,6-Jul-12,31-Oct-12 -The Farmers Bank of Lynchburg,Lynchburg,TN,1690,Clayton Bank and Trust,15-Jun-12,31-Oct-12 -Security Exchange Bank,Marietta,GA,35299,Fidelity Bank,15-Jun-12,10-Oct-12 -Putnam State Bank,Palatka,FL,27405,Harbor Community Bank,15-Jun-12,10-Oct-12 -Waccamaw Bank,Whiteville,NC,34515,First Community Bank,8-Jun-12,8-Nov-12 -Farmers' and Traders' State Bank,Shabbona,IL,9257,First State Bank,8-Jun-12,10-Oct-12 -Carolina Federal Savings Bank,Charleston,SC,35372,Bank of North Carolina,8-Jun-12,31-Oct-12 -First Capital Bank,Kingfisher,OK,416,F & M Bank,8-Jun-12,10-Oct-12 -"Security Bank, National Association",North Lauderdale,FL,23156,Banesco USA,4-May-12,31-Oct-12 -Palm Desert National Bank,Palm Desert,CA,23632,Pacific Premier Bank,27-Apr-12,31-Aug-12 -Plantation Federal Bank,Pawleys Island,SC,32503,First Federal Bank,27-Apr-12,31-Oct-12 -"Inter Savings Bank, fsb D/B/A InterBank, fsb",Maple Grove,MN,31495,Great Southern Bank,27-Apr-12,17-Oct-12 -HarVest Bank of Maryland,Gaithersburg,MD,57766,Sonabank,27-Apr-12,17-Oct-12 -Bank of the Eastern Shore,Cambridge,MD,26759,No Acquirer,27-Apr-12,17-Oct-12 -"Fort Lee Federal Savings Bank, FSB",Fort Lee,NJ,35527,Alma Bank,20-Apr-12,31-Aug-12 -Fidelity Bank,Dearborn,MI,33883,The Huntington National Bank,30-Mar-12,9-Aug-12 -Premier Bank,Wilmette,IL,35419,International Bank of Chicago,23-Mar-12,17-Oct-12 -Covenant Bank & Trust,Rock Spring,GA,58068,"Stearns Bank, N.A.",23-Mar-12,31-Oct-12 -New City Bank ,Chicago,IL,57597,No Acquirer,9-Mar-12,29-Oct-12 -Global Commerce Bank,Doraville,GA,34046,Metro City Bank,2-Mar-12,31-Oct-12 -Home Savings of America,Little Falls,MN,29178,No Acquirer,24-Feb-12,17-Dec-12 -Central Bank of Georgia,Ellaville,GA,5687,Ameris Bank,24-Feb-12,9-Aug-12 -SCB Bank,Shelbyville,IN,29761,"First Merchants Bank, National Association",10-Feb-12,9-Aug-12 -Charter National Bank and Trust ,Hoffman Estates,IL,23187,"Barrington Bank & Trust Company, National Association",10-Feb-12,9-Aug-12 -BankEast,Knoxville,TN,19869,U.S.Bank National Association,27-Jan-12,8-Mar-13 -Patriot Bank Minnesota,Forest Lake,MN,34823,First Resource Bank,27-Jan-12,12-Sep-12 -Tennessee Commerce Bank ,Franklin,TN,35296,Republic Bank & Trust Company,27-Jan-12,20-Nov-12 -First Guaranty Bank and Trust Company of Jacksonville,Jacksonville,FL,16579,"CenterState Bank of Florida, N.A.",27-Jan-12,12-Sep-12 -American Eagle Savings Bank,Boothwyn,PA,31581,"Capital Bank, N.A.",20-Jan-12,25-Jan-13 -The First State Bank,Stockbridge,GA,19252,Hamilton State Bank,20-Jan-12,25-Jan-13 -Central Florida State Bank,Belleview,FL,57186,"CenterState Bank of Florida, N.A.",20-Jan-12,25-Jan-13 -Western National Bank,Phoenix,AZ,57917,Washington Federal,16-Dec-11,13-Aug-12 -Premier Community Bank of the Emerald Coast,Crestview,FL,58343,Summit Bank,16-Dec-11,12-Sep-12 -Central Progressive Bank,Lacombe,LA,19657,First NBC Bank,18-Nov-11,13-Aug-12 -Polk County Bank,Johnston,IA,14194,Grinnell State Bank,18-Nov-11,15-Aug-12 -Community Bank of Rockmart,Rockmart,GA,57860,Century Bank of Georgia,10-Nov-11,13-Aug-12 -SunFirst Bank,Saint George,UT,57087,Cache Valley Bank,4-Nov-11,16-Nov-12 -"Mid City Bank, Inc.",Omaha,NE,19397,Premier Bank,4-Nov-11,15-Aug-12 -All American Bank,Des Plaines,IL,57759,International Bank of Chicago,28-Oct-11,15-Aug-12 -Community Banks of Colorado,Greenwood Village,CO,21132,"Bank Midwest, N.A.",21-Oct-11,2-Jan-13 -Community Capital Bank,Jonesboro,GA,57036,State Bank and Trust Company,21-Oct-11,8-Nov-12 -Decatur First Bank,Decatur,GA,34392,Fidelity Bank,21-Oct-11,8-Nov-12 -Old Harbor Bank,Clearwater,FL,57537,1st United Bank,21-Oct-11,8-Nov-12 -Country Bank,Aledo,IL,35395,Blackhawk Bank & Trust,14-Oct-11,15-Aug-12 -First State Bank,Cranford,NJ,58046,Northfield Bank,14-Oct-11,8-Nov-12 -"Blue Ridge Savings Bank, Inc.",Asheville,NC,32347,Bank of North Carolina,14-Oct-11,8-Nov-12 -Piedmont Community Bank,Gray,GA,57256,State Bank and Trust Company,14-Oct-11,22-Jan-13 -Sun Security Bank,Ellington,MO,20115,Great Southern Bank,7-Oct-11,7-Nov-12 -The RiverBank,Wyoming,MN,10216,Central Bank,7-Oct-11,7-Nov-12 -First International Bank,Plano,TX,33513,American First National Bank,30-Sep-11,9-Oct-12 -Citizens Bank of Northern California,Nevada City,CA,33983,Tri Counties Bank,23-Sep-11,9-Oct-12 -Bank of the Commonwealth,Norfolk,VA,20408,Southern Bank and Trust Company,23-Sep-11,9-Oct-12 -The First National Bank of Florida,Milton,FL,25155,CharterBank,9-Sep-11,6-Sep-12 -CreekSide Bank,Woodstock,GA,58226,Georgia Commerce Bank,2-Sep-11,6-Sep-12 -Patriot Bank of Georgia,Cumming,GA,58273,Georgia Commerce Bank,2-Sep-11,2-Nov-12 -First Choice Bank,Geneva,IL,57212,Inland Bank & Trust,19-Aug-11,15-Aug-12 -First Southern National Bank,Statesboro,GA,57239,Heritage Bank of the South,19-Aug-11,2-Nov-12 -Lydian Private Bank,Palm Beach,FL,35356,"Sabadell United Bank, N.A.",19-Aug-11,2-Nov-12 -Public Savings Bank,Huntingdon Valley,PA,34130,"Capital Bank, N.A.",18-Aug-11,15-Aug-12 -The First National Bank of Olathe,Olathe,KS,4744,Enterprise Bank & Trust,12-Aug-11,23-Aug-12 -Bank of Whitman,Colfax,WA,22528,Columbia State Bank,5-Aug-11,16-Aug-12 -Bank of Shorewood,Shorewood,IL,22637,Heartland Bank and Trust Company,5-Aug-11,16-Aug-12 -Integra Bank National Association,Evansville,IN,4392,Old National Bank,29-Jul-11,16-Aug-12 -"BankMeridian, N.A.",Columbia,SC,58222,SCBT National Association,29-Jul-11,2-Nov-12 -Virginia Business Bank,Richmond,VA,58283,Xenith Bank,29-Jul-11,9-Oct-12 -Bank of Choice,Greeley,CO,2994,"Bank Midwest, N.A.",22-Jul-11,12-Sep-12 -LandMark Bank of Florida,Sarasota,FL,35244,American Momentum Bank,22-Jul-11,2-Nov-12 -Southshore Community Bank,Apollo Beach,FL,58056,American Momentum Bank,22-Jul-11,2-Nov-12 -Summit Bank,Prescott,AZ,57442,The Foothills Bank,15-Jul-11,16-Aug-12 -First Peoples Bank,Port St. Lucie,FL,34870,"Premier American Bank, N.A.",15-Jul-11,2-Nov-12 -High Trust Bank,Stockbridge,GA,19554,Ameris Bank,15-Jul-11,2-Nov-12 -One Georgia Bank,Atlanta,GA,58238,Ameris Bank,15-Jul-11,2-Nov-12 -Signature Bank,Windsor,CO,57835,Points West Community Bank,8-Jul-11,26-Oct-12 -Colorado Capital Bank,Castle Rock,CO,34522,First-Citizens Bank & Trust Company,8-Jul-11,15-Jan-13 -First Chicago Bank & Trust,Chicago,IL,27935,Northbrook Bank & Trust Company,8-Jul-11,9-Sep-12 -Mountain Heritage Bank,Clayton,GA,57593,First American Bank and Trust Company,24-Jun-11,2-Nov-12 -First Commercial Bank of Tampa Bay,Tampa,FL,27583,Stonegate Bank,17-Jun-11,2-Nov-12 -McIntosh State Bank,Jackson,GA,19237,Hamilton State Bank,17-Jun-11,2-Nov-12 -Atlantic Bank and Trust,Charleston,SC,58420,"First Citizens Bank and Trust Company, Inc.",3-Jun-11,31-Oct-12 -First Heritage Bank,Snohomish,WA,23626,Columbia State Bank,27-May-11,28-Jan-13 -Summit Bank,Burlington,WA,513,Columbia State Bank,20-May-11,22-Jan-13 -First Georgia Banking Company,Franklin,GA,57647,"CertusBank, National Association",20-May-11,13-Nov-12 -Atlantic Southern Bank,Macon,GA,57213,"CertusBank, National Association",20-May-11,31-Oct-12 -Coastal Bank,Cocoa Beach,FL,34898,"Florida Community Bank, a division of Premier American Bank, N.A.",6-May-11,30-Nov-12 -Community Central Bank,Mount Clemens,MI,34234,Talmer Bank & Trust,29-Apr-11,16-Aug-12 -The Park Avenue Bank,Valdosta,GA,19797,Bank of the Ozarks,29-Apr-11,30-Nov-12 -First Choice Community Bank,Dallas,GA,58539,Bank of the Ozarks,29-Apr-11,22-Jan-13 -Cortez Community Bank,Brooksville,FL,57625,"Florida Community Bank, a division of Premier American Bank, N.A.",29-Apr-11,30-Nov-12 -First National Bank of Central Florida,Winter Park,FL,26297,"Florida Community Bank, a division of Premier American Bank, N.A.",29-Apr-11,30-Nov-12 -Heritage Banking Group,Carthage,MS,14273,Trustmark National Bank,15-Apr-11,30-Nov-12 -Rosemount National Bank,Rosemount,MN,24099,Central Bank,15-Apr-11,16-Aug-12 -Superior Bank,Birmingham,AL,17750,"Superior Bank, National Association",15-Apr-11,30-Nov-12 -Nexity Bank,Birmingham,AL,19794,AloStar Bank of Commerce,15-Apr-11,4-Sep-12 -New Horizons Bank,East Ellijay,GA,57705,Citizens South Bank,15-Apr-11,16-Aug-12 -Bartow County Bank,Cartersville,GA,21495,Hamilton State Bank,15-Apr-11,22-Jan-13 -Nevada Commerce Bank,Las Vegas,NV,35418,City National Bank,8-Apr-11,9-Sep-12 -Western Springs National Bank and Trust,Western Springs,IL,10086,Heartland Bank and Trust Company,8-Apr-11,22-Jan-13 -The Bank of Commerce,Wood Dale,IL,34292,Advantage National Bank Group,25-Mar-11,22-Jan-13 -Legacy Bank,Milwaukee,WI,34818,Seaway Bank and Trust Company,11-Mar-11,12-Sep-12 -First National Bank of Davis,Davis,OK,4077,The Pauls Valley National Bank,11-Mar-11,20-Aug-12 -Valley Community Bank,St. Charles,IL,34187,First State Bank,25-Feb-11,12-Sep-12 -"San Luis Trust Bank, FSB ",San Luis Obispo,CA,34783,First California Bank,18-Feb-11,20-Aug-12 -Charter Oak Bank,Napa,CA,57855,Bank of Marin,18-Feb-11,12-Sep-12 -Citizens Bank of Effingham,Springfield,GA,34601,Heritage Bank of the South,18-Feb-11,2-Nov-12 -Habersham Bank,Clarkesville,GA,151,SCBT National Association,18-Feb-11,2-Nov-12 -Canyon National Bank,Palm Springs,CA,34692,Pacific Premier Bank,11-Feb-11,12-Sep-12 -Badger State Bank,Cassville,WI,13272,Royal Bank,11-Feb-11,12-Sep-12 -Peoples State Bank,Hamtramck,MI,14939,First Michigan Bank,11-Feb-11,22-Jan-13 -Sunshine State Community Bank,Port Orange,FL,35478,"Premier American Bank, N.A.",11-Feb-11,2-Nov-12 -Community First Bank Chicago,Chicago,IL,57948,Northbrook Bank & Trust Company,4-Feb-11,20-Aug-12 -North Georgia Bank,Watkinsville,GA,35242,BankSouth,4-Feb-11,2-Nov-12 -American Trust Bank,Roswell,GA,57432,Renasant Bank,4-Feb-11,31-Oct-12 -First Community Bank,Taos,NM,12261,"U.S. Bank, N.A.",28-Jan-11,12-Sep-12 -FirsTier Bank,Louisville,CO,57646,No Acquirer,28-Jan-11,12-Sep-12 -Evergreen State Bank,Stoughton,WI,5328,McFarland State Bank,28-Jan-11,12-Sep-12 -The First State Bank,Camargo,OK,2303,Bank 7,28-Jan-11,12-Sep-12 -United Western Bank,Denver,CO,31293,First-Citizens Bank & Trust Company,21-Jan-11,12-Sep-12 -The Bank of Asheville,Asheville,NC,34516,First Bank,21-Jan-11,2-Nov-12 -CommunitySouth Bank & Trust,Easley,SC,57868,"CertusBank, National Association",21-Jan-11,2-Nov-12 -Enterprise Banking Company,McDonough,GA,19758,No Acquirer,21-Jan-11,2-Nov-12 -Oglethorpe Bank,Brunswick,GA,57440,Bank of the Ozarks,14-Jan-11,2-Nov-12 -Legacy Bank,Scottsdale,AZ,57820,Enterprise Bank & Trust,7-Jan-11,12-Sep-12 -First Commercial Bank of Florida,Orlando,FL,34965,First Southern Bank,7-Jan-11,2-Nov-12 -Community National Bank,Lino Lakes,MN,23306,Farmers & Merchants Savings Bank,17-Dec-10,20-Aug-12 -First Southern Bank ,Batesville,AR,58052,Southern Bank,17-Dec-10,20-Aug-12 -"United Americas Bank, N.A.",Atlanta,GA,35065,State Bank and Trust Company,17-Dec-10,2-Nov-12 -"Appalachian Community Bank, FSB ",McCaysville,GA,58495,Peoples Bank of East Tennessee,17-Dec-10,31-Oct-12 -Chestatee State Bank,Dawsonville,GA,34578,Bank of the Ozarks,17-Dec-10,2-Nov-12 -"The Bank of Miami,N.A.",Coral Gables,FL,19040,1st United Bank,17-Dec-10,2-Nov-12 -Earthstar Bank,Southampton,PA,35561,Polonia Bank,10-Dec-10,20-Aug-12 -Paramount Bank,Farmington Hills,MI,34673,Level One Bank,10-Dec-10,20-Aug-12 -First Banking Center,Burlington,WI,5287,First Michigan Bank,19-Nov-10,20-Aug-12 -Allegiance Bank of North America,Bala Cynwyd,PA,35078,VIST Bank,19-Nov-10,20-Aug-12 -Gulf State Community Bank,Carrabelle,FL,20340,Centennial Bank,19-Nov-10,2-Nov-12 -Copper Star Bank,Scottsdale,AZ,35463,"Stearns Bank, N.A.",12-Nov-10,20-Aug-12 -Darby Bank & Trust Co.,Vidalia,GA,14580,Ameris Bank,12-Nov-10,15-Jan-13 -Tifton Banking Company,Tifton,GA,57831,Ameris Bank,12-Nov-10,2-Nov-12 -First Vietnamese American Bank,Westminster,CA,57885,Grandpoint Bank,5-Nov-10,12-Sep-12 -Pierce Commercial Bank,Tacoma,WA,34411,Heritage Bank,5-Nov-10,20-Aug-12 -Western Commercial Bank,Woodland Hills,CA,58087,First California Bank,5-Nov-10,12-Sep-12 -K Bank,Randallstown,MD,31263,Manufacturers and Traders Trust Company (M&T Bank),5-Nov-10,20-Aug-12 -"First Arizona Savings, A FSB",Scottsdale,AZ,32582,No Acquirer,22-Oct-10,20-Aug-12 -Hillcrest Bank,Overland Park,KS,22173,"Hillcrest Bank, N.A.",22-Oct-10,20-Aug-12 -First Suburban National Bank,Maywood,IL,16089,Seaway Bank and Trust Company,22-Oct-10,20-Aug-12 -The First National Bank of Barnesville,Barnesville,GA,2119,United Bank,22-Oct-10,2-Nov-12 -The Gordon Bank,Gordon,GA,33904,Morris Bank,22-Oct-10,2-Nov-12 -Progress Bank of Florida,Tampa,FL,32251,Bay Cities Bank,22-Oct-10,2-Nov-12 -First Bank of Jacksonville,Jacksonville,FL,27573,Ameris Bank,22-Oct-10,2-Nov-12 -Premier Bank,Jefferson City,MO,34016,Providence Bank,15-Oct-10,20-Aug-12 -WestBridge Bank and Trust Company,Chesterfield,MO,58205,Midland States Bank,15-Oct-10,20-Aug-12 -"Security Savings Bank, F.S.B.",Olathe,KS,30898,Simmons First National Bank,15-Oct-10,20-Aug-12 -Shoreline Bank,Shoreline,WA,35250,GBC International Bank,1-Oct-10,20-Aug-12 -Wakulla Bank,Crawfordville,FL,21777,Centennial Bank,1-Oct-10,2-Nov-12 -North County Bank,Arlington,WA,35053,Whidbey Island Bank,24-Sep-10,20-Aug-12 -Haven Trust Bank Florida,Ponte Vedra Beach,FL,58308,First Southern Bank,24-Sep-10,5-Nov-12 -Maritime Savings Bank,West Allis,WI,28612,"North Shore Bank, FSB",17-Sep-10,20-Aug-12 -Bramble Savings Bank,Milford,OH,27808,Foundation Bank,17-Sep-10,20-Aug-12 -The Peoples Bank,Winder,GA,182,Community & Southern Bank,17-Sep-10,5-Nov-12 -First Commerce Community Bank,Douglasville,GA,57448,Community & Southern Bank,17-Sep-10,15-Jan-13 -Bank of Ellijay,Ellijay,GA,58197,Community & Southern Bank,17-Sep-10,15-Jan-13 -ISN Bank,Cherry Hill,NJ,57107,Customers Bank,17-Sep-10,22-Aug-12 -Horizon Bank,Bradenton,FL,35061,Bank of the Ozarks,10-Sep-10,5-Nov-12 -Sonoma Valley Bank,Sonoma,CA,27259,Westamerica Bank,20-Aug-10,12-Sep-12 -Los Padres Bank,Solvang,CA,32165,Pacific Western Bank,20-Aug-10,12-Sep-12 -Butte Community Bank,Chico,CA,33219,"Rabobank, N.A.",20-Aug-10,12-Sep-12 -Pacific State Bank,Stockton,CA,27090,"Rabobank, N.A.",20-Aug-10,12-Sep-12 -ShoreBank,Chicago,IL,15640,Urban Partnership Bank,20-Aug-10,12-Sep-12 -Imperial Savings and Loan Association,Martinsville,VA,31623,"River Community Bank, N.A.",20-Aug-10,24-Aug-12 -Independent National Bank,Ocala,FL,27344,"CenterState Bank of Florida, N.A.",20-Aug-10,5-Nov-12 -Community National Bank at Bartow,Bartow,FL,25266,"CenterState Bank of Florida, N.A.",20-Aug-10,5-Nov-12 -Palos Bank and Trust Company,Palos Heights,IL,17599,First Midwest Bank,13-Aug-10,22-Aug-12 -Ravenswood Bank,Chicago,IL,34231,Northbrook Bank & Trust Company,6-Aug-10,22-Aug-12 -LibertyBank,Eugene,OR,31964,Home Federal Bank,30-Jul-10,22-Aug-12 -The Cowlitz Bank,Longview,WA,22643,Heritage Bank,30-Jul-10,22-Aug-12 -Coastal Community Bank,Panama City Beach,FL,9619,Centennial Bank,30-Jul-10,5-Nov-12 -Bayside Savings Bank,Port Saint Joe,FL,57669,Centennial Bank,30-Jul-10,5-Nov-12 -Northwest Bank & Trust,Acworth,GA,57658,State Bank and Trust Company,30-Jul-10,5-Nov-12 -Home Valley Bank ,Cave Junction,OR,23181,South Valley Bank & Trust,23-Jul-10,12-Sep-12 -SouthwestUSA Bank ,Las Vegas,NV,35434,Plaza Bank,23-Jul-10,22-Aug-12 -Community Security Bank ,New Prague,MN,34486,Roundbank,23-Jul-10,12-Sep-12 -Thunder Bank ,Sylvan Grove,KS,10506,The Bennington State Bank,23-Jul-10,13-Sep-12 -Williamsburg First National Bank ,Kingstree,SC,17837,"First Citizens Bank and Trust Company, Inc.",23-Jul-10,5-Nov-12 -Crescent Bank and Trust Company ,Jasper,GA,27559,Renasant Bank,23-Jul-10,5-Nov-12 -Sterling Bank ,Lantana,FL,32536,IBERIABANK,23-Jul-10,5-Nov-12 -"Mainstreet Savings Bank, FSB",Hastings,MI,28136,Commercial Bank,16-Jul-10,13-Sep-12 -Olde Cypress Community Bank,Clewiston,FL,28864,"CenterState Bank of Florida, N.A.",16-Jul-10,5-Nov-12 -Turnberry Bank,Aventura,FL,32280,NAFH National Bank,16-Jul-10,5-Nov-12 -Metro Bank of Dade County,Miami,FL,25172,NAFH National Bank,16-Jul-10,5-Nov-12 -First National Bank of the South,Spartanburg,SC,35383,NAFH National Bank,16-Jul-10,5-Nov-12 -Woodlands Bank,Bluffton,SC,32571,Bank of the Ozarks,16-Jul-10,5-Nov-12 -Home National Bank,Blackwell,OK,11636,RCB Bank,9-Jul-10,10-Dec-12 -USA Bank,Port Chester,NY,58072,New Century Bank,9-Jul-10,14-Sep-12 -Ideal Federal Savings Bank,Baltimore,MD,32456,No Acquirer,9-Jul-10,14-Sep-12 -Bay National Bank,Baltimore,MD,35462,"Bay Bank, FSB",9-Jul-10,15-Jan-13 -High Desert State Bank,Albuquerque,NM,35279,First American Bank,25-Jun-10,14-Sep-12 -First National Bank,Savannah,GA,34152,"The Savannah Bank, N.A.",25-Jun-10,5-Nov-12 -Peninsula Bank,Englewood,FL,26563,"Premier American Bank, N.A.",25-Jun-10,5-Nov-12 -Nevada Security Bank,Reno,NV,57110,Umpqua Bank,18-Jun-10,23-Aug-12 -Washington First International Bank,Seattle,WA,32955,East West Bank,11-Jun-10,14-Sep-12 -TierOne Bank,Lincoln,NE,29341,Great Western Bank,4-Jun-10,14-Sep-12 -Arcola Homestead Savings Bank,Arcola,IL,31813,No Acquirer,4-Jun-10,14-Sep-12 -First National Bank,Rosedale,MS,15814,The Jefferson Bank,4-Jun-10,5-Nov-12 -Sun West Bank,Las Vegas,NV,34785,City National Bank,28-May-10,14-Sep-12 -"Granite Community Bank, NA",Granite Bay,CA,57315,Tri Counties Bank,28-May-10,14-Sep-12 -Bank of Florida - Tampa,Tampa,FL,57814,EverBank,28-May-10,5-Nov-12 -Bank of Florida - Southwest,Naples,FL,35106,EverBank,28-May-10,5-Nov-12 -Bank of Florida - Southeast,Fort Lauderdale,FL,57360,EverBank,28-May-10,5-Nov-12 -Pinehurst Bank,Saint Paul,MN,57735,Coulee Bank,21-May-10,26-Oct-12 -Midwest Bank and Trust Company,Elmwood Park,IL,18117,"FirstMerit Bank, N.A.",14-May-10,23-Aug-12 -Southwest Community Bank,Springfield,MO,34255,Simmons First National Bank,14-May-10,23-Aug-12 -New Liberty Bank,Plymouth,MI,35586,Bank of Ann Arbor,14-May-10,23-Aug-12 -Satilla Community Bank,Saint Marys,GA,35114,Ameris Bank,14-May-10,5-Nov-12 -1st Pacific Bank of California,San Diego,CA,35517,City National Bank,7-May-10,13-Dec-12 -Towne Bank of Arizona,Mesa,AZ,57697,Commerce Bank of Arizona,7-May-10,23-Aug-12 -Access Bank,Champlin,MN,16476,PrinsBank,7-May-10,23-Aug-12 -The Bank of Bonifay,Bonifay,FL,14246,First Federal Bank of Florida,7-May-10,5-Nov-12 -Frontier Bank,Everett,WA,22710,"Union Bank, N.A.",30-Apr-10,15-Jan-13 -BC National Banks,Butler,MO,17792,Community First Bank,30-Apr-10,23-Aug-12 -Champion Bank,Creve Coeur,MO,58362,BankLiberty,30-Apr-10,23-Aug-12 -CF Bancorp,Port Huron,MI,30005,First Michigan Bank,30-Apr-10,15-Jan-13 -Westernbank Puerto Rico,Mayaguez,PR,31027,Banco Popular de Puerto Rico,30-Apr-10,5-Nov-12 -R-G Premier Bank of Puerto Rico,Hato Rey,PR,32185,Scotiabank de Puerto Rico,30-Apr-10,5-Nov-12 -Eurobank,San Juan,PR,27150,Oriental Bank and Trust,30-Apr-10,5-Nov-12 -Wheatland Bank,Naperville,IL,58429,Wheaton Bank & Trust,23-Apr-10,23-Aug-12 -Peotone Bank and Trust Company,Peotone,IL,10888,First Midwest Bank,23-Apr-10,23-Aug-12 -Lincoln Park Savings Bank,Chicago,IL,30600,Northbrook Bank & Trust Company,23-Apr-10,23-Aug-12 -New Century Bank,Chicago,IL,34821,"MB Financial Bank, N.A.",23-Apr-10,23-Aug-12 -Citizens Bank and Trust Company of Chicago,Chicago,IL,34658,Republic Bank of Chicago,23-Apr-10,23-Aug-12 -Broadway Bank,Chicago,IL,22853,"MB Financial Bank, N.A.",23-Apr-10,23-Aug-12 -"Amcore Bank, National Association",Rockford,IL,3735,Harris N.A.,23-Apr-10,23-Aug-12 -City Bank,Lynnwood,WA,21521,Whidbey Island Bank,16-Apr-10,14-Sep-12 -Tamalpais Bank,San Rafael,CA,33493,"Union Bank, N.A.",16-Apr-10,23-Aug-12 -Innovative Bank,Oakland,CA,23876,Center Bank,16-Apr-10,23-Aug-12 -Butler Bank,Lowell,MA,26619,People's United Bank,16-Apr-10,23-Aug-12 -Riverside National Bank of Florida,Fort Pierce,FL,24067,"TD Bank, N.A.",16-Apr-10,5-Nov-12 -AmericanFirst Bank,Clermont,FL,57724,"TD Bank, N.A.",16-Apr-10,31-Oct-12 -First Federal Bank of North Florida,Palatka,FL,28886,"TD Bank, N.A.",16-Apr-10,15-Jan-13 -Lakeside Community Bank,Sterling Heights,MI,34878,No Acquirer,16-Apr-10,23-Aug-12 -Beach First National Bank,Myrtle Beach,SC,34242,Bank of North Carolina,9-Apr-10,5-Nov-12 -Desert Hills Bank,Phoenix,AZ,57060,New York Community Bank,26-Mar-10,23-Aug-12 -Unity National Bank,Cartersville,GA,34678,Bank of the Ozarks,26-Mar-10,14-Sep-12 -Key West Bank,Key West,FL,34684,Centennial Bank,26-Mar-10,23-Aug-12 -McIntosh Commercial Bank,Carrollton,GA,57399,CharterBank,26-Mar-10,23-Aug-12 -State Bank of Aurora,Aurora,MN,8221,Northern State Bank,19-Mar-10,23-Aug-12 -First Lowndes Bank,Fort Deposit,AL,24957,First Citizens Bank,19-Mar-10,23-Aug-12 -Bank of Hiawassee,Hiawassee,GA,10054,Citizens South Bank,19-Mar-10,23-Aug-12 -Appalachian Community Bank,Ellijay,GA,33989,Community & Southern Bank,19-Mar-10,31-Oct-12 -Advanta Bank Corp.,Draper,UT,33535,No Acquirer,19-Mar-10,14-Sep-12 -Century Security Bank,Duluth,GA,58104,Bank of Upson,19-Mar-10,23-Aug-12 -American National Bank,Parma,OH,18806,The National Bank and Trust Company,19-Mar-10,23-Aug-12 -Statewide Bank,Covington,LA,29561,Home Bank,12-Mar-10,23-Aug-12 -Old Southern Bank,Orlando,FL,58182,Centennial Bank,12-Mar-10,23-Aug-12 -The Park Avenue Bank,New York,NY,27096,Valley National Bank,12-Mar-10,23-Aug-12 -LibertyPointe Bank,New York,NY,58071,Valley National Bank,11-Mar-10,23-Aug-12 -Centennial Bank,Ogden,UT,34430,No Acquirer,5-Mar-10,14-Sep-12 -Waterfield Bank,Germantown,MD,34976,No Acquirer,5-Mar-10,23-Aug-12 -Bank of Illinois,Normal,IL,9268,Heartland Bank and Trust Company,5-Mar-10,23-Aug-12 -Sun American Bank,Boca Raton,FL,27126,First-Citizens Bank & Trust Company,5-Mar-10,23-Aug-12 -Rainier Pacific Bank,Tacoma,WA,38129,Umpqua Bank,26-Feb-10,23-Aug-12 -Carson River Community Bank,Carson City,NV,58352,Heritage Bank of Nevada,26-Feb-10,15-Jan-13 -"La Jolla Bank, FSB",La Jolla,CA,32423,"OneWest Bank, FSB",19-Feb-10,24-Aug-12 -George Washington Savings Bank,Orland Park,IL,29952,"FirstMerit Bank, N.A.",19-Feb-10,24-Aug-12 -The La Coste National Bank,La Coste,TX,3287,Community National Bank,19-Feb-10,14-Sep-12 -Marco Community Bank,Marco Island,FL,57586,Mutual of Omaha Bank,19-Feb-10,24-Aug-12 -1st American State Bank of Minnesota,Hancock,MN,15448,"Community Development Bank, FSB",5-Feb-10,24-Aug-12 -American Marine Bank,Bainbridge Island,WA,16730,Columbia State Bank,29-Jan-10,24-Aug-12 -First Regional Bank,Los Angeles,CA,23011,First-Citizens Bank & Trust Company,29-Jan-10,24-Aug-12 -Community Bank and Trust,Cornelia,GA,5702,SCBT National Association,29-Jan-10,15-Jan-13 -"Marshall Bank, N.A.",Hallock,MN,16133,United Valley Bank,29-Jan-10,23-Aug-12 -Florida Community Bank,Immokalee,FL,5672,"Premier American Bank, N.A.",29-Jan-10,15-Jan-13 -First National Bank of Georgia,Carrollton,GA,16480,Community & Southern Bank,29-Jan-10,13-Dec-12 -Columbia River Bank,The Dalles,OR,22469,Columbia State Bank,22-Jan-10,14-Sep-12 -Evergreen Bank,Seattle,WA,20501,Umpqua Bank,22-Jan-10,15-Jan-13 -Charter Bank,Santa Fe,NM,32498,Charter Bank,22-Jan-10,23-Aug-12 -Bank of Leeton,Leeton,MO,8265,"Sunflower Bank, N.A.",22-Jan-10,15-Jan-13 -Premier American Bank,Miami,FL,57147,"Premier American Bank, N.A.",22-Jan-10,13-Dec-12 -Barnes Banking Company,Kaysville,UT,1252,No Acquirer,15-Jan-10,23-Aug-12 -St. Stephen State Bank,St. Stephen,MN,17522,First State Bank of St. Joseph,15-Jan-10,23-Aug-12 -Town Community Bank & Trust,Antioch,IL,34705,First American Bank,15-Jan-10,23-Aug-12 -Horizon Bank,Bellingham,WA,22977,Washington Federal Savings and Loan Association,8-Jan-10,23-Aug-12 -"First Federal Bank of California, F.S.B.",Santa Monica,CA,28536,"OneWest Bank, FSB",18-Dec-09,23-Aug-12 -Imperial Capital Bank,La Jolla,CA,26348,City National Bank,18-Dec-09,5-Sep-12 -Independent Bankers' Bank,Springfield,IL,26820,The Independent BankersBank (TIB),18-Dec-09,23-Aug-12 -New South Federal Savings Bank,Irondale,AL,32276,Beal Bank,18-Dec-09,23-Aug-12 -Citizens State Bank,New Baltimore,MI,1006,No Acquirer,18-Dec-09,5-Nov-12 -Peoples First Community Bank,Panama City,FL,32167,Hancock Bank,18-Dec-09,5-Nov-12 -RockBridge Commercial Bank,Atlanta,GA,58315,No Acquirer,18-Dec-09,5-Nov-12 -SolutionsBank,Overland Park,KS,4731,Arvest Bank,11-Dec-09,23-Aug-12 -"Valley Capital Bank, N.A.",Mesa,AZ,58399,Enterprise Bank & Trust,11-Dec-09,23-Aug-12 -"Republic Federal Bank, N.A.",Miami,FL,22846,1st United Bank,11-Dec-09,5-Nov-12 -Greater Atlantic Bank,Reston,VA,32583,Sonabank,4-Dec-09,5-Nov-12 -Benchmark Bank,Aurora,IL,10440,"MB Financial Bank, N.A.",4-Dec-09,23-Aug-12 -AmTrust Bank,Cleveland,OH,29776,New York Community Bank,4-Dec-09,5-Nov-12 -The Tattnall Bank,Reidsville,GA,12080,Heritage Bank of the South,4-Dec-09,5-Nov-12 -First Security National Bank,Norcross,GA,26290,State Bank and Trust Company,4-Dec-09,5-Nov-12 -The Buckhead Community Bank,Atlanta,GA,34663,State Bank and Trust Company,4-Dec-09,5-Nov-12 -Commerce Bank of Southwest Florida,Fort Myers,FL,58016,Central Bank,20-Nov-09,5-Nov-12 -Pacific Coast National Bank,San Clemente,CA,57914,Sunwest Bank,13-Nov-09,22-Aug-12 -Orion Bank,Naples,FL,22427,IBERIABANK,13-Nov-09,5-Nov-12 -"Century Bank, F.S.B.",Sarasota,FL,32267,IBERIABANK,13-Nov-09,22-Aug-12 -United Commercial Bank,San Francisco,CA,32469,East West Bank,6-Nov-09,5-Nov-12 -Gateway Bank of St. Louis,St. Louis,MO,19450,Central Bank of Kansas City,6-Nov-09,22-Aug-12 -Prosperan Bank,Oakdale,MN,35074,"Alerus Financial, N.A.",6-Nov-09,22-Aug-12 -Home Federal Savings Bank,Detroit,MI,30329,Liberty Bank and Trust Company,6-Nov-09,22-Aug-12 -United Security Bank,Sparta,GA,22286,Ameris Bank,6-Nov-09,15-Jan-13 -North Houston Bank,Houston,TX,18776,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -Madisonville State Bank,Madisonville,TX,33782,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -Citizens National Bank,Teague,TX,25222,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -Park National Bank,Chicago,IL,11677,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -Pacific National Bank,San Francisco,CA,30006,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -California National Bank,Los Angeles,CA,34659,U.S. Bank N.A.,30-Oct-09,5-Sep-12 -San Diego National Bank,San Diego,CA,23594,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -Community Bank of Lemont,Lemont,IL,35291,U.S. Bank N.A.,30-Oct-09,15-Jan-13 -"Bank USA, N.A.",Phoenix,AZ,32218,U.S. Bank N.A.,30-Oct-09,22-Aug-12 -First DuPage Bank,Westmont,IL,35038,First Midwest Bank,23-Oct-09,22-Aug-12 -Riverview Community Bank,Otsego,MN,57525,Central Bank,23-Oct-09,22-Aug-12 -Bank of Elmwood,Racine,WI,18321,Tri City National Bank,23-Oct-09,22-Aug-12 -Flagship National Bank,Bradenton,FL,35044,First Federal Bank of Florida,23-Oct-09,22-Aug-12 -Hillcrest Bank Florida,Naples,FL,58336,Stonegate Bank,23-Oct-09,22-Aug-12 -American United Bank,Lawrenceville,GA,57794,Ameris Bank,23-Oct-09,5-Sep-12 -Partners Bank,Naples,FL,57959,Stonegate Bank,23-Oct-09,15-Jan-13 -San Joaquin Bank,Bakersfield,CA,23266,Citizens Business Bank,16-Oct-09,22-Aug-12 -Southern Colorado National Bank,Pueblo,CO,57263,Legacy Bank,2-Oct-09,5-Sep-12 -Jennings State Bank,Spring Grove,MN,11416,Central Bank,2-Oct-09,21-Aug-12 -Warren Bank,Warren,MI,34824,The Huntington National Bank,2-Oct-09,21-Aug-12 -Georgian Bank,Atlanta,GA,57151,"First Citizens Bank and Trust Company, Inc.",25-Sep-09,21-Aug-12 -"Irwin Union Bank, F.S.B.",Louisville,KY,57068,"First Financial Bank, N.A.",18-Sep-09,5-Sep-12 -Irwin Union Bank and Trust Company,Columbus,IN,10100,"First Financial Bank, N.A.",18-Sep-09,21-Aug-12 -Venture Bank,Lacey,WA,22868,First-Citizens Bank & Trust Company,11-Sep-09,21-Aug-12 -Brickwell Community Bank,Woodbury,MN,57736,CorTrust Bank N.A.,11-Sep-09,15-Jan-13 -"Corus Bank, N.A.",Chicago,IL,13693,"MB Financial Bank, N.A.",11-Sep-09,21-Aug-12 -First State Bank,Flagstaff,AZ,34875,Sunwest Bank,4-Sep-09,15-Jan-13 -Platinum Community Bank,Rolling Meadows,IL,35030,No Acquirer,4-Sep-09,21-Aug-12 -Vantus Bank,Sioux City,IA,27732,Great Southern Bank,4-Sep-09,21-Aug-12 -InBank,Oak Forest,IL,20203,"MB Financial Bank, N.A.",4-Sep-09,21-Aug-12 -First Bank of Kansas City,Kansas City,MO,25231,Great American Bank,4-Sep-09,21-Aug-12 -Affinity Bank,Ventura,CA,27197,Pacific Western Bank,28-Aug-09,21-Aug-12 -Mainstreet Bank,Forest Lake,MN,1909,Central Bank,28-Aug-09,21-Aug-12 -Bradford Bank,Baltimore,MD,28312,Manufacturers and Traders Trust Company (M&T Bank),28-Aug-09,15-Jan-13 -Guaranty Bank,Austin,TX,32618,BBVA Compass,21-Aug-09,21-Aug-12 -CapitalSouth Bank,Birmingham,AL,22130,IBERIABANK,21-Aug-09,15-Jan-13 -First Coweta Bank,Newnan,GA,57702,United Bank,21-Aug-09,15-Jan-13 -ebank,Atlanta,GA,34682,"Stearns Bank, N.A.",21-Aug-09,21-Aug-12 -Community Bank of Nevada,Las Vegas,NV,34043,No Acquirer,14-Aug-09,21-Aug-12 -Community Bank of Arizona,Phoenix,AZ,57645,MidFirst Bank,14-Aug-09,21-Aug-12 -"Union Bank, National Association",Gilbert,AZ,34485,MidFirst Bank,14-Aug-09,21-Aug-12 -Colonial Bank,Montgomery,AL,9609,"Branch Banking & Trust Company, (BB&T)",14-Aug-09,5-Sep-12 -Dwelling House Savings and Loan Association,Pittsburgh,PA,31559,"PNC Bank, N.A.",14-Aug-09,15-Jan-13 -Community First Bank,Prineville,OR,23268,Home Federal Bank,7-Aug-09,15-Jan-13 -Community National Bank of Sarasota County,Venice,FL,27183,"Stearns Bank, N.A.",7-Aug-09,20-Aug-12 -First State Bank,Sarasota,FL,27364,"Stearns Bank, N.A.",7-Aug-09,20-Aug-12 -Mutual Bank,Harvey,IL,18659,United Central Bank,31-Jul-09,20-Aug-12 -First BankAmericano,Elizabeth,NJ,34270,Crown Bank,31-Jul-09,20-Aug-12 -Peoples Community Bank,West Chester,OH,32288,"First Financial Bank, N.A.",31-Jul-09,20-Aug-12 -Integrity Bank,Jupiter,FL,57604,Stonegate Bank,31-Jul-09,20-Aug-12 -First State Bank of Altus,Altus,OK,9873,Herring Bank,31-Jul-09,20-Aug-12 -Security Bank of Jones County,Gray,GA,8486,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Security Bank of Houston County,Perry,GA,27048,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Security Bank of Bibb County,Macon,GA,27367,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Security Bank of North Metro,Woodstock,GA,57105,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Security Bank of North Fulton,Alpharetta,GA,57430,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Security Bank of Gwinnett County,Suwanee,GA,57346,State Bank and Trust Company,24-Jul-09,20-Aug-12 -Waterford Village Bank,Williamsville,NY,58065,"Evans Bank, N.A.",24-Jul-09,20-Aug-12 -Temecula Valley Bank,Temecula,CA,34341,First-Citizens Bank & Trust Company,17-Jul-09,20-Aug-12 -Vineyard Bank,Rancho Cucamonga,CA,23556,California Bank & Trust,17-Jul-09,20-Aug-12 -BankFirst,Sioux Falls,SD,34103,"Alerus Financial, N.A.",17-Jul-09,20-Aug-12 -First Piedmont Bank,Winder,GA,34594,First American Bank and Trust Company,17-Jul-09,15-Jan-13 -Bank of Wyoming,Thermopolis,WY,22754,Central Bank & Trust,10-Jul-09,20-Aug-12 -Founders Bank,Worth,IL,18390,The PrivateBank and Trust Company,2-Jul-09,20-Aug-12 -Millennium State Bank of Texas,Dallas,TX,57667,State Bank of Texas,2-Jul-09,26-Oct-12 -First National Bank of Danville,Danville,IL,3644,"First Financial Bank, N.A.",2-Jul-09,20-Aug-12 -Elizabeth State Bank,Elizabeth,IL,9262,Galena State Bank and Trust Company,2-Jul-09,20-Aug-12 -Rock River Bank,Oregon,IL,15302,The Harvard State Bank,2-Jul-09,20-Aug-12 -First State Bank of Winchester,Winchester,IL,11710,The First National Bank of Beardstown,2-Jul-09,20-Aug-12 -John Warner Bank,Clinton,IL,12093,State Bank of Lincoln,2-Jul-09,20-Aug-12 -Mirae Bank,Los Angeles,CA,57332,Wilshire State Bank,26-Jun-09,20-Aug-12 -MetroPacific Bank,Irvine,CA,57893,Sunwest Bank,26-Jun-09,20-Aug-12 -Horizon Bank,Pine City,MN,9744,"Stearns Bank, N.A.",26-Jun-09,20-Aug-12 -Neighborhood Community Bank,Newnan,GA,35285,CharterBank,26-Jun-09,20-Aug-12 -Community Bank of West Georgia,Villa Rica,GA,57436,No Acquirer,26-Jun-09,17-Aug-12 -First National Bank of Anthony,Anthony,KS,4614,Bank of Kansas,19-Jun-09,17-Aug-12 -Cooperative Bank,Wilmington,NC,27837,First Bank,19-Jun-09,17-Aug-12 -Southern Community Bank,Fayetteville,GA,35251,United Community Bank,19-Jun-09,17-Aug-12 -Bank of Lincolnwood,Lincolnwood,IL,17309,Republic Bank of Chicago,5-Jun-09,17-Aug-12 -Citizens National Bank,Macomb,IL,5757,Morton Community Bank,22-May-09,4-Sep-12 -Strategic Capital Bank,Champaign,IL,35175,Midland States Bank,22-May-09,4-Sep-12 -"BankUnited, FSB",Coral Gables,FL,32247,BankUnited,21-May-09,17-Aug-12 -Westsound Bank,Bremerton,WA,34843,Kitsap Bank,8-May-09,4-Sep-12 -America West Bank,Layton,UT,35461,Cache Valley Bank,1-May-09,17-Aug-12 -Citizens Community Bank,Ridgewood,NJ,57563,North Jersey Community Bank,1-May-09,4-Sep-12 -"Silverton Bank, NA",Atlanta,GA,26535,No Acquirer,1-May-09,17-Aug-12 -First Bank of Idaho,Ketchum,ID,34396,"U.S. Bank, N.A.",24-Apr-09,17-Aug-12 -First Bank of Beverly Hills,Calabasas,CA,32069,No Acquirer,24-Apr-09,4-Sep-12 -Michigan Heritage Bank,Farmington Hills,MI,34369,Level One Bank,24-Apr-09,17-Aug-12 -American Southern Bank,Kennesaw,GA,57943,Bank of North Georgia,24-Apr-09,17-Aug-12 -Great Basin Bank of Nevada,Elko,NV,33824,Nevada State Bank,17-Apr-09,4-Sep-12 -American Sterling Bank,Sugar Creek,MO,8266,Metcalf Bank,17-Apr-09,31-Aug-12 -New Frontier Bank,Greeley,CO,34881,No Acquirer,10-Apr-09,4-Sep-12 -Cape Fear Bank,Wilmington,NC,34639,First Federal Savings and Loan Association,10-Apr-09,17-Aug-12 -Omni National Bank,Atlanta,GA,22238,No Acquirer,27-Mar-09,17-Aug-12 -"TeamBank, NA",Paola,KS,4754,Great Southern Bank,20-Mar-09,17-Aug-12 -Colorado National Bank,Colorado Springs,CO,18896,Herring Bank,20-Mar-09,17-Aug-12 -FirstCity Bank,Stockbridge,GA,18243,No Acquirer,20-Mar-09,17-Aug-12 -Freedom Bank of Georgia,Commerce,GA,57558,Northeast Georgia Bank,6-Mar-09,17-Aug-12 -Security Savings Bank,Henderson,NV,34820,Bank of Nevada,27-Feb-09,7-Sep-12 -Heritage Community Bank,Glenwood,IL,20078,"MB Financial Bank, N.A.",27-Feb-09,17-Aug-12 -Silver Falls Bank,Silverton,OR,35399,Citizens Bank,20-Feb-09,17-Aug-12 -Pinnacle Bank of Oregon,Beaverton,OR,57342,Washington Trust Bank of Spokane,13-Feb-09,17-Aug-12 -Corn Belt Bank & Trust Co.,Pittsfield,IL,16500,The Carlinville National Bank,13-Feb-09,17-Aug-12 -Riverside Bank of the Gulf Coast,Cape Coral,FL,34563,TIB Bank,13-Feb-09,17-Aug-12 -Sherman County Bank,Loup City,NE,5431,Heritage Bank,13-Feb-09,17-Aug-12 -County Bank,Merced,CA,22574,Westamerica Bank,6-Feb-09,4-Sep-12 -Alliance Bank,Culver City,CA,23124,California Bank & Trust,6-Feb-09,16-Aug-12 -FirstBank Financial Services,McDonough,GA,57017,Regions Bank,6-Feb-09,16-Aug-12 -Ocala National Bank,Ocala,FL,26538,"CenterState Bank of Florida, N.A.",30-Jan-09,4-Sep-12 -Suburban FSB,Crofton,MD,30763,Bank of Essex,30-Jan-09,16-Aug-12 -MagnetBank,Salt Lake City,UT,58001,No Acquirer,30-Jan-09,16-Aug-12 -1st Centennial Bank,Redlands,CA,33025,First California Bank,23-Jan-09,16-Aug-12 -Bank of Clark County,Vancouver,WA,34959,Umpqua Bank,16-Jan-09,16-Aug-12 -National Bank of Commerce,Berkeley,IL,19733,Republic Bank of Chicago,16-Jan-09,16-Aug-12 -Sanderson State Bank,Sanderson,TX,11568,The Pecos County State Bank,12-Dec-08,4-Sep-12 -Haven Trust Bank,Duluth,GA,35379,"Branch Banking & Trust Company, (BB&T)",12-Dec-08,16-Aug-12 -First Georgia Community Bank,Jackson,GA,34301,United Bank,5-Dec-08,16-Aug-12 -PFF Bank & Trust ,Pomona,CA,28344,"U.S. Bank, N.A.",21-Nov-08,4-Jan-13 -Downey Savings & Loan,Newport Beach,CA,30968,"U.S. Bank, N.A.",21-Nov-08,4-Jan-13 -Community Bank,Loganville,GA,16490,Bank of Essex,21-Nov-08,4-Sep-12 -Security Pacific Bank,Los Angeles,CA,23595,Pacific Western Bank,7-Nov-08,28-Aug-12 -"Franklin Bank, SSB",Houston,TX,26870,Prosperity Bank,7-Nov-08,16-Aug-12 -Freedom Bank,Bradenton,FL,57930,Fifth Third Bank,31-Oct-08,16-Aug-12 -Alpha Bank & Trust,Alpharetta,GA,58241,"Stearns Bank, N.A.",24-Oct-08,16-Aug-12 -Meridian Bank,Eldred,IL,13789,National Bank,10-Oct-08,31-May-12 -Main Street Bank,Northville,MI,57654,Monroe Bank & Trust,10-Oct-08,16-Aug-12 -Washington Mutual Bank,Henderson,NV,32633,JP Morgan Chase Bank,25-Sep-08,16-Aug-12 -Ameribank,Northfork,WV,6782,The Citizens Savings Bank,19-Sep-08,16-Aug-12 -Silver State Bank,Henderson,NV,34194,Nevada State Bank,5-Sep-08,16-Aug-12 -Integrity Bank,Alpharetta,GA,35469,Regions Bank,29-Aug-08,16-Aug-12 -Columbian Bank & Trust,Topeka,KS,22728,Citizens Bank & Trust,22-Aug-08,16-Aug-12 -First Priority Bank,Bradenton,FL,57523,SunTrust Bank,1-Aug-08,16-Aug-12 -"First Heritage Bank, NA",Newport Beach,CA,57961,Mutual of Omaha Bank,25-Jul-08,28-Aug-12 -First National Bank of Nevada,Reno,NV,27011,Mutual of Omaha Bank,25-Jul-08,28-Aug-12 -IndyMac Bank,Pasadena,CA,29730,"OneWest Bank, FSB",11-Jul-08,28-Aug-12 -"First Integrity Bank, NA",Staples,MN,12736,First International Bank and Trust,30-May-08,28-Aug-12 -"ANB Financial, NA",Bentonville,AR,33901,Pulaski Bank and Trust Company,9-May-08,28-Aug-12 -Hume Bank,Hume,MO,1971,Security Bank,7-Mar-08,28-Aug-12 -Douglass National Bank,Kansas City,MO,24660,Liberty Bank and Trust Company,25-Jan-08,26-Oct-12 -Miami Valley Bank,Lakeview,OH,16848,The Citizens Banking Company,4-Oct-07,28-Aug-12 -NetBank,Alpharetta,GA,32575,ING DIRECT,28-Sep-07,28-Aug-12 -Metropolitan Savings Bank,Pittsburgh,PA,35353,Allegheny Valley Bank of Pittsburgh,2-Feb-07,27-Oct-10 -Bank of Ephraim,Ephraim,UT,1249,Far West Bank,25-Jun-04,9-Apr-08 -Reliance Bank,White Plains,NY,26778,Union State Bank,19-Mar-04,9-Apr-08 -Guaranty National Bank of Tallahassee,Tallahassee,FL,26838,Hancock Bank of Florida,12-Mar-04,5-Jun-12 -Dollar Savings Bank,Newark,NJ,31330,No Acquirer,14-Feb-04,9-Apr-08 -Pulaski Savings Bank,Philadelphia,PA,27203,Earthstar Bank,14-Nov-03,22-Jul-05 -First National Bank of Blanchardville,Blanchardville,WI,11639,The Park Bank,9-May-03,5-Jun-12 -Southern Pacific Bank,Torrance,CA,27094,Beal Bank,7-Feb-03,20-Oct-08 -Farmers Bank of Cheneyville,Cheneyville,LA,16445,Sabine State Bank & Trust,17-Dec-02,20-Oct-04 -Bank of Alamo,Alamo,TN,9961,No Acquirer,8-Nov-02,18-Mar-05 -AmTrade International Bank,Atlanta,GA,33784,No Acquirer,30-Sep-02,11-Sep-06 -Universal Federal Savings Bank,Chicago,IL,29355,Chicago Community Bank,27-Jun-02,9-Apr-08 -Connecticut Bank of Commerce,Stamford,CT,19183,Hudson United Bank,26-Jun-02,14-Feb-12 -New Century Bank,Shelby Township,MI,34979,No Acquirer,28-Mar-02,18-Mar-05 -Net 1st National Bank,Boca Raton,FL,26652,Bank Leumi USA,1-Mar-02,9-Apr-08 -"NextBank, NA",Phoenix,AZ,22314,No Acquirer,7-Feb-02,27-Aug-10 -Oakwood Deposit Bank Co.,Oakwood,OH,8966,The State Bank & Trust Company,1-Feb-02,25-Oct-12 -Bank of Sierra Blanca,Sierra Blanca,TX,22002,The Security State Bank of Pecos,18-Jan-02,6-Nov-03 -"Hamilton Bank, NA",Miami,FL,24382,Israel Discount Bank of New York,11-Jan-02,5-Jun-12 -Sinclair National Bank,Gravette,AR,34248,Delta Trust & Bank,7-Sep-01,10-Feb-04 -"Superior Bank, FSB",Hinsdale,IL,32646,"Superior Federal, FSB",27-Jul-01,5-Jun-12 -Malta National Bank,Malta,OH,6629,North Valley Bank,3-May-01,18-Nov-02 -First Alliance Bank & Trust Co.,Manchester,NH,34264,Southern New Hampshire Bank & Trust,2-Feb-01,18-Feb-03 -National State Bank of Metropolis,Metropolis,IL,3815,Banterra Bank of Marion,14-Dec-00,17-Mar-05 -Bank of Honolulu,Honolulu,HI,21029,Bank of the Orient,13-Oct-00,17-Mar-05 diff --git a/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json b/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json deleted file mode 100644 index b1b717999..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/charrefs-full.json +++ /dev/null @@ -1,2234 +0,0 @@ -{ -"items":[ - {"key": "Á", "characters": "\u00C1" }, - {"key": "Á", "characters": "\u00C1" }, - {"key": "á", "characters": "\u00E1" }, - {"key": "á", "characters": "\u00E1" }, - {"key": "Ă", "characters": "\u0102" }, - {"key": "ă", "characters": "\u0103" }, - {"key": "∾", "characters": "\u223E" }, - {"key": "∿", "characters": "\u223F" }, - {"key": "∾̳", "characters": "\u223E\u0333" }, - {"key": "Â", "characters": "\u00C2" }, - {"key": "Â", "characters": "\u00C2" }, - {"key": "â", "characters": "\u00E2" }, - {"key": "â", "characters": "\u00E2" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "А", "characters": "\u0410" }, - {"key": "а", "characters": "\u0430" }, - {"key": "Æ", "characters": "\u00C6" }, - {"key": "Æ", "characters": "\u00C6" }, - {"key": "æ", "characters": "\u00E6" }, - {"key": "æ", "characters": "\u00E6" }, - {"key": "⁡", "characters": "\u2061" }, - {"key": "𝔄", "characters": "\uD835\uDD04" }, - {"key": "𝔞", "characters": "\uD835\uDD1E" }, - {"key": "À", "characters": "\u00C0" }, - {"key": "À", "characters": "\u00C0" }, - {"key": "à", "characters": "\u00E0" }, - {"key": "à", "characters": "\u00E0" }, - {"key": "ℵ", "characters": "\u2135" }, - {"key": "ℵ", "characters": "\u2135" }, - {"key": "Α", "characters": "\u0391" }, - {"key": "α", "characters": "\u03B1" }, - {"key": "Ā", "characters": "\u0100" }, - {"key": "ā", "characters": "\u0101" }, - {"key": "⨿", "characters": "\u2A3F" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "⩕", "characters": "\u2A55" }, - {"key": "⩓", "characters": "\u2A53" }, - {"key": "∧", "characters": "\u2227" }, - {"key": "⩜", "characters": "\u2A5C" }, - {"key": "⩘", "characters": "\u2A58" }, - {"key": "⩚", "characters": "\u2A5A" }, - {"key": "∠", "characters": "\u2220" }, - {"key": "⦤", "characters": "\u29A4" }, - {"key": "∠", "characters": "\u2220" }, - {"key": "⦨", "characters": "\u29A8" }, - {"key": "⦩", "characters": "\u29A9" }, - {"key": "⦪", "characters": "\u29AA" }, - {"key": "⦫", "characters": "\u29AB" }, - {"key": "⦬", "characters": "\u29AC" }, - {"key": "⦭", "characters": "\u29AD" }, - {"key": "⦮", "characters": "\u29AE" }, - {"key": "⦯", "characters": "\u29AF" }, - {"key": "∡", "characters": "\u2221" }, - {"key": "∟", "characters": "\u221F" }, - {"key": "⊾", "characters": "\u22BE" }, - {"key": "⦝", "characters": "\u299D" }, - {"key": "∢", "characters": "\u2222" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "⍼", "characters": "\u237C" }, - {"key": "Ą", "characters": "\u0104" }, - {"key": "ą", "characters": "\u0105" }, - {"key": "𝔸", "characters": "\uD835\uDD38" }, - {"key": "𝕒", "characters": "\uD835\uDD52" }, - {"key": "⩯", "characters": "\u2A6F" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "⩰", "characters": "\u2A70" }, - {"key": "≊", "characters": "\u224A" }, - {"key": "≋", "characters": "\u224B" }, - {"key": "'", "characters": "\u0027" }, - {"key": "⁡", "characters": "\u2061" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "≊", "characters": "\u224A" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "å", "characters": "\u00E5" }, - {"key": "å", "characters": "\u00E5" }, - {"key": "𝒜", "characters": "\uD835\uDC9C" }, - {"key": "𝒶", "characters": "\uD835\uDCB6" }, - {"key": "≔", "characters": "\u2254" }, - {"key": "*", "characters": "\u002A" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "≍", "characters": "\u224D" }, - {"key": "Ã", "characters": "\u00C3" }, - {"key": "Ã", "characters": "\u00C3" }, - {"key": "ã", "characters": "\u00E3" }, - {"key": "ã", "characters": "\u00E3" }, - {"key": "Ä", "characters": "\u00C4" }, - {"key": "Ä", "characters": "\u00C4" }, - {"key": "ä", "characters": "\u00E4" }, - {"key": "ä", "characters": "\u00E4" }, - {"key": "∳", "characters": "\u2233" }, - {"key": "⨑", "characters": "\u2A11" }, - {"key": "≌", "characters": "\u224C" }, - {"key": "϶", "characters": "\u03F6" }, - {"key": "‵", "characters": "\u2035" }, - {"key": "∽", "characters": "\u223D" }, - {"key": "⋍", "characters": "\u22CD" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "⫧", "characters": "\u2AE7" }, - {"key": "⊽", "characters": "\u22BD" }, - {"key": "⌅", "characters": "\u2305" }, - {"key": "⌆", "characters": "\u2306" }, - {"key": "⌅", "characters": "\u2305" }, - {"key": "⎵", "characters": "\u23B5" }, - {"key": "⎶", "characters": "\u23B6" }, - {"key": "≌", "characters": "\u224C" }, - {"key": "Б", "characters": "\u0411" }, - {"key": "б", "characters": "\u0431" }, - {"key": "„", "characters": "\u201E" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "⦰", "characters": "\u29B0" }, - {"key": "϶", "characters": "\u03F6" }, - {"key": "ℬ", "characters": "\u212C" }, - {"key": "ℬ", "characters": "\u212C" }, - {"key": "Β", "characters": "\u0392" }, - {"key": "β", "characters": "\u03B2" }, - {"key": "ℶ", "characters": "\u2136" }, - {"key": "≬", "characters": "\u226C" }, - {"key": "𝔅", "characters": "\uD835\uDD05" }, - {"key": "𝔟", "characters": "\uD835\uDD1F" }, - {"key": "⋂", "characters": "\u22C2" }, - {"key": "◯", "characters": "\u25EF" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "⨀", "characters": "\u2A00" }, - {"key": "⨁", "characters": "\u2A01" }, - {"key": "⨂", "characters": "\u2A02" }, - {"key": "⨆", "characters": "\u2A06" }, - {"key": "★", "characters": "\u2605" }, - {"key": "▽", "characters": "\u25BD" }, - {"key": "△", "characters": "\u25B3" }, - {"key": "⨄", "characters": "\u2A04" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "⤍", "characters": "\u290D" }, - {"key": "⧫", "characters": "\u29EB" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "▴", "characters": "\u25B4" }, - {"key": "▾", "characters": "\u25BE" }, - {"key": "◂", "characters": "\u25C2" }, - {"key": "▸", "characters": "\u25B8" }, - {"key": "␣", "characters": "\u2423" }, - {"key": "▒", "characters": "\u2592" }, - {"key": "░", "characters": "\u2591" }, - {"key": "▓", "characters": "\u2593" }, - {"key": "█", "characters": "\u2588" }, - {"key": "=⃥", "characters": "\u003D\u20E5" }, - {"key": "≡⃥", "characters": "\u2261\u20E5" }, - {"key": "⫭", "characters": "\u2AED" }, - {"key": "⌐", "characters": "\u2310" }, - {"key": "𝔹", "characters": "\uD835\uDD39" }, - {"key": "𝕓", "characters": "\uD835\uDD53" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⋈", "characters": "\u22C8" }, - {"key": "⧉", "characters": "\u29C9" }, - {"key": "┐", "characters": "\u2510" }, - {"key": "╕", "characters": "\u2555" }, - {"key": "╖", "characters": "\u2556" }, - {"key": "╗", "characters": "\u2557" }, - {"key": "┌", "characters": "\u250C" }, - {"key": "╒", "characters": "\u2552" }, - {"key": "╓", "characters": "\u2553" }, - {"key": "╔", "characters": "\u2554" }, - {"key": "─", "characters": "\u2500" }, - {"key": "═", "characters": "\u2550" }, - {"key": "┬", "characters": "\u252C" }, - {"key": "╤", "characters": "\u2564" }, - {"key": "╥", "characters": "\u2565" }, - {"key": "╦", "characters": "\u2566" }, - {"key": "┴", "characters": "\u2534" }, - {"key": "╧", "characters": "\u2567" }, - {"key": "╨", "characters": "\u2568" }, - {"key": "╩", "characters": "\u2569" }, - {"key": "⊟", "characters": "\u229F" }, - {"key": "⊞", "characters": "\u229E" }, - {"key": "⊠", "characters": "\u22A0" }, - {"key": "┘", "characters": "\u2518" }, - {"key": "╛", "characters": "\u255B" }, - {"key": "╜", "characters": "\u255C" }, - {"key": "╝", "characters": "\u255D" }, - {"key": "└", "characters": "\u2514" }, - {"key": "╘", "characters": "\u2558" }, - {"key": "╙", "characters": "\u2559" }, - {"key": "╚", "characters": "\u255A" }, - {"key": "│", "characters": "\u2502" }, - {"key": "║", "characters": "\u2551" }, - {"key": "┼", "characters": "\u253C" }, - {"key": "╪", "characters": "\u256A" }, - {"key": "╫", "characters": "\u256B" }, - {"key": "╬", "characters": "\u256C" }, - {"key": "┤", "characters": "\u2524" }, - {"key": "╡", "characters": "\u2561" }, - {"key": "╢", "characters": "\u2562" }, - {"key": "╣", "characters": "\u2563" }, - {"key": "├", "characters": "\u251C" }, - {"key": "╞", "characters": "\u255E" }, - {"key": "╟", "characters": "\u255F" }, - {"key": "╠", "characters": "\u2560" }, - {"key": "‵", "characters": "\u2035" }, - {"key": "˘", "characters": "\u02D8" }, - {"key": "˘", "characters": "\u02D8" }, - {"key": "¦", "characters": "\u00A6" }, - {"key": "¦", "characters": "\u00A6" }, - {"key": "𝒷", "characters": "\uD835\uDCB7" }, - {"key": "ℬ", "characters": "\u212C" }, - {"key": "⁏", "characters": "\u204F" }, - {"key": "∽", "characters": "\u223D" }, - {"key": "⋍", "characters": "\u22CD" }, - {"key": "⧅", "characters": "\u29C5" }, - {"key": "\", "characters": "\u005C" }, - {"key": "⟈", "characters": "\u27C8" }, - {"key": "•", "characters": "\u2022" }, - {"key": "•", "characters": "\u2022" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "⪮", "characters": "\u2AAE" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "Ć", "characters": "\u0106" }, - {"key": "ć", "characters": "\u0107" }, - {"key": "⩄", "characters": "\u2A44" }, - {"key": "⩉", "characters": "\u2A49" }, - {"key": "⩋", "characters": "\u2A4B" }, - {"key": "∩", "characters": "\u2229" }, - {"key": "⋒", "characters": "\u22D2" }, - {"key": "⩇", "characters": "\u2A47" }, - {"key": "⩀", "characters": "\u2A40" }, - {"key": "ⅅ", "characters": "\u2145" }, - {"key": "∩︀", "characters": "\u2229\uFE00" }, - {"key": "⁁", "characters": "\u2041" }, - {"key": "ˇ", "characters": "\u02C7" }, - {"key": "ℭ", "characters": "\u212D" }, - {"key": "⩍", "characters": "\u2A4D" }, - {"key": "Č", "characters": "\u010C" }, - {"key": "č", "characters": "\u010D" }, - {"key": "Ç", "characters": "\u00C7" }, - {"key": "Ç", "characters": "\u00C7" }, - {"key": "ç", "characters": "\u00E7" }, - {"key": "ç", "characters": "\u00E7" }, - {"key": "Ĉ", "characters": "\u0108" }, - {"key": "ĉ", "characters": "\u0109" }, - {"key": "∰", "characters": "\u2230" }, - {"key": "⩌", "characters": "\u2A4C" }, - {"key": "⩐", "characters": "\u2A50" }, - {"key": "Ċ", "characters": "\u010A" }, - {"key": "ċ", "characters": "\u010B" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "⦲", "characters": "\u29B2" }, - {"key": "¢", "characters": "\u00A2" }, - {"key": "¢", "characters": "\u00A2" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "𝔠", "characters": "\uD835\uDD20" }, - {"key": "ℭ", "characters": "\u212D" }, - {"key": "Ч", "characters": "\u0427" }, - {"key": "ч", "characters": "\u0447" }, - {"key": "✓", "characters": "\u2713" }, - {"key": "✓", "characters": "\u2713" }, - {"key": "Χ", "characters": "\u03A7" }, - {"key": "χ", "characters": "\u03C7" }, - {"key": "ˆ", "characters": "\u02C6" }, - {"key": "≗", "characters": "\u2257" }, - {"key": "↺", "characters": "\u21BA" }, - {"key": "↻", "characters": "\u21BB" }, - {"key": "⊛", "characters": "\u229B" }, - {"key": "⊚", "characters": "\u229A" }, - {"key": "⊝", "characters": "\u229D" }, - {"key": "⊙", "characters": "\u2299" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "Ⓢ", "characters": "\u24C8" }, - {"key": "⊖", "characters": "\u2296" }, - {"key": "⊕", "characters": "\u2295" }, - {"key": "⊗", "characters": "\u2297" }, - {"key": "○", "characters": "\u25CB" }, - {"key": "⧃", "characters": "\u29C3" }, - {"key": "≗", "characters": "\u2257" }, - {"key": "⨐", "characters": "\u2A10" }, - {"key": "⫯", "characters": "\u2AEF" }, - {"key": "⧂", "characters": "\u29C2" }, - {"key": "∲", "characters": "\u2232" }, - {"key": "”", "characters": "\u201D" }, - {"key": "’", "characters": "\u2019" }, - {"key": "♣", "characters": "\u2663" }, - {"key": "♣", "characters": "\u2663" }, - {"key": ":", "characters": "\u003A" }, - {"key": "∷", "characters": "\u2237" }, - {"key": "⩴", "characters": "\u2A74" }, - {"key": "≔", "characters": "\u2254" }, - {"key": "≔", "characters": "\u2254" }, - {"key": ",", "characters": "\u002C" }, - {"key": "@", "characters": "\u0040" }, - {"key": "∁", "characters": "\u2201" }, - {"key": "∘", "characters": "\u2218" }, - {"key": "∁", "characters": "\u2201" }, - {"key": "ℂ", "characters": "\u2102" }, - {"key": "≅", "characters": "\u2245" }, - {"key": "⩭", "characters": "\u2A6D" }, - {"key": "≡", "characters": "\u2261" }, - {"key": "∮", "characters": "\u222E" }, - {"key": "∯", "characters": "\u222F" }, - {"key": "∮", "characters": "\u222E" }, - {"key": "𝕔", "characters": "\uD835\uDD54" }, - {"key": "ℂ", "characters": "\u2102" }, - {"key": "∐", "characters": "\u2210" }, - {"key": "∐", "characters": "\u2210" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "℗", "characters": "\u2117" }, - {"key": "∳", "characters": "\u2233" }, - {"key": "↵", "characters": "\u21B5" }, - {"key": "✗", "characters": "\u2717" }, - {"key": "⨯", "characters": "\u2A2F" }, - {"key": "𝒞", "characters": "\uD835\uDC9E" }, - {"key": "𝒸", "characters": "\uD835\uDCB8" }, - {"key": "⫏", "characters": "\u2ACF" }, - {"key": "⫑", "characters": "\u2AD1" }, - {"key": "⫐", "characters": "\u2AD0" }, - {"key": "⫒", "characters": "\u2AD2" }, - {"key": "⋯", "characters": "\u22EF" }, - {"key": "⤸", "characters": "\u2938" }, - {"key": "⤵", "characters": "\u2935" }, - {"key": "⋞", "characters": "\u22DE" }, - {"key": "⋟", "characters": "\u22DF" }, - {"key": "↶", "characters": "\u21B6" }, - {"key": "⤽", "characters": "\u293D" }, - {"key": "⩈", "characters": "\u2A48" }, - {"key": "⩆", "characters": "\u2A46" }, - {"key": "≍", "characters": "\u224D" }, - {"key": "∪", "characters": "\u222A" }, - {"key": "⋓", "characters": "\u22D3" }, - {"key": "⩊", "characters": "\u2A4A" }, - {"key": "⊍", "characters": "\u228D" }, - {"key": "⩅", "characters": "\u2A45" }, - {"key": "∪︀", "characters": "\u222A\uFE00" }, - {"key": "↷", "characters": "\u21B7" }, - {"key": "⤼", "characters": "\u293C" }, - {"key": "⋞", "characters": "\u22DE" }, - {"key": "⋟", "characters": "\u22DF" }, - {"key": "⋎", "characters": "\u22CE" }, - {"key": "⋏", "characters": "\u22CF" }, - {"key": "¤", "characters": "\u00A4" }, - {"key": "¤", "characters": "\u00A4" }, - {"key": "↶", "characters": "\u21B6" }, - {"key": "↷", "characters": "\u21B7" }, - {"key": "⋎", "characters": "\u22CE" }, - {"key": "⋏", "characters": "\u22CF" }, - {"key": "∲", "characters": "\u2232" }, - {"key": "∱", "characters": "\u2231" }, - {"key": "⌭", "characters": "\u232D" }, - {"key": "†", "characters": "\u2020" }, - {"key": "‡", "characters": "\u2021" }, - {"key": "ℸ", "characters": "\u2138" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "↡", "characters": "\u21A1" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "‐", "characters": "\u2010" }, - {"key": "⫤", "characters": "\u2AE4" }, - {"key": "⊣", "characters": "\u22A3" }, - {"key": "⤏", "characters": "\u290F" }, - {"key": "˝", "characters": "\u02DD" }, - {"key": "Ď", "characters": "\u010E" }, - {"key": "ď", "characters": "\u010F" }, - {"key": "Д", "characters": "\u0414" }, - {"key": "д", "characters": "\u0434" }, - {"key": "‡", "characters": "\u2021" }, - {"key": "⇊", "characters": "\u21CA" }, - {"key": "ⅅ", "characters": "\u2145" }, - {"key": "ⅆ", "characters": "\u2146" }, - {"key": "⤑", "characters": "\u2911" }, - {"key": "⩷", "characters": "\u2A77" }, - {"key": "°", "characters": "\u00B0" }, - {"key": "°", "characters": "\u00B0" }, - {"key": "∇", "characters": "\u2207" }, - {"key": "Δ", "characters": "\u0394" }, - {"key": "δ", "characters": "\u03B4" }, - {"key": "⦱", "characters": "\u29B1" }, - {"key": "⥿", "characters": "\u297F" }, - {"key": "𝔇", "characters": "\uD835\uDD07" }, - {"key": "𝔡", "characters": "\uD835\uDD21" }, - {"key": "⥥", "characters": "\u2965" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "˙", "characters": "\u02D9" }, - {"key": "˝", "characters": "\u02DD" }, - {"key": "`", "characters": "\u0060" }, - {"key": "˜", "characters": "\u02DC" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "♦", "characters": "\u2666" }, - {"key": "♦", "characters": "\u2666" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "ⅆ", "characters": "\u2146" }, - {"key": "ϝ", "characters": "\u03DD" }, - {"key": "⋲", "characters": "\u22F2" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "⋇", "characters": "\u22C7" }, - {"key": "⋇", "characters": "\u22C7" }, - {"key": "Ђ", "characters": "\u0402" }, - {"key": "ђ", "characters": "\u0452" }, - {"key": "⌞", "characters": "\u231E" }, - {"key": "⌍", "characters": "\u230D" }, - {"key": "$", "characters": "\u0024" }, - {"key": "𝔻", "characters": "\uD835\uDD3B" }, - {"key": "𝕕", "characters": "\uD835\uDD55" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "˙", "characters": "\u02D9" }, - {"key": "⃜", "characters": "\u20DC" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "≑", "characters": "\u2251" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "∸", "characters": "\u2238" }, - {"key": "∔", "characters": "\u2214" }, - {"key": "⊡", "characters": "\u22A1" }, - {"key": "⌆", "characters": "\u2306" }, - {"key": "∯", "characters": "\u222F" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "⫤", "characters": "\u2AE4" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "⟹", "characters": "\u27F9" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⊨", "characters": "\u22A8" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⤓", "characters": "\u2913" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "⇵", "characters": "\u21F5" }, - {"key": "̑", "characters": "\u0311" }, - {"key": "⇊", "characters": "\u21CA" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "⥐", "characters": "\u2950" }, - {"key": "⥞", "characters": "\u295E" }, - {"key": "⥖", "characters": "\u2956" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "⥟", "characters": "\u295F" }, - {"key": "⥗", "characters": "\u2957" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "↧", "characters": "\u21A7" }, - {"key": "⊤", "characters": "\u22A4" }, - {"key": "⤐", "characters": "\u2910" }, - {"key": "⌟", "characters": "\u231F" }, - {"key": "⌌", "characters": "\u230C" }, - {"key": "𝒟", "characters": "\uD835\uDC9F" }, - {"key": "𝒹", "characters": "\uD835\uDCB9" }, - {"key": "Ѕ", "characters": "\u0405" }, - {"key": "ѕ", "characters": "\u0455" }, - {"key": "⧶", "characters": "\u29F6" }, - {"key": "Đ", "characters": "\u0110" }, - {"key": "đ", "characters": "\u0111" }, - {"key": "⋱", "characters": "\u22F1" }, - {"key": "▿", "characters": "\u25BF" }, - {"key": "▾", "characters": "\u25BE" }, - {"key": "⇵", "characters": "\u21F5" }, - {"key": "⥯", "characters": "\u296F" }, - {"key": "⦦", "characters": "\u29A6" }, - {"key": "Џ", "characters": "\u040F" }, - {"key": "џ", "characters": "\u045F" }, - {"key": "⟿", "characters": "\u27FF" }, - {"key": "É", "characters": "\u00C9" }, - {"key": "É", "characters": "\u00C9" }, - {"key": "é", "characters": "\u00E9" }, - {"key": "é", "characters": "\u00E9" }, - {"key": "⩮", "characters": "\u2A6E" }, - {"key": "Ě", "characters": "\u011A" }, - {"key": "ě", "characters": "\u011B" }, - {"key": "Ê", "characters": "\u00CA" }, - {"key": "Ê", "characters": "\u00CA" }, - {"key": "ê", "characters": "\u00EA" }, - {"key": "ê", "characters": "\u00EA" }, - {"key": "≖", "characters": "\u2256" }, - {"key": "≕", "characters": "\u2255" }, - {"key": "Э", "characters": "\u042D" }, - {"key": "э", "characters": "\u044D" }, - {"key": "⩷", "characters": "\u2A77" }, - {"key": "Ė", "characters": "\u0116" }, - {"key": "ė", "characters": "\u0117" }, - {"key": "≑", "characters": "\u2251" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "≒", "characters": "\u2252" }, - {"key": "𝔈", "characters": "\uD835\uDD08" }, - {"key": "𝔢", "characters": "\uD835\uDD22" }, - {"key": "⪚", "characters": "\u2A9A" }, - {"key": "È", "characters": "\u00C8" }, - {"key": "È", "characters": "\u00C8" }, - {"key": "è", "characters": "\u00E8" }, - {"key": "è", "characters": "\u00E8" }, - {"key": "⪖", "characters": "\u2A96" }, - {"key": "⪘", "characters": "\u2A98" }, - {"key": "⪙", "characters": "\u2A99" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⏧", "characters": "\u23E7" }, - {"key": "ℓ", "characters": "\u2113" }, - {"key": "⪕", "characters": "\u2A95" }, - {"key": "⪗", "characters": "\u2A97" }, - {"key": "Ē", "characters": "\u0112" }, - {"key": "ē", "characters": "\u0113" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "◻", "characters": "\u25FB" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "▫", "characters": "\u25AB" }, - {"key": " ", "characters": "\u2004" }, - {"key": " ", "characters": "\u2005" }, - {"key": " ", "characters": "\u2003" }, - {"key": "Ŋ", "characters": "\u014A" }, - {"key": "ŋ", "characters": "\u014B" }, - {"key": " ", "characters": "\u2002" }, - {"key": "Ę", "characters": "\u0118" }, - {"key": "ę", "characters": "\u0119" }, - {"key": "𝔼", "characters": "\uD835\uDD3C" }, - {"key": "𝕖", "characters": "\uD835\uDD56" }, - {"key": "⋕", "characters": "\u22D5" }, - {"key": "⧣", "characters": "\u29E3" }, - {"key": "⩱", "characters": "\u2A71" }, - {"key": "ε", "characters": "\u03B5" }, - {"key": "Ε", "characters": "\u0395" }, - {"key": "ε", "characters": "\u03B5" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "≖", "characters": "\u2256" }, - {"key": "≕", "characters": "\u2255" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "⪖", "characters": "\u2A96" }, - {"key": "⪕", "characters": "\u2A95" }, - {"key": "⩵", "characters": "\u2A75" }, - {"key": "=", "characters": "\u003D" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "≟", "characters": "\u225F" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "≡", "characters": "\u2261" }, - {"key": "⩸", "characters": "\u2A78" }, - {"key": "⧥", "characters": "\u29E5" }, - {"key": "⥱", "characters": "\u2971" }, - {"key": "≓", "characters": "\u2253" }, - {"key": "ℯ", "characters": "\u212F" }, - {"key": "ℰ", "characters": "\u2130" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "⩳", "characters": "\u2A73" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "Η", "characters": "\u0397" }, - {"key": "η", "characters": "\u03B7" }, - {"key": "Ð", "characters": "\u00D0" }, - {"key": "Ð", "characters": "\u00D0" }, - {"key": "ð", "characters": "\u00F0" }, - {"key": "ð", "characters": "\u00F0" }, - {"key": "Ë", "characters": "\u00CB" }, - {"key": "Ë", "characters": "\u00CB" }, - {"key": "ë", "characters": "\u00EB" }, - {"key": "ë", "characters": "\u00EB" }, - {"key": "€", "characters": "\u20AC" }, - {"key": "!", "characters": "\u0021" }, - {"key": "∃", "characters": "\u2203" }, - {"key": "∃", "characters": "\u2203" }, - {"key": "ℰ", "characters": "\u2130" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "≒", "characters": "\u2252" }, - {"key": "Ф", "characters": "\u0424" }, - {"key": "ф", "characters": "\u0444" }, - {"key": "♀", "characters": "\u2640" }, - {"key": "ffi", "characters": "\uFB03" }, - {"key": "ff", "characters": "\uFB00" }, - {"key": "ffl", "characters": "\uFB04" }, - {"key": "𝔉", "characters": "\uD835\uDD09" }, - {"key": "𝔣", "characters": "\uD835\uDD23" }, - {"key": "fi", "characters": "\uFB01" }, - {"key": "◼", "characters": "\u25FC" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "fj", "characters": "\u0066\u006A" }, - {"key": "♭", "characters": "\u266D" }, - {"key": "fl", "characters": "\uFB02" }, - {"key": "▱", "characters": "\u25B1" }, - {"key": "ƒ", "characters": "\u0192" }, - {"key": "𝔽", "characters": "\uD835\uDD3D" }, - {"key": "𝕗", "characters": "\uD835\uDD57" }, - {"key": "∀", "characters": "\u2200" }, - {"key": "∀", "characters": "\u2200" }, - {"key": "⋔", "characters": "\u22D4" }, - {"key": "⫙", "characters": "\u2AD9" }, - {"key": "ℱ", "characters": "\u2131" }, - {"key": "⨍", "characters": "\u2A0D" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "⅓", "characters": "\u2153" }, - {"key": "¼", "characters": "\u00BC" }, - {"key": "¼", "characters": "\u00BC" }, - {"key": "⅕", "characters": "\u2155" }, - {"key": "⅙", "characters": "\u2159" }, - {"key": "⅛", "characters": "\u215B" }, - {"key": "⅔", "characters": "\u2154" }, - {"key": "⅖", "characters": "\u2156" }, - {"key": "¾", "characters": "\u00BE" }, - {"key": "¾", "characters": "\u00BE" }, - {"key": "⅗", "characters": "\u2157" }, - {"key": "⅜", "characters": "\u215C" }, - {"key": "⅘", "characters": "\u2158" }, - {"key": "⅚", "characters": "\u215A" }, - {"key": "⅝", "characters": "\u215D" }, - {"key": "⅞", "characters": "\u215E" }, - {"key": "⁄", "characters": "\u2044" }, - {"key": "⌢", "characters": "\u2322" }, - {"key": "𝒻", "characters": "\uD835\uDCBB" }, - {"key": "ℱ", "characters": "\u2131" }, - {"key": "ǵ", "characters": "\u01F5" }, - {"key": "Γ", "characters": "\u0393" }, - {"key": "γ", "characters": "\u03B3" }, - {"key": "Ϝ", "characters": "\u03DC" }, - {"key": "ϝ", "characters": "\u03DD" }, - {"key": "⪆", "characters": "\u2A86" }, - {"key": "Ğ", "characters": "\u011E" }, - {"key": "ğ", "characters": "\u011F" }, - {"key": "Ģ", "characters": "\u0122" }, - {"key": "Ĝ", "characters": "\u011C" }, - {"key": "ĝ", "characters": "\u011D" }, - {"key": "Г", "characters": "\u0413" }, - {"key": "г", "characters": "\u0433" }, - {"key": "Ġ", "characters": "\u0120" }, - {"key": "ġ", "characters": "\u0121" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⪌", "characters": "\u2A8C" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "⪩", "characters": "\u2AA9" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "⪀", "characters": "\u2A80" }, - {"key": "⪂", "characters": "\u2A82" }, - {"key": "⪄", "characters": "\u2A84" }, - {"key": "⋛︀", "characters": "\u22DB\uFE00" }, - {"key": "⪔", "characters": "\u2A94" }, - {"key": "𝔊", "characters": "\uD835\uDD0A" }, - {"key": "𝔤", "characters": "\uD835\uDD24" }, - {"key": "≫", "characters": "\u226B" }, - {"key": "⋙", "characters": "\u22D9" }, - {"key": "⋙", "characters": "\u22D9" }, - {"key": "ℷ", "characters": "\u2137" }, - {"key": "Ѓ", "characters": "\u0403" }, - {"key": "ѓ", "characters": "\u0453" }, - {"key": "⪥", "characters": "\u2AA5" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "⪒", "characters": "\u2A92" }, - {"key": "⪤", "characters": "\u2AA4" }, - {"key": "⪊", "characters": "\u2A8A" }, - {"key": "⪊", "characters": "\u2A8A" }, - {"key": "⪈", "characters": "\u2A88" }, - {"key": "≩", "characters": "\u2269" }, - {"key": "⪈", "characters": "\u2A88" }, - {"key": "≩", "characters": "\u2269" }, - {"key": "⋧", "characters": "\u22E7" }, - {"key": "𝔾", "characters": "\uD835\uDD3E" }, - {"key": "𝕘", "characters": "\uD835\uDD58" }, - {"key": "`", "characters": "\u0060" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⪢", "characters": "\u2AA2" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "≳", "characters": "\u2273" }, - {"key": "𝒢", "characters": "\uD835\uDCA2" }, - {"key": "ℊ", "characters": "\u210A" }, - {"key": "≳", "characters": "\u2273" }, - {"key": "⪎", "characters": "\u2A8E" }, - {"key": "⪐", "characters": "\u2A90" }, - {"key": "⪧", "characters": "\u2AA7" }, - {"key": "⩺", "characters": "\u2A7A" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": "≫", "characters": "\u226B" }, - {"key": "⋗", "characters": "\u22D7" }, - {"key": "⦕", "characters": "\u2995" }, - {"key": "⩼", "characters": "\u2A7C" }, - {"key": "⪆", "characters": "\u2A86" }, - {"key": "⥸", "characters": "\u2978" }, - {"key": "⋗", "characters": "\u22D7" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "⪌", "characters": "\u2A8C" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "≳", "characters": "\u2273" }, - {"key": "≩︀", "characters": "\u2269\uFE00" }, - {"key": "≩︀", "characters": "\u2269\uFE00" }, - {"key": "ˇ", "characters": "\u02C7" }, - {"key": " ", "characters": "\u200A" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "ℋ", "characters": "\u210B" }, - {"key": "Ъ", "characters": "\u042A" }, - {"key": "ъ", "characters": "\u044A" }, - {"key": "⥈", "characters": "\u2948" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "↭", "characters": "\u21AD" }, - {"key": "^", "characters": "\u005E" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "Ĥ", "characters": "\u0124" }, - {"key": "ĥ", "characters": "\u0125" }, - {"key": "♥", "characters": "\u2665" }, - {"key": "♥", "characters": "\u2665" }, - {"key": "…", "characters": "\u2026" }, - {"key": "⊹", "characters": "\u22B9" }, - {"key": "𝔥", "characters": "\uD835\uDD25" }, - {"key": "ℌ", "characters": "\u210C" }, - {"key": "ℋ", "characters": "\u210B" }, - {"key": "⤥", "characters": "\u2925" }, - {"key": "⤦", "characters": "\u2926" }, - {"key": "⇿", "characters": "\u21FF" }, - {"key": "∻", "characters": "\u223B" }, - {"key": "↩", "characters": "\u21A9" }, - {"key": "↪", "characters": "\u21AA" }, - {"key": "𝕙", "characters": "\uD835\uDD59" }, - {"key": "ℍ", "characters": "\u210D" }, - {"key": "―", "characters": "\u2015" }, - {"key": "─", "characters": "\u2500" }, - {"key": "𝒽", "characters": "\uD835\uDCBD" }, - {"key": "ℋ", "characters": "\u210B" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "Ħ", "characters": "\u0126" }, - {"key": "ħ", "characters": "\u0127" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "⁃", "characters": "\u2043" }, - {"key": "‐", "characters": "\u2010" }, - {"key": "Í", "characters": "\u00CD" }, - {"key": "Í", "characters": "\u00CD" }, - {"key": "í", "characters": "\u00ED" }, - {"key": "í", "characters": "\u00ED" }, - {"key": "⁣", "characters": "\u2063" }, - {"key": "Î", "characters": "\u00CE" }, - {"key": "Î", "characters": "\u00CE" }, - {"key": "î", "characters": "\u00EE" }, - {"key": "î", "characters": "\u00EE" }, - {"key": "И", "characters": "\u0418" }, - {"key": "и", "characters": "\u0438" }, - {"key": "İ", "characters": "\u0130" }, - {"key": "Е", "characters": "\u0415" }, - {"key": "е", "characters": "\u0435" }, - {"key": "¡", "characters": "\u00A1" }, - {"key": "¡", "characters": "\u00A1" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "𝔦", "characters": "\uD835\uDD26" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "Ì", "characters": "\u00CC" }, - {"key": "Ì", "characters": "\u00CC" }, - {"key": "ì", "characters": "\u00EC" }, - {"key": "ì", "characters": "\u00EC" }, - {"key": "ⅈ", "characters": "\u2148" }, - {"key": "⨌", "characters": "\u2A0C" }, - {"key": "∭", "characters": "\u222D" }, - {"key": "⧜", "characters": "\u29DC" }, - {"key": "℩", "characters": "\u2129" }, - {"key": "IJ", "characters": "\u0132" }, - {"key": "ij", "characters": "\u0133" }, - {"key": "Ī", "characters": "\u012A" }, - {"key": "ī", "characters": "\u012B" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "ⅈ", "characters": "\u2148" }, - {"key": "ℐ", "characters": "\u2110" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "ı", "characters": "\u0131" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "⊷", "characters": "\u22B7" }, - {"key": "Ƶ", "characters": "\u01B5" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "℅", "characters": "\u2105" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "∞", "characters": "\u221E" }, - {"key": "⧝", "characters": "\u29DD" }, - {"key": "ı", "characters": "\u0131" }, - {"key": "⊺", "characters": "\u22BA" }, - {"key": "∫", "characters": "\u222B" }, - {"key": "∬", "characters": "\u222C" }, - {"key": "ℤ", "characters": "\u2124" }, - {"key": "∫", "characters": "\u222B" }, - {"key": "⊺", "characters": "\u22BA" }, - {"key": "⋂", "characters": "\u22C2" }, - {"key": "⨗", "characters": "\u2A17" }, - {"key": "⨼", "characters": "\u2A3C" }, - {"key": "⁣", "characters": "\u2063" }, - {"key": "⁢", "characters": "\u2062" }, - {"key": "Ё", "characters": "\u0401" }, - {"key": "ё", "characters": "\u0451" }, - {"key": "Į", "characters": "\u012E" }, - {"key": "į", "characters": "\u012F" }, - {"key": "𝕀", "characters": "\uD835\uDD40" }, - {"key": "𝕚", "characters": "\uD835\uDD5A" }, - {"key": "Ι", "characters": "\u0399" }, - {"key": "ι", "characters": "\u03B9" }, - {"key": "⨼", "characters": "\u2A3C" }, - {"key": "¿", "characters": "\u00BF" }, - {"key": "¿", "characters": "\u00BF" }, - {"key": "𝒾", "characters": "\uD835\uDCBE" }, - {"key": "ℐ", "characters": "\u2110" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⋵", "characters": "\u22F5" }, - {"key": "⋹", "characters": "\u22F9" }, - {"key": "⋴", "characters": "\u22F4" }, - {"key": "⋳", "characters": "\u22F3" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⁢", "characters": "\u2062" }, - {"key": "Ĩ", "characters": "\u0128" }, - {"key": "ĩ", "characters": "\u0129" }, - {"key": "І", "characters": "\u0406" }, - {"key": "і", "characters": "\u0456" }, - {"key": "Ï", "characters": "\u00CF" }, - {"key": "Ï", "characters": "\u00CF" }, - {"key": "ï", "characters": "\u00EF" }, - {"key": "ï", "characters": "\u00EF" }, - {"key": "Ĵ", "characters": "\u0134" }, - {"key": "ĵ", "characters": "\u0135" }, - {"key": "Й", "characters": "\u0419" }, - {"key": "й", "characters": "\u0439" }, - {"key": "𝔍", "characters": "\uD835\uDD0D" }, - {"key": "𝔧", "characters": "\uD835\uDD27" }, - {"key": "ȷ", "characters": "\u0237" }, - {"key": "𝕁", "characters": "\uD835\uDD41" }, - {"key": "𝕛", "characters": "\uD835\uDD5B" }, - {"key": "𝒥", "characters": "\uD835\uDCA5" }, - {"key": "𝒿", "characters": "\uD835\uDCBF" }, - {"key": "Ј", "characters": "\u0408" }, - {"key": "ј", "characters": "\u0458" }, - {"key": "Є", "characters": "\u0404" }, - {"key": "є", "characters": "\u0454" }, - {"key": "Κ", "characters": "\u039A" }, - {"key": "κ", "characters": "\u03BA" }, - {"key": "ϰ", "characters": "\u03F0" }, - {"key": "Ķ", "characters": "\u0136" }, - {"key": "ķ", "characters": "\u0137" }, - {"key": "К", "characters": "\u041A" }, - {"key": "к", "characters": "\u043A" }, - {"key": "𝔎", "characters": "\uD835\uDD0E" }, - {"key": "𝔨", "characters": "\uD835\uDD28" }, - {"key": "ĸ", "characters": "\u0138" }, - {"key": "Х", "characters": "\u0425" }, - {"key": "х", "characters": "\u0445" }, - {"key": "Ќ", "characters": "\u040C" }, - {"key": "ќ", "characters": "\u045C" }, - {"key": "𝕂", "characters": "\uD835\uDD42" }, - {"key": "𝕜", "characters": "\uD835\uDD5C" }, - {"key": "𝒦", "characters": "\uD835\uDCA6" }, - {"key": "𝓀", "characters": "\uD835\uDCC0" }, - {"key": "⇚", "characters": "\u21DA" }, - {"key": "Ĺ", "characters": "\u0139" }, - {"key": "ĺ", "characters": "\u013A" }, - {"key": "⦴", "characters": "\u29B4" }, - {"key": "ℒ", "characters": "\u2112" }, - {"key": "Λ", "characters": "\u039B" }, - {"key": "λ", "characters": "\u03BB" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⟪", "characters": "\u27EA" }, - {"key": "⦑", "characters": "\u2991" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⪅", "characters": "\u2A85" }, - {"key": "ℒ", "characters": "\u2112" }, - {"key": "«", "characters": "\u00AB" }, - {"key": "«", "characters": "\u00AB" }, - {"key": "⇤", "characters": "\u21E4" }, - {"key": "⤟", "characters": "\u291F" }, - {"key": "←", "characters": "\u2190" }, - {"key": "↞", "characters": "\u219E" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⤝", "characters": "\u291D" }, - {"key": "↩", "characters": "\u21A9" }, - {"key": "↫", "characters": "\u21AB" }, - {"key": "⤹", "characters": "\u2939" }, - {"key": "⥳", "characters": "\u2973" }, - {"key": "↢", "characters": "\u21A2" }, - {"key": "⤙", "characters": "\u2919" }, - {"key": "⤛", "characters": "\u291B" }, - {"key": "⪫", "characters": "\u2AAB" }, - {"key": "⪭", "characters": "\u2AAD" }, - {"key": "⪭︀", "characters": "\u2AAD\uFE00" }, - {"key": "⤌", "characters": "\u290C" }, - {"key": "⤎", "characters": "\u290E" }, - {"key": "❲", "characters": "\u2772" }, - {"key": "{", "characters": "\u007B" }, - {"key": "[", "characters": "\u005B" }, - {"key": "⦋", "characters": "\u298B" }, - {"key": "⦏", "characters": "\u298F" }, - {"key": "⦍", "characters": "\u298D" }, - {"key": "Ľ", "characters": "\u013D" }, - {"key": "ľ", "characters": "\u013E" }, - {"key": "Ļ", "characters": "\u013B" }, - {"key": "ļ", "characters": "\u013C" }, - {"key": "⌈", "characters": "\u2308" }, - {"key": "{", "characters": "\u007B" }, - {"key": "Л", "characters": "\u041B" }, - {"key": "л", "characters": "\u043B" }, - {"key": "⤶", "characters": "\u2936" }, - {"key": "“", "characters": "\u201C" }, - {"key": "„", "characters": "\u201E" }, - {"key": "⥧", "characters": "\u2967" }, - {"key": "⥋", "characters": "\u294B" }, - {"key": "↲", "characters": "\u21B2" }, - {"key": "≤", "characters": "\u2264" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⇤", "characters": "\u21E4" }, - {"key": "←", "characters": "\u2190" }, - {"key": "←", "characters": "\u2190" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "↢", "characters": "\u21A2" }, - {"key": "⌈", "characters": "\u2308" }, - {"key": "⟦", "characters": "\u27E6" }, - {"key": "⥡", "characters": "\u2961" }, - {"key": "⥙", "characters": "\u2959" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⌊", "characters": "\u230A" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⇇", "characters": "\u21C7" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "↭", "characters": "\u21AD" }, - {"key": "⥎", "characters": "\u294E" }, - {"key": "↤", "characters": "\u21A4" }, - {"key": "⊣", "characters": "\u22A3" }, - {"key": "⥚", "characters": "\u295A" }, - {"key": "⋋", "characters": "\u22CB" }, - {"key": "⧏", "characters": "\u29CF" }, - {"key": "⊲", "characters": "\u22B2" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "⥑", "characters": "\u2951" }, - {"key": "⥠", "characters": "\u2960" }, - {"key": "⥘", "characters": "\u2958" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "⥒", "characters": "\u2952" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⪋", "characters": "\u2A8B" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "≤", "characters": "\u2264" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "⪨", "characters": "\u2AA8" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "⩿", "characters": "\u2A7F" }, - {"key": "⪁", "characters": "\u2A81" }, - {"key": "⪃", "characters": "\u2A83" }, - {"key": "⋚︀", "characters": "\u22DA\uFE00" }, - {"key": "⪓", "characters": "\u2A93" }, - {"key": "⪅", "characters": "\u2A85" }, - {"key": "⋖", "characters": "\u22D6" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "⪋", "characters": "\u2A8B" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "≶", "characters": "\u2276" }, - {"key": "≶", "characters": "\u2276" }, - {"key": "⪡", "characters": "\u2AA1" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⥼", "characters": "\u297C" }, - {"key": "⌊", "characters": "\u230A" }, - {"key": "𝔏", "characters": "\uD835\uDD0F" }, - {"key": "𝔩", "characters": "\uD835\uDD29" }, - {"key": "≶", "characters": "\u2276" }, - {"key": "⪑", "characters": "\u2A91" }, - {"key": "⥢", "characters": "\u2962" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⥪", "characters": "\u296A" }, - {"key": "▄", "characters": "\u2584" }, - {"key": "Љ", "characters": "\u0409" }, - {"key": "љ", "characters": "\u0459" }, - {"key": "⇇", "characters": "\u21C7" }, - {"key": "≪", "characters": "\u226A" }, - {"key": "⋘", "characters": "\u22D8" }, - {"key": "⌞", "characters": "\u231E" }, - {"key": "⇚", "characters": "\u21DA" }, - {"key": "⥫", "characters": "\u296B" }, - {"key": "◺", "characters": "\u25FA" }, - {"key": "Ŀ", "characters": "\u013F" }, - {"key": "ŀ", "characters": "\u0140" }, - {"key": "⎰", "characters": "\u23B0" }, - {"key": "⎰", "characters": "\u23B0" }, - {"key": "⪉", "characters": "\u2A89" }, - {"key": "⪉", "characters": "\u2A89" }, - {"key": "⪇", "characters": "\u2A87" }, - {"key": "≨", "characters": "\u2268" }, - {"key": "⪇", "characters": "\u2A87" }, - {"key": "≨", "characters": "\u2268" }, - {"key": "⋦", "characters": "\u22E6" }, - {"key": "⟬", "characters": "\u27EC" }, - {"key": "⇽", "characters": "\u21FD" }, - {"key": "⟦", "characters": "\u27E6" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "⟼", "characters": "\u27FC" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟹", "characters": "\u27F9" }, - {"key": "↫", "characters": "\u21AB" }, - {"key": "↬", "characters": "\u21AC" }, - {"key": "⦅", "characters": "\u2985" }, - {"key": "𝕃", "characters": "\uD835\uDD43" }, - {"key": "𝕝", "characters": "\uD835\uDD5D" }, - {"key": "⨭", "characters": "\u2A2D" }, - {"key": "⨴", "characters": "\u2A34" }, - {"key": "∗", "characters": "\u2217" }, - {"key": "_", "characters": "\u005F" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "◊", "characters": "\u25CA" }, - {"key": "◊", "characters": "\u25CA" }, - {"key": "⧫", "characters": "\u29EB" }, - {"key": "(", "characters": "\u0028" }, - {"key": "⦓", "characters": "\u2993" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "⌟", "characters": "\u231F" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "⥭", "characters": "\u296D" }, - {"key": "‎", "characters": "\u200E" }, - {"key": "⊿", "characters": "\u22BF" }, - {"key": "‹", "characters": "\u2039" }, - {"key": "𝓁", "characters": "\uD835\uDCC1" }, - {"key": "ℒ", "characters": "\u2112" }, - {"key": "↰", "characters": "\u21B0" }, - {"key": "↰", "characters": "\u21B0" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⪍", "characters": "\u2A8D" }, - {"key": "⪏", "characters": "\u2A8F" }, - {"key": "[", "characters": "\u005B" }, - {"key": "‘", "characters": "\u2018" }, - {"key": "‚", "characters": "\u201A" }, - {"key": "Ł", "characters": "\u0141" }, - {"key": "ł", "characters": "\u0142" }, - {"key": "⪦", "characters": "\u2AA6" }, - {"key": "⩹", "characters": "\u2A79" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "≪", "characters": "\u226A" }, - {"key": "⋖", "characters": "\u22D6" }, - {"key": "⋋", "characters": "\u22CB" }, - {"key": "⋉", "characters": "\u22C9" }, - {"key": "⥶", "characters": "\u2976" }, - {"key": "⩻", "characters": "\u2A7B" }, - {"key": "◃", "characters": "\u25C3" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "◂", "characters": "\u25C2" }, - {"key": "⦖", "characters": "\u2996" }, - {"key": "⥊", "characters": "\u294A" }, - {"key": "⥦", "characters": "\u2966" }, - {"key": "≨︀", "characters": "\u2268\uFE00" }, - {"key": "≨︀", "characters": "\u2268\uFE00" }, - {"key": "¯", "characters": "\u00AF" }, - {"key": "¯", "characters": "\u00AF" }, - {"key": "♂", "characters": "\u2642" }, - {"key": "✠", "characters": "\u2720" }, - {"key": "✠", "characters": "\u2720" }, - {"key": "⤅", "characters": "\u2905" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "↧", "characters": "\u21A7" }, - {"key": "↤", "characters": "\u21A4" }, - {"key": "↥", "characters": "\u21A5" }, - {"key": "▮", "characters": "\u25AE" }, - {"key": "⨩", "characters": "\u2A29" }, - {"key": "М", "characters": "\u041C" }, - {"key": "м", "characters": "\u043C" }, - {"key": "—", "characters": "\u2014" }, - {"key": "∺", "characters": "\u223A" }, - {"key": "∡", "characters": "\u2221" }, - {"key": " ", "characters": "\u205F" }, - {"key": "ℳ", "characters": "\u2133" }, - {"key": "𝔐", "characters": "\uD835\uDD10" }, - {"key": "𝔪", "characters": "\uD835\uDD2A" }, - {"key": "℧", "characters": "\u2127" }, - {"key": "µ", "characters": "\u00B5" }, - {"key": "µ", "characters": "\u00B5" }, - {"key": "*", "characters": "\u002A" }, - {"key": "⫰", "characters": "\u2AF0" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "⊟", "characters": "\u229F" }, - {"key": "−", "characters": "\u2212" }, - {"key": "∸", "characters": "\u2238" }, - {"key": "⨪", "characters": "\u2A2A" }, - {"key": "∓", "characters": "\u2213" }, - {"key": "⫛", "characters": "\u2ADB" }, - {"key": "…", "characters": "\u2026" }, - {"key": "∓", "characters": "\u2213" }, - {"key": "⊧", "characters": "\u22A7" }, - {"key": "𝕄", "characters": "\uD835\uDD44" }, - {"key": "𝕞", "characters": "\uD835\uDD5E" }, - {"key": "∓", "characters": "\u2213" }, - {"key": "𝓂", "characters": "\uD835\uDCC2" }, - {"key": "ℳ", "characters": "\u2133" }, - {"key": "∾", "characters": "\u223E" }, - {"key": "Μ", "characters": "\u039C" }, - {"key": "μ", "characters": "\u03BC" }, - {"key": "⊸", "characters": "\u22B8" }, - {"key": "⊸", "characters": "\u22B8" }, - {"key": "∇", "characters": "\u2207" }, - {"key": "Ń", "characters": "\u0143" }, - {"key": "ń", "characters": "\u0144" }, - {"key": "∠⃒", "characters": "\u2220\u20D2" }, - {"key": "≉", "characters": "\u2249" }, - {"key": "⩰̸", "characters": "\u2A70\u0338" }, - {"key": "≋̸", "characters": "\u224B\u0338" }, - {"key": "ʼn", "characters": "\u0149" }, - {"key": "≉", "characters": "\u2249" }, - {"key": "♮", "characters": "\u266E" }, - {"key": "ℕ", "characters": "\u2115" }, - {"key": "♮", "characters": "\u266E" }, - {"key": " ", "characters": "\u00A0" }, - {"key": " ", "characters": "\u00A0" }, - {"key": "≎̸", "characters": "\u224E\u0338" }, - {"key": "≏̸", "characters": "\u224F\u0338" }, - {"key": "⩃", "characters": "\u2A43" }, - {"key": "Ň", "characters": "\u0147" }, - {"key": "ň", "characters": "\u0148" }, - {"key": "Ņ", "characters": "\u0145" }, - {"key": "ņ", "characters": "\u0146" }, - {"key": "≇", "characters": "\u2247" }, - {"key": "⩭̸", "characters": "\u2A6D\u0338" }, - {"key": "⩂", "characters": "\u2A42" }, - {"key": "Н", "characters": "\u041D" }, - {"key": "н", "characters": "\u043D" }, - {"key": "–", "characters": "\u2013" }, - {"key": "⤤", "characters": "\u2924" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "⇗", "characters": "\u21D7" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "≠", "characters": "\u2260" }, - {"key": "≐̸", "characters": "\u2250\u0338" }, - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "≢", "characters": "\u2262" }, - {"key": "⤨", "characters": "\u2928" }, - {"key": "≂̸", "characters": "\u2242\u0338" }, - {"key": "≫", "characters": "\u226B" }, - {"key": "≪", "characters": "\u226A" }, - {"key": " ", "characters": "\u000A" }, - {"key": "∄", "characters": "\u2204" }, - {"key": "∄", "characters": "\u2204" }, - {"key": "𝔑", "characters": "\uD835\uDD11" }, - {"key": "𝔫", "characters": "\uD835\uDD2B" }, - {"key": "≧̸", "characters": "\u2267\u0338" }, - {"key": "≱", "characters": "\u2271" }, - {"key": "≱", "characters": "\u2271" }, - {"key": "≧̸", "characters": "\u2267\u0338" }, - {"key": "⩾̸", "characters": "\u2A7E\u0338" }, - {"key": "⩾̸", "characters": "\u2A7E\u0338" }, - {"key": "⋙̸", "characters": "\u22D9\u0338" }, - {"key": "≵", "characters": "\u2275" }, - {"key": "≫⃒", "characters": "\u226B\u20D2" }, - {"key": "≯", "characters": "\u226F" }, - {"key": "≯", "characters": "\u226F" }, - {"key": "≫̸", "characters": "\u226B\u0338" }, - {"key": "↮", "characters": "\u21AE" }, - {"key": "⇎", "characters": "\u21CE" }, - {"key": "⫲", "characters": "\u2AF2" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "⋼", "characters": "\u22FC" }, - {"key": "⋺", "characters": "\u22FA" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "Њ", "characters": "\u040A" }, - {"key": "њ", "characters": "\u045A" }, - {"key": "↚", "characters": "\u219A" }, - {"key": "⇍", "characters": "\u21CD" }, - {"key": "‥", "characters": "\u2025" }, - {"key": "≦̸", "characters": "\u2266\u0338" }, - {"key": "≰", "characters": "\u2270" }, - {"key": "↚", "characters": "\u219A" }, - {"key": "⇍", "characters": "\u21CD" }, - {"key": "↮", "characters": "\u21AE" }, - {"key": "⇎", "characters": "\u21CE" }, - {"key": "≰", "characters": "\u2270" }, - {"key": "≦̸", "characters": "\u2266\u0338" }, - {"key": "⩽̸", "characters": "\u2A7D\u0338" }, - {"key": "⩽̸", "characters": "\u2A7D\u0338" }, - {"key": "≮", "characters": "\u226E" }, - {"key": "⋘̸", "characters": "\u22D8\u0338" }, - {"key": "≴", "characters": "\u2274" }, - {"key": "≪⃒", "characters": "\u226A\u20D2" }, - {"key": "≮", "characters": "\u226E" }, - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - {"key": "≪̸", "characters": "\u226A\u0338" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "⁠", "characters": "\u2060" }, - {"key": " ", "characters": "\u00A0" }, - {"key": "𝕟", "characters": "\uD835\uDD5F" }, - {"key": "ℕ", "characters": "\u2115" }, - {"key": "⫬", "characters": "\u2AEC" }, - {"key": "¬", "characters": "\u00AC" }, - {"key": "¬", "characters": "\u00AC" }, - {"key": "≢", "characters": "\u2262" }, - {"key": "≭", "characters": "\u226D" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "∉", "characters": "\u2209" }, - {"key": "≠", "characters": "\u2260" }, - {"key": "≂̸", "characters": "\u2242\u0338" }, - {"key": "∄", "characters": "\u2204" }, - {"key": "≯", "characters": "\u226F" }, - {"key": "≱", "characters": "\u2271" }, - {"key": "≧̸", "characters": "\u2267\u0338" }, - {"key": "≫̸", "characters": "\u226B\u0338" }, - {"key": "≹", "characters": "\u2279" }, - {"key": "⩾̸", "characters": "\u2A7E\u0338" }, - {"key": "≵", "characters": "\u2275" }, - {"key": "≎̸", "characters": "\u224E\u0338" }, - {"key": "≏̸", "characters": "\u224F\u0338" }, - {"key": "∉", "characters": "\u2209" }, - {"key": "⋵̸", "characters": "\u22F5\u0338" }, - {"key": "⋹̸", "characters": "\u22F9\u0338" }, - {"key": "∉", "characters": "\u2209" }, - {"key": "⋷", "characters": "\u22F7" }, - {"key": "⋶", "characters": "\u22F6" }, - {"key": "⧏̸", "characters": "\u29CF\u0338" }, - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - {"key": "≮", "characters": "\u226E" }, - {"key": "≰", "characters": "\u2270" }, - {"key": "≸", "characters": "\u2278" }, - {"key": "≪̸", "characters": "\u226A\u0338" }, - {"key": "⩽̸", "characters": "\u2A7D\u0338" }, - {"key": "≴", "characters": "\u2274" }, - {"key": "⪢̸", "characters": "\u2AA2\u0338" }, - {"key": "⪡̸", "characters": "\u2AA1\u0338" }, - {"key": "∌", "characters": "\u220C" }, - {"key": "∌", "characters": "\u220C" }, - {"key": "⋾", "characters": "\u22FE" }, - {"key": "⋽", "characters": "\u22FD" }, - {"key": "⊀", "characters": "\u2280" }, - {"key": "⪯̸", "characters": "\u2AAF\u0338" }, - {"key": "⋠", "characters": "\u22E0" }, - {"key": "∌", "characters": "\u220C" }, - {"key": "⧐̸", "characters": "\u29D0\u0338" }, - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - {"key": "⊏̸", "characters": "\u228F\u0338" }, - {"key": "⋢", "characters": "\u22E2" }, - {"key": "⊐̸", "characters": "\u2290\u0338" }, - {"key": "⋣", "characters": "\u22E3" }, - {"key": "⊂⃒", "characters": "\u2282\u20D2" }, - {"key": "⊈", "characters": "\u2288" }, - {"key": "⊁", "characters": "\u2281" }, - {"key": "⪰̸", "characters": "\u2AB0\u0338" }, - {"key": "⋡", "characters": "\u22E1" }, - {"key": "≿̸", "characters": "\u227F\u0338" }, - {"key": "⊃⃒", "characters": "\u2283\u20D2" }, - {"key": "⊉", "characters": "\u2289" }, - {"key": "≁", "characters": "\u2241" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "≇", "characters": "\u2247" }, - {"key": "≉", "characters": "\u2249" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "⫽⃥", "characters": "\u2AFD\u20E5" }, - {"key": "∂̸", "characters": "\u2202\u0338" }, - {"key": "⨔", "characters": "\u2A14" }, - {"key": "⊀", "characters": "\u2280" }, - {"key": "⋠", "characters": "\u22E0" }, - {"key": "⊀", "characters": "\u2280" }, - {"key": "⪯̸", "characters": "\u2AAF\u0338" }, - {"key": "⪯̸", "characters": "\u2AAF\u0338" }, - {"key": "⤳̸", "characters": "\u2933\u0338" }, - {"key": "↛", "characters": "\u219B" }, - {"key": "⇏", "characters": "\u21CF" }, - {"key": "↝̸", "characters": "\u219D\u0338" }, - {"key": "↛", "characters": "\u219B" }, - {"key": "⇏", "characters": "\u21CF" }, - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - {"key": "⊁", "characters": "\u2281" }, - {"key": "⋡", "characters": "\u22E1" }, - {"key": "⪰̸", "characters": "\u2AB0\u0338" }, - {"key": "𝒩", "characters": "\uD835\uDCA9" }, - {"key": "𝓃", "characters": "\uD835\uDCC3" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "≁", "characters": "\u2241" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "⋢", "characters": "\u22E2" }, - {"key": "⋣", "characters": "\u22E3" }, - {"key": "⊄", "characters": "\u2284" }, - {"key": "⫅̸", "characters": "\u2AC5\u0338" }, - {"key": "⊈", "characters": "\u2288" }, - {"key": "⊂⃒", "characters": "\u2282\u20D2" }, - {"key": "⊈", "characters": "\u2288" }, - {"key": "⫅̸", "characters": "\u2AC5\u0338" }, - {"key": "⊁", "characters": "\u2281" }, - {"key": "⪰̸", "characters": "\u2AB0\u0338" }, - {"key": "⊅", "characters": "\u2285" }, - {"key": "⫆̸", "characters": "\u2AC6\u0338" }, - {"key": "⊉", "characters": "\u2289" }, - {"key": "⊃⃒", "characters": "\u2283\u20D2" }, - {"key": "⊉", "characters": "\u2289" }, - {"key": "⫆̸", "characters": "\u2AC6\u0338" }, - {"key": "≹", "characters": "\u2279" }, - {"key": "Ñ", "characters": "\u00D1" }, - {"key": "Ñ", "characters": "\u00D1" }, - {"key": "ñ", "characters": "\u00F1" }, - {"key": "ñ", "characters": "\u00F1" }, - {"key": "≸", "characters": "\u2278" }, - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - {"key": "Ν", "characters": "\u039D" }, - {"key": "ν", "characters": "\u03BD" }, - {"key": "#", "characters": "\u0023" }, - {"key": "№", "characters": "\u2116" }, - {"key": " ", "characters": "\u2007" }, - {"key": "≍⃒", "characters": "\u224D\u20D2" }, - {"key": "⊬", "characters": "\u22AC" }, - {"key": "⊭", "characters": "\u22AD" }, - {"key": "⊮", "characters": "\u22AE" }, - {"key": "⊯", "characters": "\u22AF" }, - {"key": "≥⃒", "characters": "\u2265\u20D2" }, - {"key": ">⃒", "characters": "\u003E\u20D2" }, - {"key": "⤄", "characters": "\u2904" }, - {"key": "⧞", "characters": "\u29DE" }, - {"key": "⤂", "characters": "\u2902" }, - {"key": "≤⃒", "characters": "\u2264\u20D2" }, - {"key": "<⃒", "characters": "\u003C\u20D2" }, - {"key": "⊴⃒", "characters": "\u22B4\u20D2" }, - {"key": "⤃", "characters": "\u2903" }, - {"key": "⊵⃒", "characters": "\u22B5\u20D2" }, - {"key": "∼⃒", "characters": "\u223C\u20D2" }, - {"key": "⤣", "characters": "\u2923" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "⇖", "characters": "\u21D6" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "⤧", "characters": "\u2927" }, - {"key": "Ó", "characters": "\u00D3" }, - {"key": "Ó", "characters": "\u00D3" }, - {"key": "ó", "characters": "\u00F3" }, - {"key": "ó", "characters": "\u00F3" }, - {"key": "⊛", "characters": "\u229B" }, - {"key": "Ô", "characters": "\u00D4" }, - {"key": "Ô", "characters": "\u00D4" }, - {"key": "ô", "characters": "\u00F4" }, - {"key": "ô", "characters": "\u00F4" }, - {"key": "⊚", "characters": "\u229A" }, - {"key": "О", "characters": "\u041E" }, - {"key": "о", "characters": "\u043E" }, - {"key": "⊝", "characters": "\u229D" }, - {"key": "Ő", "characters": "\u0150" }, - {"key": "ő", "characters": "\u0151" }, - {"key": "⨸", "characters": "\u2A38" }, - {"key": "⊙", "characters": "\u2299" }, - {"key": "⦼", "characters": "\u29BC" }, - {"key": "Œ", "characters": "\u0152" }, - {"key": "œ", "characters": "\u0153" }, - {"key": "⦿", "characters": "\u29BF" }, - {"key": "𝔒", "characters": "\uD835\uDD12" }, - {"key": "𝔬", "characters": "\uD835\uDD2C" }, - {"key": "˛", "characters": "\u02DB" }, - {"key": "Ò", "characters": "\u00D2" }, - {"key": "Ò", "characters": "\u00D2" }, - {"key": "ò", "characters": "\u00F2" }, - {"key": "ò", "characters": "\u00F2" }, - {"key": "⧁", "characters": "\u29C1" }, - {"key": "⦵", "characters": "\u29B5" }, - {"key": "Ω", "characters": "\u03A9" }, - {"key": "∮", "characters": "\u222E" }, - {"key": "↺", "characters": "\u21BA" }, - {"key": "⦾", "characters": "\u29BE" }, - {"key": "⦻", "characters": "\u29BB" }, - {"key": "‾", "characters": "\u203E" }, - {"key": "⧀", "characters": "\u29C0" }, - {"key": "Ō", "characters": "\u014C" }, - {"key": "ō", "characters": "\u014D" }, - {"key": "Ω", "characters": "\u03A9" }, - {"key": "ω", "characters": "\u03C9" }, - {"key": "Ο", "characters": "\u039F" }, - {"key": "ο", "characters": "\u03BF" }, - {"key": "⦶", "characters": "\u29B6" }, - {"key": "⊖", "characters": "\u2296" }, - {"key": "𝕆", "characters": "\uD835\uDD46" }, - {"key": "𝕠", "characters": "\uD835\uDD60" }, - {"key": "⦷", "characters": "\u29B7" }, - {"key": "“", "characters": "\u201C" }, - {"key": "‘", "characters": "\u2018" }, - {"key": "⦹", "characters": "\u29B9" }, - {"key": "⊕", "characters": "\u2295" }, - {"key": "↻", "characters": "\u21BB" }, - {"key": "⩔", "characters": "\u2A54" }, - {"key": "∨", "characters": "\u2228" }, - {"key": "⩝", "characters": "\u2A5D" }, - {"key": "ℴ", "characters": "\u2134" }, - {"key": "ℴ", "characters": "\u2134" }, - {"key": "ª", "characters": "\u00AA" }, - {"key": "ª", "characters": "\u00AA" }, - {"key": "º", "characters": "\u00BA" }, - {"key": "º", "characters": "\u00BA" }, - {"key": "⊶", "characters": "\u22B6" }, - {"key": "⩖", "characters": "\u2A56" }, - {"key": "⩗", "characters": "\u2A57" }, - {"key": "⩛", "characters": "\u2A5B" }, - {"key": "Ⓢ", "characters": "\u24C8" }, - {"key": "𝒪", "characters": "\uD835\uDCAA" }, - {"key": "ℴ", "characters": "\u2134" }, - {"key": "Ø", "characters": "\u00D8" }, - {"key": "Ø", "characters": "\u00D8" }, - {"key": "ø", "characters": "\u00F8" }, - {"key": "ø", "characters": "\u00F8" }, - {"key": "⊘", "characters": "\u2298" }, - {"key": "Õ", "characters": "\u00D5" }, - {"key": "Õ", "characters": "\u00D5" }, - {"key": "õ", "characters": "\u00F5" }, - {"key": "õ", "characters": "\u00F5" }, - {"key": "⨶", "characters": "\u2A36" }, - {"key": "⨷", "characters": "\u2A37" }, - {"key": "⊗", "characters": "\u2297" }, - {"key": "Ö", "characters": "\u00D6" }, - {"key": "Ö", "characters": "\u00D6" }, - {"key": "ö", "characters": "\u00F6" }, - {"key": "ö", "characters": "\u00F6" }, - {"key": "⌽", "characters": "\u233D" }, - {"key": "‾", "characters": "\u203E" }, - {"key": "⏞", "characters": "\u23DE" }, - {"key": "⎴", "characters": "\u23B4" }, - {"key": "⏜", "characters": "\u23DC" }, - {"key": "¶", "characters": "\u00B6" }, - {"key": "¶", "characters": "\u00B6" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⫳", "characters": "\u2AF3" }, - {"key": "⫽", "characters": "\u2AFD" }, - {"key": "∂", "characters": "\u2202" }, - {"key": "∂", "characters": "\u2202" }, - {"key": "П", "characters": "\u041F" }, - {"key": "п", "characters": "\u043F" }, - {"key": "%", "characters": "\u0025" }, - {"key": ".", "characters": "\u002E" }, - {"key": "‰", "characters": "\u2030" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "‱", "characters": "\u2031" }, - {"key": "𝔓", "characters": "\uD835\uDD13" }, - {"key": "𝔭", "characters": "\uD835\uDD2D" }, - {"key": "Φ", "characters": "\u03A6" }, - {"key": "φ", "characters": "\u03C6" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "ℳ", "characters": "\u2133" }, - {"key": "☎", "characters": "\u260E" }, - {"key": "Π", "characters": "\u03A0" }, - {"key": "π", "characters": "\u03C0" }, - {"key": "⋔", "characters": "\u22D4" }, - {"key": "ϖ", "characters": "\u03D6" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "ℎ", "characters": "\u210E" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "⨣", "characters": "\u2A23" }, - {"key": "⊞", "characters": "\u229E" }, - {"key": "⨢", "characters": "\u2A22" }, - {"key": "+", "characters": "\u002B" }, - {"key": "∔", "characters": "\u2214" }, - {"key": "⨥", "characters": "\u2A25" }, - {"key": "⩲", "characters": "\u2A72" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "⨦", "characters": "\u2A26" }, - {"key": "⨧", "characters": "\u2A27" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "ℌ", "characters": "\u210C" }, - {"key": "⨕", "characters": "\u2A15" }, - {"key": "𝕡", "characters": "\uD835\uDD61" }, - {"key": "ℙ", "characters": "\u2119" }, - {"key": "£", "characters": "\u00A3" }, - {"key": "£", "characters": "\u00A3" }, - {"key": "⪷", "characters": "\u2AB7" }, - {"key": "⪻", "characters": "\u2ABB" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "⪷", "characters": "\u2AB7" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "⪹", "characters": "\u2AB9" }, - {"key": "⪵", "characters": "\u2AB5" }, - {"key": "⋨", "characters": "\u22E8" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "⪳", "characters": "\u2AB3" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "′", "characters": "\u2032" }, - {"key": "″", "characters": "\u2033" }, - {"key": "ℙ", "characters": "\u2119" }, - {"key": "⪹", "characters": "\u2AB9" }, - {"key": "⪵", "characters": "\u2AB5" }, - {"key": "⋨", "characters": "\u22E8" }, - {"key": "∏", "characters": "\u220F" }, - {"key": "∏", "characters": "\u220F" }, - {"key": "⌮", "characters": "\u232E" }, - {"key": "⌒", "characters": "\u2312" }, - {"key": "⌓", "characters": "\u2313" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "∷", "characters": "\u2237" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "⊰", "characters": "\u22B0" }, - {"key": "𝒫", "characters": "\uD835\uDCAB" }, - {"key": "𝓅", "characters": "\uD835\uDCC5" }, - {"key": "Ψ", "characters": "\u03A8" }, - {"key": "ψ", "characters": "\u03C8" }, - {"key": " ", "characters": "\u2008" }, - {"key": "𝔔", "characters": "\uD835\uDD14" }, - {"key": "𝔮", "characters": "\uD835\uDD2E" }, - {"key": "⨌", "characters": "\u2A0C" }, - {"key": "𝕢", "characters": "\uD835\uDD62" }, - {"key": "ℚ", "characters": "\u211A" }, - {"key": "⁗", "characters": "\u2057" }, - {"key": "𝒬", "characters": "\uD835\uDCAC" }, - {"key": "𝓆", "characters": "\uD835\uDCC6" }, - {"key": "ℍ", "characters": "\u210D" }, - {"key": "⨖", "characters": "\u2A16" }, - {"key": "?", "characters": "\u003F" }, - {"key": "≟", "characters": "\u225F" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": "⇛", "characters": "\u21DB" }, - {"key": "∽̱", "characters": "\u223D\u0331" }, - {"key": "Ŕ", "characters": "\u0154" }, - {"key": "ŕ", "characters": "\u0155" }, - {"key": "√", "characters": "\u221A" }, - {"key": "⦳", "characters": "\u29B3" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "⟫", "characters": "\u27EB" }, - {"key": "⦒", "characters": "\u2992" }, - {"key": "⦥", "characters": "\u29A5" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "»", "characters": "\u00BB" }, - {"key": "»", "characters": "\u00BB" }, - {"key": "⥵", "characters": "\u2975" }, - {"key": "⇥", "characters": "\u21E5" }, - {"key": "⤠", "characters": "\u2920" }, - {"key": "⤳", "characters": "\u2933" }, - {"key": "→", "characters": "\u2192" }, - {"key": "↠", "characters": "\u21A0" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⤞", "characters": "\u291E" }, - {"key": "↪", "characters": "\u21AA" }, - {"key": "↬", "characters": "\u21AC" }, - {"key": "⥅", "characters": "\u2945" }, - {"key": "⥴", "characters": "\u2974" }, - {"key": "⤖", "characters": "\u2916" }, - {"key": "↣", "characters": "\u21A3" }, - {"key": "↝", "characters": "\u219D" }, - {"key": "⤚", "characters": "\u291A" }, - {"key": "⤜", "characters": "\u291C" }, - {"key": "∶", "characters": "\u2236" }, - {"key": "ℚ", "characters": "\u211A" }, - {"key": "⤍", "characters": "\u290D" }, - {"key": "⤏", "characters": "\u290F" }, - {"key": "⤐", "characters": "\u2910" }, - {"key": "❳", "characters": "\u2773" }, - {"key": "}", "characters": "\u007D" }, - {"key": "]", "characters": "\u005D" }, - {"key": "⦌", "characters": "\u298C" }, - {"key": "⦎", "characters": "\u298E" }, - {"key": "⦐", "characters": "\u2990" }, - {"key": "Ř", "characters": "\u0158" }, - {"key": "ř", "characters": "\u0159" }, - {"key": "Ŗ", "characters": "\u0156" }, - {"key": "ŗ", "characters": "\u0157" }, - {"key": "⌉", "characters": "\u2309" }, - {"key": "}", "characters": "\u007D" }, - {"key": "Р", "characters": "\u0420" }, - {"key": "р", "characters": "\u0440" }, - {"key": "⤷", "characters": "\u2937" }, - {"key": "⥩", "characters": "\u2969" }, - {"key": "”", "characters": "\u201D" }, - {"key": "”", "characters": "\u201D" }, - {"key": "↳", "characters": "\u21B3" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "ℛ", "characters": "\u211B" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "ℝ", "characters": "\u211D" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "▭", "characters": "\u25AD" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "⥯", "characters": "\u296F" }, - {"key": "⥽", "characters": "\u297D" }, - {"key": "⌋", "characters": "\u230B" }, - {"key": "𝔯", "characters": "\uD835\uDD2F" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "⥤", "characters": "\u2964" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "⥬", "characters": "\u296C" }, - {"key": "Ρ", "characters": "\u03A1" }, - {"key": "ρ", "characters": "\u03C1" }, - {"key": "ϱ", "characters": "\u03F1" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "⇥", "characters": "\u21E5" }, - {"key": "→", "characters": "\u2192" }, - {"key": "→", "characters": "\u2192" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "↣", "characters": "\u21A3" }, - {"key": "⌉", "characters": "\u2309" }, - {"key": "⟧", "characters": "\u27E7" }, - {"key": "⥝", "characters": "\u295D" }, - {"key": "⥕", "characters": "\u2955" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "⌋", "characters": "\u230B" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "⇉", "characters": "\u21C9" }, - {"key": "↝", "characters": "\u219D" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "⊢", "characters": "\u22A2" }, - {"key": "⥛", "characters": "\u295B" }, - {"key": "⋌", "characters": "\u22CC" }, - {"key": "⧐", "characters": "\u29D0" }, - {"key": "⊳", "characters": "\u22B3" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "⥏", "characters": "\u294F" }, - {"key": "⥜", "characters": "\u295C" }, - {"key": "⥔", "characters": "\u2954" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "⥓", "characters": "\u2953" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "˚", "characters": "\u02DA" }, - {"key": "≓", "characters": "\u2253" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "‏", "characters": "\u200F" }, - {"key": "⎱", "characters": "\u23B1" }, - {"key": "⎱", "characters": "\u23B1" }, - {"key": "⫮", "characters": "\u2AEE" }, - {"key": "⟭", "characters": "\u27ED" }, - {"key": "⇾", "characters": "\u21FE" }, - {"key": "⟧", "characters": "\u27E7" }, - {"key": "⦆", "characters": "\u2986" }, - {"key": "𝕣", "characters": "\uD835\uDD63" }, - {"key": "ℝ", "characters": "\u211D" }, - {"key": "⨮", "characters": "\u2A2E" }, - {"key": "⨵", "characters": "\u2A35" }, - {"key": "⥰", "characters": "\u2970" }, - {"key": ")", "characters": "\u0029" }, - {"key": "⦔", "characters": "\u2994" }, - {"key": "⨒", "characters": "\u2A12" }, - {"key": "⇉", "characters": "\u21C9" }, - {"key": "⇛", "characters": "\u21DB" }, - {"key": "›", "characters": "\u203A" }, - {"key": "𝓇", "characters": "\uD835\uDCC7" }, - {"key": "ℛ", "characters": "\u211B" }, - {"key": "↱", "characters": "\u21B1" }, - {"key": "↱", "characters": "\u21B1" }, - {"key": "]", "characters": "\u005D" }, - {"key": "’", "characters": "\u2019" }, - {"key": "’", "characters": "\u2019" }, - {"key": "⋌", "characters": "\u22CC" }, - {"key": "⋊", "characters": "\u22CA" }, - {"key": "▹", "characters": "\u25B9" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "▸", "characters": "\u25B8" }, - {"key": "⧎", "characters": "\u29CE" }, - {"key": "⧴", "characters": "\u29F4" }, - {"key": "⥨", "characters": "\u2968" }, - {"key": "℞", "characters": "\u211E" }, - {"key": "Ś", "characters": "\u015A" }, - {"key": "ś", "characters": "\u015B" }, - {"key": "‚", "characters": "\u201A" }, - {"key": "⪸", "characters": "\u2AB8" }, - {"key": "Š", "characters": "\u0160" }, - {"key": "š", "characters": "\u0161" }, - {"key": "⪼", "characters": "\u2ABC" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "⪴", "characters": "\u2AB4" }, - {"key": "Ş", "characters": "\u015E" }, - {"key": "ş", "characters": "\u015F" }, - {"key": "Ŝ", "characters": "\u015C" }, - {"key": "ŝ", "characters": "\u015D" }, - {"key": "⪺", "characters": "\u2ABA" }, - {"key": "⪶", "characters": "\u2AB6" }, - {"key": "⋩", "characters": "\u22E9" }, - {"key": "⨓", "characters": "\u2A13" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "С", "characters": "\u0421" }, - {"key": "с", "characters": "\u0441" }, - {"key": "⊡", "characters": "\u22A1" }, - {"key": "⋅", "characters": "\u22C5" }, - {"key": "⩦", "characters": "\u2A66" }, - {"key": "⤥", "characters": "\u2925" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "⇘", "characters": "\u21D8" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "§", "characters": "\u00A7" }, - {"key": "§", "characters": "\u00A7" }, - {"key": ";", "characters": "\u003B" }, - {"key": "⤩", "characters": "\u2929" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "✶", "characters": "\u2736" }, - {"key": "𝔖", "characters": "\uD835\uDD16" }, - {"key": "𝔰", "characters": "\uD835\uDD30" }, - {"key": "⌢", "characters": "\u2322" }, - {"key": "♯", "characters": "\u266F" }, - {"key": "Щ", "characters": "\u0429" }, - {"key": "щ", "characters": "\u0449" }, - {"key": "Ш", "characters": "\u0428" }, - {"key": "ш", "characters": "\u0448" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "←", "characters": "\u2190" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "→", "characters": "\u2192" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "­", "characters": "\u00AD" }, - {"key": "­", "characters": "\u00AD" }, - {"key": "Σ", "characters": "\u03A3" }, - {"key": "σ", "characters": "\u03C3" }, - {"key": "ς", "characters": "\u03C2" }, - {"key": "ς", "characters": "\u03C2" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "⩪", "characters": "\u2A6A" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "⪞", "characters": "\u2A9E" }, - {"key": "⪠", "characters": "\u2AA0" }, - {"key": "⪝", "characters": "\u2A9D" }, - {"key": "⪟", "characters": "\u2A9F" }, - {"key": "≆", "characters": "\u2246" }, - {"key": "⨤", "characters": "\u2A24" }, - {"key": "⥲", "characters": "\u2972" }, - {"key": "←", "characters": "\u2190" }, - {"key": "∘", "characters": "\u2218" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "⨳", "characters": "\u2A33" }, - {"key": "⧤", "characters": "\u29E4" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "⌣", "characters": "\u2323" }, - {"key": "⪪", "characters": "\u2AAA" }, - {"key": "⪬", "characters": "\u2AAC" }, - {"key": "⪬︀", "characters": "\u2AAC\uFE00" }, - {"key": "Ь", "characters": "\u042C" }, - {"key": "ь", "characters": "\u044C" }, - {"key": "⌿", "characters": "\u233F" }, - {"key": "⧄", "characters": "\u29C4" }, - {"key": "/", "characters": "\u002F" }, - {"key": "𝕊", "characters": "\uD835\uDD4A" }, - {"key": "𝕤", "characters": "\uD835\uDD64" }, - {"key": "♠", "characters": "\u2660" }, - {"key": "♠", "characters": "\u2660" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⊓", "characters": "\u2293" }, - {"key": "⊓︀", "characters": "\u2293\uFE00" }, - {"key": "⊔", "characters": "\u2294" }, - {"key": "⊔︀", "characters": "\u2294\uFE00" }, - {"key": "√", "characters": "\u221A" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "⊓", "characters": "\u2293" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "⊔", "characters": "\u2294" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "→", "characters": "\u2192" }, - {"key": "𝒮", "characters": "\uD835\uDCAE" }, - {"key": "𝓈", "characters": "\uD835\uDCC8" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "⌣", "characters": "\u2323" }, - {"key": "⋆", "characters": "\u22C6" }, - {"key": "⋆", "characters": "\u22C6" }, - {"key": "☆", "characters": "\u2606" }, - {"key": "★", "characters": "\u2605" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "¯", "characters": "\u00AF" }, - {"key": "⊂", "characters": "\u2282" }, - {"key": "⋐", "characters": "\u22D0" }, - {"key": "⪽", "characters": "\u2ABD" }, - {"key": "⫅", "characters": "\u2AC5" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⫃", "characters": "\u2AC3" }, - {"key": "⫁", "characters": "\u2AC1" }, - {"key": "⫋", "characters": "\u2ACB" }, - {"key": "⊊", "characters": "\u228A" }, - {"key": "⪿", "characters": "\u2ABF" }, - {"key": "⥹", "characters": "\u2979" }, - {"key": "⊂", "characters": "\u2282" }, - {"key": "⋐", "characters": "\u22D0" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⫅", "characters": "\u2AC5" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⊊", "characters": "\u228A" }, - {"key": "⫋", "characters": "\u2ACB" }, - {"key": "⫇", "characters": "\u2AC7" }, - {"key": "⫕", "characters": "\u2AD5" }, - {"key": "⫓", "characters": "\u2AD3" }, - {"key": "⪸", "characters": "\u2AB8" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "⪺", "characters": "\u2ABA" }, - {"key": "⪶", "characters": "\u2AB6" }, - {"key": "⋩", "characters": "\u22E9" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "∑", "characters": "\u2211" }, - {"key": "∑", "characters": "\u2211" }, - {"key": "♪", "characters": "\u266A" }, - {"key": "¹", "characters": "\u00B9" }, - {"key": "¹", "characters": "\u00B9" }, - {"key": "²", "characters": "\u00B2" }, - {"key": "²", "characters": "\u00B2" }, - {"key": "³", "characters": "\u00B3" }, - {"key": "³", "characters": "\u00B3" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⋑", "characters": "\u22D1" }, - {"key": "⪾", "characters": "\u2ABE" }, - {"key": "⫘", "characters": "\u2AD8" }, - {"key": "⫆", "characters": "\u2AC6" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⫄", "characters": "\u2AC4" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⟉", "characters": "\u27C9" }, - {"key": "⫗", "characters": "\u2AD7" }, - {"key": "⥻", "characters": "\u297B" }, - {"key": "⫂", "characters": "\u2AC2" }, - {"key": "⫌", "characters": "\u2ACC" }, - {"key": "⊋", "characters": "\u228B" }, - {"key": "⫀", "characters": "\u2AC0" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⋑", "characters": "\u22D1" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⫆", "characters": "\u2AC6" }, - {"key": "⊋", "characters": "\u228B" }, - {"key": "⫌", "characters": "\u2ACC" }, - {"key": "⫈", "characters": "\u2AC8" }, - {"key": "⫔", "characters": "\u2AD4" }, - {"key": "⫖", "characters": "\u2AD6" }, - {"key": "⤦", "characters": "\u2926" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "⇙", "characters": "\u21D9" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "⤪", "characters": "\u292A" }, - {"key": "ß", "characters": "\u00DF" }, - {"key": "ß", "characters": "\u00DF" }, - {"key": " ", "characters": "\u0009" }, - {"key": "⌖", "characters": "\u2316" }, - {"key": "Τ", "characters": "\u03A4" }, - {"key": "τ", "characters": "\u03C4" }, - {"key": "⎴", "characters": "\u23B4" }, - {"key": "Ť", "characters": "\u0164" }, - {"key": "ť", "characters": "\u0165" }, - {"key": "Ţ", "characters": "\u0162" }, - {"key": "ţ", "characters": "\u0163" }, - {"key": "Т", "characters": "\u0422" }, - {"key": "т", "characters": "\u0442" }, - {"key": "⃛", "characters": "\u20DB" }, - {"key": "⌕", "characters": "\u2315" }, - {"key": "𝔗", "characters": "\uD835\uDD17" }, - {"key": "𝔱", "characters": "\uD835\uDD31" }, - {"key": "∴", "characters": "\u2234" }, - {"key": "∴", "characters": "\u2234" }, - {"key": "∴", "characters": "\u2234" }, - {"key": "Θ", "characters": "\u0398" }, - {"key": "θ", "characters": "\u03B8" }, - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "  ", "characters": "\u205F\u200A" }, - {"key": " ", "characters": "\u2009" }, - {"key": " ", "characters": "\u2009" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "Þ", "characters": "\u00DE" }, - {"key": "Þ", "characters": "\u00DE" }, - {"key": "þ", "characters": "\u00FE" }, - {"key": "þ", "characters": "\u00FE" }, - {"key": "˜", "characters": "\u02DC" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "≅", "characters": "\u2245" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "⨱", "characters": "\u2A31" }, - {"key": "⊠", "characters": "\u22A0" }, - {"key": "×", "characters": "\u00D7" }, - {"key": "×", "characters": "\u00D7" }, - {"key": "⨰", "characters": "\u2A30" }, - {"key": "∭", "characters": "\u222D" }, - {"key": "⤨", "characters": "\u2928" }, - {"key": "⌶", "characters": "\u2336" }, - {"key": "⫱", "characters": "\u2AF1" }, - {"key": "⊤", "characters": "\u22A4" }, - {"key": "𝕋", "characters": "\uD835\uDD4B" }, - {"key": "𝕥", "characters": "\uD835\uDD65" }, - {"key": "⫚", "characters": "\u2ADA" }, - {"key": "⤩", "characters": "\u2929" }, - {"key": "‴", "characters": "\u2034" }, - {"key": "™", "characters": "\u2122" }, - {"key": "™", "characters": "\u2122" }, - {"key": "▵", "characters": "\u25B5" }, - {"key": "▿", "characters": "\u25BF" }, - {"key": "◃", "characters": "\u25C3" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "≜", "characters": "\u225C" }, - {"key": "▹", "characters": "\u25B9" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "◬", "characters": "\u25EC" }, - {"key": "≜", "characters": "\u225C" }, - {"key": "⨺", "characters": "\u2A3A" }, - {"key": "⃛", "characters": "\u20DB" }, - {"key": "⨹", "characters": "\u2A39" }, - {"key": "⧍", "characters": "\u29CD" }, - {"key": "⨻", "characters": "\u2A3B" }, - {"key": "⏢", "characters": "\u23E2" }, - {"key": "𝒯", "characters": "\uD835\uDCAF" }, - {"key": "𝓉", "characters": "\uD835\uDCC9" }, - {"key": "Ц", "characters": "\u0426" }, - {"key": "ц", "characters": "\u0446" }, - {"key": "Ћ", "characters": "\u040B" }, - {"key": "ћ", "characters": "\u045B" }, - {"key": "Ŧ", "characters": "\u0166" }, - {"key": "ŧ", "characters": "\u0167" }, - {"key": "≬", "characters": "\u226C" }, - {"key": "↞", "characters": "\u219E" }, - {"key": "↠", "characters": "\u21A0" }, - {"key": "Ú", "characters": "\u00DA" }, - {"key": "Ú", "characters": "\u00DA" }, - {"key": "ú", "characters": "\u00FA" }, - {"key": "ú", "characters": "\u00FA" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "↟", "characters": "\u219F" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⥉", "characters": "\u2949" }, - {"key": "Ў", "characters": "\u040E" }, - {"key": "ў", "characters": "\u045E" }, - {"key": "Ŭ", "characters": "\u016C" }, - {"key": "ŭ", "characters": "\u016D" }, - {"key": "Û", "characters": "\u00DB" }, - {"key": "Û", "characters": "\u00DB" }, - {"key": "û", "characters": "\u00FB" }, - {"key": "û", "characters": "\u00FB" }, - {"key": "У", "characters": "\u0423" }, - {"key": "у", "characters": "\u0443" }, - {"key": "⇅", "characters": "\u21C5" }, - {"key": "Ű", "characters": "\u0170" }, - {"key": "ű", "characters": "\u0171" }, - {"key": "⥮", "characters": "\u296E" }, - {"key": "⥾", "characters": "\u297E" }, - {"key": "𝔘", "characters": "\uD835\uDD18" }, - {"key": "𝔲", "characters": "\uD835\uDD32" }, - {"key": "Ù", "characters": "\u00D9" }, - {"key": "Ù", "characters": "\u00D9" }, - {"key": "ù", "characters": "\u00F9" }, - {"key": "ù", "characters": "\u00F9" }, - {"key": "⥣", "characters": "\u2963" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "▀", "characters": "\u2580" }, - {"key": "⌜", "characters": "\u231C" }, - {"key": "⌜", "characters": "\u231C" }, - {"key": "⌏", "characters": "\u230F" }, - {"key": "◸", "characters": "\u25F8" }, - {"key": "Ū", "characters": "\u016A" }, - {"key": "ū", "characters": "\u016B" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "_", "characters": "\u005F" }, - {"key": "⏟", "characters": "\u23DF" }, - {"key": "⎵", "characters": "\u23B5" }, - {"key": "⏝", "characters": "\u23DD" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "⊎", "characters": "\u228E" }, - {"key": "Ų", "characters": "\u0172" }, - {"key": "ų", "characters": "\u0173" }, - {"key": "𝕌", "characters": "\uD835\uDD4C" }, - {"key": "𝕦", "characters": "\uD835\uDD66" }, - {"key": "⤒", "characters": "\u2912" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⇅", "characters": "\u21C5" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "⥮", "characters": "\u296E" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "⊎", "characters": "\u228E" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "υ", "characters": "\u03C5" }, - {"key": "ϒ", "characters": "\u03D2" }, - {"key": "ϒ", "characters": "\u03D2" }, - {"key": "Υ", "characters": "\u03A5" }, - {"key": "υ", "characters": "\u03C5" }, - {"key": "↥", "characters": "\u21A5" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⇈", "characters": "\u21C8" }, - {"key": "⌝", "characters": "\u231D" }, - {"key": "⌝", "characters": "\u231D" }, - {"key": "⌎", "characters": "\u230E" }, - {"key": "Ů", "characters": "\u016E" }, - {"key": "ů", "characters": "\u016F" }, - {"key": "◹", "characters": "\u25F9" }, - {"key": "𝒰", "characters": "\uD835\uDCB0" }, - {"key": "𝓊", "characters": "\uD835\uDCCA" }, - {"key": "⋰", "characters": "\u22F0" }, - {"key": "Ũ", "characters": "\u0168" }, - {"key": "ũ", "characters": "\u0169" }, - {"key": "▵", "characters": "\u25B5" }, - {"key": "▴", "characters": "\u25B4" }, - {"key": "⇈", "characters": "\u21C8" }, - {"key": "Ü", "characters": "\u00DC" }, - {"key": "Ü", "characters": "\u00DC" }, - {"key": "ü", "characters": "\u00FC" }, - {"key": "ü", "characters": "\u00FC" }, - {"key": "⦧", "characters": "\u29A7" }, - {"key": "⦜", "characters": "\u299C" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "ϰ", "characters": "\u03F0" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "ϖ", "characters": "\u03D6" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "ϱ", "characters": "\u03F1" }, - {"key": "ς", "characters": "\u03C2" }, - {"key": "⊊︀", "characters": "\u228A\uFE00" }, - {"key": "⫋︀", "characters": "\u2ACB\uFE00" }, - {"key": "⊋︀", "characters": "\u228B\uFE00" }, - {"key": "⫌︀", "characters": "\u2ACC\uFE00" }, - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "⊲", "characters": "\u22B2" }, - {"key": "⊳", "characters": "\u22B3" }, - {"key": "⫨", "characters": "\u2AE8" }, - {"key": "⫫", "characters": "\u2AEB" }, - {"key": "⫩", "characters": "\u2AE9" }, - {"key": "В", "characters": "\u0412" }, - {"key": "в", "characters": "\u0432" }, - {"key": "⊢", "characters": "\u22A2" }, - {"key": "⊨", "characters": "\u22A8" }, - {"key": "⊩", "characters": "\u22A9" }, - {"key": "⊫", "characters": "\u22AB" }, - {"key": "⫦", "characters": "\u2AE6" }, - {"key": "⊻", "characters": "\u22BB" }, - {"key": "∨", "characters": "\u2228" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "≚", "characters": "\u225A" }, - {"key": "⋮", "characters": "\u22EE" }, - {"key": "|", "characters": "\u007C" }, - {"key": "‖", "characters": "\u2016" }, - {"key": "|", "characters": "\u007C" }, - {"key": "‖", "characters": "\u2016" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "|", "characters": "\u007C" }, - {"key": "❘", "characters": "\u2758" }, - {"key": "≀", "characters": "\u2240" }, - {"key": " ", "characters": "\u200A" }, - {"key": "𝔙", "characters": "\uD835\uDD19" }, - {"key": "𝔳", "characters": "\uD835\uDD33" }, - {"key": "⊲", "characters": "\u22B2" }, - {"key": "⊂⃒", "characters": "\u2282\u20D2" }, - {"key": "⊃⃒", "characters": "\u2283\u20D2" }, - {"key": "𝕍", "characters": "\uD835\uDD4D" }, - {"key": "𝕧", "characters": "\uD835\uDD67" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "⊳", "characters": "\u22B3" }, - {"key": "𝒱", "characters": "\uD835\uDCB1" }, - {"key": "𝓋", "characters": "\uD835\uDCCB" }, - {"key": "⫋︀", "characters": "\u2ACB\uFE00" }, - {"key": "⊊︀", "characters": "\u228A\uFE00" }, - {"key": "⫌︀", "characters": "\u2ACC\uFE00" }, - {"key": "⊋︀", "characters": "\u228B\uFE00" }, - {"key": "⊪", "characters": "\u22AA" }, - {"key": "⦚", "characters": "\u299A" }, - {"key": "Ŵ", "characters": "\u0174" }, - {"key": "ŵ", "characters": "\u0175" }, - {"key": "⩟", "characters": "\u2A5F" }, - {"key": "∧", "characters": "\u2227" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "≙", "characters": "\u2259" }, - {"key": "℘", "characters": "\u2118" }, - {"key": "𝔚", "characters": "\uD835\uDD1A" }, - {"key": "𝔴", "characters": "\uD835\uDD34" }, - {"key": "𝕎", "characters": "\uD835\uDD4E" }, - {"key": "𝕨", "characters": "\uD835\uDD68" }, - {"key": "℘", "characters": "\u2118" }, - {"key": "≀", "characters": "\u2240" }, - {"key": "≀", "characters": "\u2240" }, - {"key": "𝒲", "characters": "\uD835\uDCB2" }, - {"key": "𝓌", "characters": "\uD835\uDCCC" }, - {"key": "⋂", "characters": "\u22C2" }, - {"key": "◯", "characters": "\u25EF" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "▽", "characters": "\u25BD" }, - {"key": "𝔛", "characters": "\uD835\uDD1B" }, - {"key": "𝔵", "characters": "\uD835\uDD35" }, - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "Ξ", "characters": "\u039E" }, - {"key": "ξ", "characters": "\u03BE" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟼", "characters": "\u27FC" }, - {"key": "⋻", "characters": "\u22FB" }, - {"key": "⨀", "characters": "\u2A00" }, - {"key": "𝕏", "characters": "\uD835\uDD4F" }, - {"key": "𝕩", "characters": "\uD835\uDD69" }, - {"key": "⨁", "characters": "\u2A01" }, - {"key": "⨂", "characters": "\u2A02" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟹", "characters": "\u27F9" }, - {"key": "𝒳", "characters": "\uD835\uDCB3" }, - {"key": "𝓍", "characters": "\uD835\uDCCD" }, - {"key": "⨆", "characters": "\u2A06" }, - {"key": "⨄", "characters": "\u2A04" }, - {"key": "△", "characters": "\u25B3" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "Ý", "characters": "\u00DD" }, - {"key": "Ý", "characters": "\u00DD" }, - {"key": "ý", "characters": "\u00FD" }, - {"key": "ý", "characters": "\u00FD" }, - {"key": "Я", "characters": "\u042F" }, - {"key": "я", "characters": "\u044F" }, - {"key": "Ŷ", "characters": "\u0176" }, - {"key": "ŷ", "characters": "\u0177" }, - {"key": "Ы", "characters": "\u042B" }, - {"key": "ы", "characters": "\u044B" }, - {"key": "¥", "characters": "\u00A5" }, - {"key": "¥", "characters": "\u00A5" }, - {"key": "𝔜", "characters": "\uD835\uDD1C" }, - {"key": "𝔶", "characters": "\uD835\uDD36" }, - {"key": "Ї", "characters": "\u0407" }, - {"key": "ї", "characters": "\u0457" }, - {"key": "𝕐", "characters": "\uD835\uDD50" }, - {"key": "𝕪", "characters": "\uD835\uDD6A" }, - {"key": "𝒴", "characters": "\uD835\uDCB4" }, - {"key": "𝓎", "characters": "\uD835\uDCCE" }, - {"key": "Ю", "characters": "\u042E" }, - {"key": "ю", "characters": "\u044E" }, - {"key": "ÿ", "characters": "\u00FF" }, - {"key": "ÿ", "characters": "\u00FF" }, - {"key": "Ÿ", "characters": "\u0178" }, - {"key": "Ź", "characters": "\u0179" }, - {"key": "ź", "characters": "\u017A" }, - {"key": "Ž", "characters": "\u017D" }, - {"key": "ž", "characters": "\u017E" }, - {"key": "З", "characters": "\u0417" }, - {"key": "з", "characters": "\u0437" }, - {"key": "Ż", "characters": "\u017B" }, - {"key": "ż", "characters": "\u017C" }, - {"key": "ℨ", "characters": "\u2128" }, - {"key": "​", "characters": "\u200B" }, - {"key": "Ζ", "characters": "\u0396" }, - {"key": "ζ", "characters": "\u03B6" }, - {"key": "𝔷", "characters": "\uD835\uDD37" }, - {"key": "ℨ", "characters": "\u2128" }, - {"key": "Ж", "characters": "\u0416" }, - {"key": "ж", "characters": "\u0436" }, - {"key": "⇝", "characters": "\u21DD" }, - {"key": "𝕫", "characters": "\uD835\uDD6B" }, - {"key": "ℤ", "characters": "\u2124" }, - {"key": "𝒵", "characters": "\uD835\uDCB5" }, - {"key": "𝓏", "characters": "\uD835\uDCCF" }, - {"key": "‍", "characters": "\u200D" }, - {"key": "‌", "characters": "\u200C" } -]} diff --git a/tests/FSharp.Data.Core.Tests/Data/charrefs.json b/tests/FSharp.Data.Core.Tests/Data/charrefs.json deleted file mode 100644 index 99b38ec8a..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/charrefs.json +++ /dev/null @@ -1,2245 +0,0 @@ -{ -"items":[ - {"key": "Á", "characters": "\u00C1" }, - {"key": "Á", "characters": "\u00C1" }, - {"key": "á", "characters": "\u00E1" }, - {"key": "á", "characters": "\u00E1" }, - {"key": "Ă", "characters": "\u0102" }, - {"key": "ă", "characters": "\u0103" }, - {"key": "∾", "characters": "\u223E" }, - {"key": "∿", "characters": "\u223F" }, - {"key": "Â", "characters": "\u00C2" }, - {"key": "Â", "characters": "\u00C2" }, - {"key": "â", "characters": "\u00E2" }, - {"key": "â", "characters": "\u00E2" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "А", "characters": "\u0410" }, - {"key": "а", "characters": "\u0430" }, - {"key": "Æ", "characters": "\u00C6" }, - {"key": "Æ", "characters": "\u00C6" }, - {"key": "æ", "characters": "\u00E6" }, - {"key": "æ", "characters": "\u00E6" }, - {"key": "⁡", "characters": "\u2061" }, - {"key": "À", "characters": "\u00C0" }, - {"key": "À", "characters": "\u00C0" }, - {"key": "à", "characters": "\u00E0" }, - {"key": "à", "characters": "\u00E0" }, - {"key": "ℵ", "characters": "\u2135" }, - {"key": "ℵ", "characters": "\u2135" }, - {"key": "Α", "characters": "\u0391" }, - {"key": "α", "characters": "\u03B1" }, - {"key": "Ā", "characters": "\u0100" }, - {"key": "ā", "characters": "\u0101" }, - {"key": "⨿", "characters": "\u2A3F" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "&", "characters": "\u0026" }, - {"key": "⩕", "characters": "\u2A55" }, - {"key": "⩓", "characters": "\u2A53" }, - {"key": "∧", "characters": "\u2227" }, - {"key": "⩜", "characters": "\u2A5C" }, - {"key": "⩘", "characters": "\u2A58" }, - {"key": "⩚", "characters": "\u2A5A" }, - {"key": "∠", "characters": "\u2220" }, - {"key": "⦤", "characters": "\u29A4" }, - {"key": "∠", "characters": "\u2220" }, - {"key": "⦨", "characters": "\u29A8" }, - {"key": "⦩", "characters": "\u29A9" }, - {"key": "⦪", "characters": "\u29AA" }, - {"key": "⦫", "characters": "\u29AB" }, - {"key": "⦬", "characters": "\u29AC" }, - {"key": "⦭", "characters": "\u29AD" }, - {"key": "⦮", "characters": "\u29AE" }, - {"key": "⦯", "characters": "\u29AF" }, - {"key": "∡", "characters": "\u2221" }, - {"key": "∟", "characters": "\u221F" }, - {"key": "⊾", "characters": "\u22BE" }, - {"key": "⦝", "characters": "\u299D" }, - {"key": "∢", "characters": "\u2222" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "⍼", "characters": "\u237C" }, - {"key": "Ą", "characters": "\u0104" }, - {"key": "ą", "characters": "\u0105" }, - - - {"key": "⩯", "characters": "\u2A6F" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "⩰", "characters": "\u2A70" }, - {"key": "≊", "characters": "\u224A" }, - {"key": "≋", "characters": "\u224B" }, - {"key": "'", "characters": "\u0027" }, - {"key": "⁡", "characters": "\u2061" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "≊", "characters": "\u224A" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "Å", "characters": "\u00C5" }, - {"key": "å", "characters": "\u00E5" }, - {"key": "å", "characters": "\u00E5" }, - - - {"key": "≔", "characters": "\u2254" }, - {"key": "*", "characters": "\u002A" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "≍", "characters": "\u224D" }, - {"key": "Ã", "characters": "\u00C3" }, - {"key": "Ã", "characters": "\u00C3" }, - {"key": "ã", "characters": "\u00E3" }, - {"key": "ã", "characters": "\u00E3" }, - {"key": "Ä", "characters": "\u00C4" }, - {"key": "Ä", "characters": "\u00C4" }, - {"key": "ä", "characters": "\u00E4" }, - {"key": "ä", "characters": "\u00E4" }, - {"key": "∳", "characters": "\u2233" }, - {"key": "⨑", "characters": "\u2A11" }, - {"key": "≌", "characters": "\u224C" }, - {"key": "϶", "characters": "\u03F6" }, - {"key": "‵", "characters": "\u2035" }, - {"key": "∽", "characters": "\u223D" }, - {"key": "⋍", "characters": "\u22CD" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "⫧", "characters": "\u2AE7" }, - {"key": "⊽", "characters": "\u22BD" }, - {"key": "⌅", "characters": "\u2305" }, - {"key": "⌆", "characters": "\u2306" }, - {"key": "⌅", "characters": "\u2305" }, - {"key": "⎵", "characters": "\u23B5" }, - {"key": "⎶", "characters": "\u23B6" }, - {"key": "≌", "characters": "\u224C" }, - {"key": "Б", "characters": "\u0411" }, - {"key": "б", "characters": "\u0431" }, - {"key": "„", "characters": "\u201E" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "∵", "characters": "\u2235" }, - {"key": "⦰", "characters": "\u29B0" }, - {"key": "϶", "characters": "\u03F6" }, - {"key": "ℬ", "characters": "\u212C" }, - {"key": "ℬ", "characters": "\u212C" }, - {"key": "Β", "characters": "\u0392" }, - {"key": "β", "characters": "\u03B2" }, - {"key": "ℶ", "characters": "\u2136" }, - {"key": "≬", "characters": "\u226C" }, - - - {"key": "⋂", "characters": "\u22C2" }, - {"key": "◯", "characters": "\u25EF" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "⨀", "characters": "\u2A00" }, - {"key": "⨁", "characters": "\u2A01" }, - {"key": "⨂", "characters": "\u2A02" }, - {"key": "⨆", "characters": "\u2A06" }, - {"key": "★", "characters": "\u2605" }, - {"key": "▽", "characters": "\u25BD" }, - {"key": "△", "characters": "\u25B3" }, - {"key": "⨄", "characters": "\u2A04" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "⤍", "characters": "\u290D" }, - {"key": "⧫", "characters": "\u29EB" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "▴", "characters": "\u25B4" }, - {"key": "▾", "characters": "\u25BE" }, - {"key": "◂", "characters": "\u25C2" }, - {"key": "▸", "characters": "\u25B8" }, - {"key": "␣", "characters": "\u2423" }, - {"key": "▒", "characters": "\u2592" }, - {"key": "░", "characters": "\u2591" }, - {"key": "▓", "characters": "\u2593" }, - {"key": "█", "characters": "\u2588" }, - - - {"key": "⫭", "characters": "\u2AED" }, - {"key": "⌐", "characters": "\u2310" }, - - - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⋈", "characters": "\u22C8" }, - {"key": "⧉", "characters": "\u29C9" }, - {"key": "┐", "characters": "\u2510" }, - {"key": "╕", "characters": "\u2555" }, - {"key": "╖", "characters": "\u2556" }, - {"key": "╗", "characters": "\u2557" }, - {"key": "┌", "characters": "\u250C" }, - {"key": "╒", "characters": "\u2552" }, - {"key": "╓", "characters": "\u2553" }, - {"key": "╔", "characters": "\u2554" }, - {"key": "─", "characters": "\u2500" }, - {"key": "═", "characters": "\u2550" }, - {"key": "┬", "characters": "\u252C" }, - {"key": "╤", "characters": "\u2564" }, - {"key": "╥", "characters": "\u2565" }, - {"key": "╦", "characters": "\u2566" }, - {"key": "┴", "characters": "\u2534" }, - {"key": "╧", "characters": "\u2567" }, - {"key": "╨", "characters": "\u2568" }, - {"key": "╩", "characters": "\u2569" }, - {"key": "⊟", "characters": "\u229F" }, - {"key": "⊞", "characters": "\u229E" }, - {"key": "⊠", "characters": "\u22A0" }, - {"key": "┘", "characters": "\u2518" }, - {"key": "╛", "characters": "\u255B" }, - {"key": "╜", "characters": "\u255C" }, - {"key": "╝", "characters": "\u255D" }, - {"key": "└", "characters": "\u2514" }, - {"key": "╘", "characters": "\u2558" }, - {"key": "╙", "characters": "\u2559" }, - {"key": "╚", "characters": "\u255A" }, - {"key": "│", "characters": "\u2502" }, - {"key": "║", "characters": "\u2551" }, - {"key": "┼", "characters": "\u253C" }, - {"key": "╪", "characters": "\u256A" }, - {"key": "╫", "characters": "\u256B" }, - {"key": "╬", "characters": "\u256C" }, - {"key": "┤", "characters": "\u2524" }, - {"key": "╡", "characters": "\u2561" }, - {"key": "╢", "characters": "\u2562" }, - {"key": "╣", "characters": "\u2563" }, - {"key": "├", "characters": "\u251C" }, - {"key": "╞", "characters": "\u255E" }, - {"key": "╟", "characters": "\u255F" }, - {"key": "╠", "characters": "\u2560" }, - {"key": "‵", "characters": "\u2035" }, - {"key": "˘", "characters": "\u02D8" }, - {"key": "˘", "characters": "\u02D8" }, - {"key": "¦", "characters": "\u00A6" }, - {"key": "¦", "characters": "\u00A6" }, - - {"key": "ℬ", "characters": "\u212C" }, - {"key": "⁏", "characters": "\u204F" }, - {"key": "∽", "characters": "\u223D" }, - {"key": "⋍", "characters": "\u22CD" }, - {"key": "⧅", "characters": "\u29C5" }, - {"key": "\", "characters": "\u005C" }, - {"key": "⟈", "characters": "\u27C8" }, - {"key": "•", "characters": "\u2022" }, - {"key": "•", "characters": "\u2022" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "⪮", "characters": "\u2AAE" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "Ć", "characters": "\u0106" }, - {"key": "ć", "characters": "\u0107" }, - {"key": "⩄", "characters": "\u2A44" }, - {"key": "⩉", "characters": "\u2A49" }, - {"key": "⩋", "characters": "\u2A4B" }, - {"key": "∩", "characters": "\u2229" }, - {"key": "⋒", "characters": "\u22D2" }, - {"key": "⩇", "characters": "\u2A47" }, - {"key": "⩀", "characters": "\u2A40" }, - {"key": "ⅅ", "characters": "\u2145" }, - - {"key": "⁁", "characters": "\u2041" }, - {"key": "ˇ", "characters": "\u02C7" }, - {"key": "ℭ", "characters": "\u212D" }, - {"key": "⩍", "characters": "\u2A4D" }, - {"key": "Č", "characters": "\u010C" }, - {"key": "č", "characters": "\u010D" }, - {"key": "Ç", "characters": "\u00C7" }, - {"key": "Ç", "characters": "\u00C7" }, - {"key": "ç", "characters": "\u00E7" }, - {"key": "ç", "characters": "\u00E7" }, - {"key": "Ĉ", "characters": "\u0108" }, - {"key": "ĉ", "characters": "\u0109" }, - {"key": "∰", "characters": "\u2230" }, - {"key": "⩌", "characters": "\u2A4C" }, - {"key": "⩐", "characters": "\u2A50" }, - {"key": "Ċ", "characters": "\u010A" }, - {"key": "ċ", "characters": "\u010B" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "¸", "characters": "\u00B8" }, - {"key": "⦲", "characters": "\u29B2" }, - {"key": "¢", "characters": "\u00A2" }, - {"key": "¢", "characters": "\u00A2" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "·", "characters": "\u00B7" }, - - {"key": "ℭ", "characters": "\u212D" }, - {"key": "Ч", "characters": "\u0427" }, - {"key": "ч", "characters": "\u0447" }, - {"key": "✓", "characters": "\u2713" }, - {"key": "✓", "characters": "\u2713" }, - {"key": "Χ", "characters": "\u03A7" }, - {"key": "χ", "characters": "\u03C7" }, - {"key": "ˆ", "characters": "\u02C6" }, - {"key": "≗", "characters": "\u2257" }, - {"key": "↺", "characters": "\u21BA" }, - {"key": "↻", "characters": "\u21BB" }, - {"key": "⊛", "characters": "\u229B" }, - {"key": "⊚", "characters": "\u229A" }, - {"key": "⊝", "characters": "\u229D" }, - {"key": "⊙", "characters": "\u2299" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "Ⓢ", "characters": "\u24C8" }, - {"key": "⊖", "characters": "\u2296" }, - {"key": "⊕", "characters": "\u2295" }, - {"key": "⊗", "characters": "\u2297" }, - {"key": "○", "characters": "\u25CB" }, - {"key": "⧃", "characters": "\u29C3" }, - {"key": "≗", "characters": "\u2257" }, - {"key": "⨐", "characters": "\u2A10" }, - {"key": "⫯", "characters": "\u2AEF" }, - {"key": "⧂", "characters": "\u29C2" }, - {"key": "∲", "characters": "\u2232" }, - {"key": "”", "characters": "\u201D" }, - {"key": "’", "characters": "\u2019" }, - {"key": "♣", "characters": "\u2663" }, - {"key": "♣", "characters": "\u2663" }, - {"key": ":", "characters": "\u003A" }, - {"key": "∷", "characters": "\u2237" }, - {"key": "⩴", "characters": "\u2A74" }, - {"key": "≔", "characters": "\u2254" }, - {"key": "≔", "characters": "\u2254" }, - {"key": ",", "characters": "\u002C" }, - {"key": "@", "characters": "\u0040" }, - {"key": "∁", "characters": "\u2201" }, - {"key": "∘", "characters": "\u2218" }, - {"key": "∁", "characters": "\u2201" }, - {"key": "ℂ", "characters": "\u2102" }, - {"key": "≅", "characters": "\u2245" }, - {"key": "⩭", "characters": "\u2A6D" }, - {"key": "≡", "characters": "\u2261" }, - {"key": "∮", "characters": "\u222E" }, - {"key": "∯", "characters": "\u222F" }, - {"key": "∮", "characters": "\u222E" }, - - {"key": "ℂ", "characters": "\u2102" }, - {"key": "∐", "characters": "\u2210" }, - {"key": "∐", "characters": "\u2210" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "©", "characters": "\u00A9" }, - {"key": "℗", "characters": "\u2117" }, - {"key": "∳", "characters": "\u2233" }, - {"key": "↵", "characters": "\u21B5" }, - {"key": "✗", "characters": "\u2717" }, - {"key": "⨯", "characters": "\u2A2F" }, - - - {"key": "⫏", "characters": "\u2ACF" }, - {"key": "⫑", "characters": "\u2AD1" }, - {"key": "⫐", "characters": "\u2AD0" }, - {"key": "⫒", "characters": "\u2AD2" }, - {"key": "⋯", "characters": "\u22EF" }, - {"key": "⤸", "characters": "\u2938" }, - {"key": "⤵", "characters": "\u2935" }, - {"key": "⋞", "characters": "\u22DE" }, - {"key": "⋟", "characters": "\u22DF" }, - {"key": "↶", "characters": "\u21B6" }, - {"key": "⤽", "characters": "\u293D" }, - {"key": "⩈", "characters": "\u2A48" }, - {"key": "⩆", "characters": "\u2A46" }, - {"key": "≍", "characters": "\u224D" }, - {"key": "∪", "characters": "\u222A" }, - {"key": "⋓", "characters": "\u22D3" }, - {"key": "⩊", "characters": "\u2A4A" }, - {"key": "⊍", "characters": "\u228D" }, - {"key": "⩅", "characters": "\u2A45" }, - - {"key": "↷", "characters": "\u21B7" }, - {"key": "⤼", "characters": "\u293C" }, - {"key": "⋞", "characters": "\u22DE" }, - {"key": "⋟", "characters": "\u22DF" }, - {"key": "⋎", "characters": "\u22CE" }, - {"key": "⋏", "characters": "\u22CF" }, - {"key": "¤", "characters": "\u00A4" }, - {"key": "¤", "characters": "\u00A4" }, - {"key": "↶", "characters": "\u21B6" }, - {"key": "↷", "characters": "\u21B7" }, - {"key": "⋎", "characters": "\u22CE" }, - {"key": "⋏", "characters": "\u22CF" }, - {"key": "∲", "characters": "\u2232" }, - {"key": "∱", "characters": "\u2231" }, - {"key": "⌭", "characters": "\u232D" }, - {"key": "†", "characters": "\u2020" }, - {"key": "‡", "characters": "\u2021" }, - {"key": "ℸ", "characters": "\u2138" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "↡", "characters": "\u21A1" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "‐", "characters": "\u2010" }, - {"key": "⫤", "characters": "\u2AE4" }, - {"key": "⊣", "characters": "\u22A3" }, - {"key": "⤏", "characters": "\u290F" }, - {"key": "˝", "characters": "\u02DD" }, - {"key": "Ď", "characters": "\u010E" }, - {"key": "ď", "characters": "\u010F" }, - {"key": "Д", "characters": "\u0414" }, - {"key": "д", "characters": "\u0434" }, - {"key": "‡", "characters": "\u2021" }, - {"key": "⇊", "characters": "\u21CA" }, - {"key": "ⅅ", "characters": "\u2145" }, - {"key": "ⅆ", "characters": "\u2146" }, - {"key": "⤑", "characters": "\u2911" }, - {"key": "⩷", "characters": "\u2A77" }, - {"key": "°", "characters": "\u00B0" }, - {"key": "°", "characters": "\u00B0" }, - {"key": "∇", "characters": "\u2207" }, - {"key": "Δ", "characters": "\u0394" }, - {"key": "δ", "characters": "\u03B4" }, - {"key": "⦱", "characters": "\u29B1" }, - {"key": "⥿", "characters": "\u297F" }, - - - {"key": "⥥", "characters": "\u2965" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "´", "characters": "\u00B4" }, - {"key": "˙", "characters": "\u02D9" }, - {"key": "˝", "characters": "\u02DD" }, - {"key": "`", "characters": "\u0060" }, - {"key": "˜", "characters": "\u02DC" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "⋄", "characters": "\u22C4" }, - {"key": "♦", "characters": "\u2666" }, - {"key": "♦", "characters": "\u2666" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "ⅆ", "characters": "\u2146" }, - {"key": "ϝ", "characters": "\u03DD" }, - {"key": "⋲", "characters": "\u22F2" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "÷", "characters": "\u00F7" }, - {"key": "⋇", "characters": "\u22C7" }, - {"key": "⋇", "characters": "\u22C7" }, - {"key": "Ђ", "characters": "\u0402" }, - {"key": "ђ", "characters": "\u0452" }, - {"key": "⌞", "characters": "\u231E" }, - {"key": "⌍", "characters": "\u230D" }, - {"key": "$", "characters": "\u0024" }, - - - {"key": "¨", "characters": "\u00A8" }, - {"key": "˙", "characters": "\u02D9" }, - {"key": "⃜", "characters": "\u20DC" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "≑", "characters": "\u2251" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "∸", "characters": "\u2238" }, - {"key": "∔", "characters": "\u2214" }, - {"key": "⊡", "characters": "\u22A1" }, - {"key": "⌆", "characters": "\u2306" }, - {"key": "∯", "characters": "\u222F" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "⫤", "characters": "\u2AE4" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "⟹", "characters": "\u27F9" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⊨", "characters": "\u22A8" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⤓", "characters": "\u2913" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "⇓", "characters": "\u21D3" }, - {"key": "⇵", "characters": "\u21F5" }, - {"key": "̑", "characters": "\u0311" }, - {"key": "⇊", "characters": "\u21CA" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "⥐", "characters": "\u2950" }, - {"key": "⥞", "characters": "\u295E" }, - {"key": "⥖", "characters": "\u2956" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "⥟", "characters": "\u295F" }, - {"key": "⥗", "characters": "\u2957" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "↧", "characters": "\u21A7" }, - {"key": "⊤", "characters": "\u22A4" }, - {"key": "⤐", "characters": "\u2910" }, - {"key": "⌟", "characters": "\u231F" }, - {"key": "⌌", "characters": "\u230C" }, - - - {"key": "Ѕ", "characters": "\u0405" }, - {"key": "ѕ", "characters": "\u0455" }, - {"key": "⧶", "characters": "\u29F6" }, - {"key": "Đ", "characters": "\u0110" }, - {"key": "đ", "characters": "\u0111" }, - {"key": "⋱", "characters": "\u22F1" }, - {"key": "▿", "characters": "\u25BF" }, - {"key": "▾", "characters": "\u25BE" }, - {"key": "⇵", "characters": "\u21F5" }, - {"key": "⥯", "characters": "\u296F" }, - {"key": "⦦", "characters": "\u29A6" }, - {"key": "Џ", "characters": "\u040F" }, - {"key": "џ", "characters": "\u045F" }, - {"key": "⟿", "characters": "\u27FF" }, - {"key": "É", "characters": "\u00C9" }, - {"key": "É", "characters": "\u00C9" }, - {"key": "é", "characters": "\u00E9" }, - {"key": "é", "characters": "\u00E9" }, - {"key": "⩮", "characters": "\u2A6E" }, - {"key": "Ě", "characters": "\u011A" }, - {"key": "ě", "characters": "\u011B" }, - {"key": "Ê", "characters": "\u00CA" }, - {"key": "Ê", "characters": "\u00CA" }, - {"key": "ê", "characters": "\u00EA" }, - {"key": "ê", "characters": "\u00EA" }, - {"key": "≖", "characters": "\u2256" }, - {"key": "≕", "characters": "\u2255" }, - {"key": "Э", "characters": "\u042D" }, - {"key": "э", "characters": "\u044D" }, - {"key": "⩷", "characters": "\u2A77" }, - {"key": "Ė", "characters": "\u0116" }, - {"key": "ė", "characters": "\u0117" }, - {"key": "≑", "characters": "\u2251" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "≒", "characters": "\u2252" }, - - - {"key": "⪚", "characters": "\u2A9A" }, - {"key": "È", "characters": "\u00C8" }, - {"key": "È", "characters": "\u00C8" }, - {"key": "è", "characters": "\u00E8" }, - {"key": "è", "characters": "\u00E8" }, - {"key": "⪖", "characters": "\u2A96" }, - {"key": "⪘", "characters": "\u2A98" }, - {"key": "⪙", "characters": "\u2A99" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⏧", "characters": "\u23E7" }, - {"key": "ℓ", "characters": "\u2113" }, - {"key": "⪕", "characters": "\u2A95" }, - {"key": "⪗", "characters": "\u2A97" }, - {"key": "Ē", "characters": "\u0112" }, - {"key": "ē", "characters": "\u0113" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "◻", "characters": "\u25FB" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "▫", "characters": "\u25AB" }, - {"key": " ", "characters": "\u2004" }, - {"key": " ", "characters": "\u2005" }, - {"key": " ", "characters": "\u2003" }, - {"key": "Ŋ", "characters": "\u014A" }, - {"key": "ŋ", "characters": "\u014B" }, - {"key": " ", "characters": "\u2002" }, - {"key": "Ę", "characters": "\u0118" }, - {"key": "ę", "characters": "\u0119" }, - - - {"key": "⋕", "characters": "\u22D5" }, - {"key": "⧣", "characters": "\u29E3" }, - {"key": "⩱", "characters": "\u2A71" }, - {"key": "ε", "characters": "\u03B5" }, - {"key": "Ε", "characters": "\u0395" }, - {"key": "ε", "characters": "\u03B5" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "≖", "characters": "\u2256" }, - {"key": "≕", "characters": "\u2255" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "⪖", "characters": "\u2A96" }, - {"key": "⪕", "characters": "\u2A95" }, - {"key": "⩵", "characters": "\u2A75" }, - {"key": "=", "characters": "\u003D" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "≟", "characters": "\u225F" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "≡", "characters": "\u2261" }, - {"key": "⩸", "characters": "\u2A78" }, - {"key": "⧥", "characters": "\u29E5" }, - {"key": "⥱", "characters": "\u2971" }, - {"key": "≓", "characters": "\u2253" }, - {"key": "ℯ", "characters": "\u212F" }, - {"key": "ℰ", "characters": "\u2130" }, - {"key": "≐", "characters": "\u2250" }, - {"key": "⩳", "characters": "\u2A73" }, - {"key": "≂", "characters": "\u2242" }, - {"key": "Η", "characters": "\u0397" }, - {"key": "η", "characters": "\u03B7" }, - {"key": "Ð", "characters": "\u00D0" }, - {"key": "Ð", "characters": "\u00D0" }, - {"key": "ð", "characters": "\u00F0" }, - {"key": "ð", "characters": "\u00F0" }, - {"key": "Ë", "characters": "\u00CB" }, - {"key": "Ë", "characters": "\u00CB" }, - {"key": "ë", "characters": "\u00EB" }, - {"key": "ë", "characters": "\u00EB" }, - {"key": "€", "characters": "\u20AC" }, - {"key": "!", "characters": "\u0021" }, - {"key": "∃", "characters": "\u2203" }, - {"key": "∃", "characters": "\u2203" }, - {"key": "ℰ", "characters": "\u2130" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "ⅇ", "characters": "\u2147" }, - {"key": "≒", "characters": "\u2252" }, - {"key": "Ф", "characters": "\u0424" }, - {"key": "ф", "characters": "\u0444" }, - {"key": "♀", "characters": "\u2640" }, - {"key": "ffi", "characters": "\uFB03" }, - {"key": "ff", "characters": "\uFB00" }, - {"key": "ffl", "characters": "\uFB04" }, - - - {"key": "fi", "characters": "\uFB01" }, - {"key": "◼", "characters": "\u25FC" }, - {"key": "▪", "characters": "\u25AA" }, - - {"key": "♭", "characters": "\u266D" }, - {"key": "fl", "characters": "\uFB02" }, - {"key": "▱", "characters": "\u25B1" }, - {"key": "ƒ", "characters": "\u0192" }, - - - {"key": "∀", "characters": "\u2200" }, - {"key": "∀", "characters": "\u2200" }, - {"key": "⋔", "characters": "\u22D4" }, - {"key": "⫙", "characters": "\u2AD9" }, - {"key": "ℱ", "characters": "\u2131" }, - {"key": "⨍", "characters": "\u2A0D" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "⅓", "characters": "\u2153" }, - {"key": "¼", "characters": "\u00BC" }, - {"key": "¼", "characters": "\u00BC" }, - {"key": "⅕", "characters": "\u2155" }, - {"key": "⅙", "characters": "\u2159" }, - {"key": "⅛", "characters": "\u215B" }, - {"key": "⅔", "characters": "\u2154" }, - {"key": "⅖", "characters": "\u2156" }, - {"key": "¾", "characters": "\u00BE" }, - {"key": "¾", "characters": "\u00BE" }, - {"key": "⅗", "characters": "\u2157" }, - {"key": "⅜", "characters": "\u215C" }, - {"key": "⅘", "characters": "\u2158" }, - {"key": "⅚", "characters": "\u215A" }, - {"key": "⅝", "characters": "\u215D" }, - {"key": "⅞", "characters": "\u215E" }, - {"key": "⁄", "characters": "\u2044" }, - {"key": "⌢", "characters": "\u2322" }, - - {"key": "ℱ", "characters": "\u2131" }, - {"key": "ǵ", "characters": "\u01F5" }, - {"key": "Γ", "characters": "\u0393" }, - {"key": "γ", "characters": "\u03B3" }, - {"key": "Ϝ", "characters": "\u03DC" }, - {"key": "ϝ", "characters": "\u03DD" }, - {"key": "⪆", "characters": "\u2A86" }, - {"key": "Ğ", "characters": "\u011E" }, - {"key": "ğ", "characters": "\u011F" }, - {"key": "Ģ", "characters": "\u0122" }, - {"key": "Ĝ", "characters": "\u011C" }, - {"key": "ĝ", "characters": "\u011D" }, - {"key": "Г", "characters": "\u0413" }, - {"key": "г", "characters": "\u0433" }, - {"key": "Ġ", "characters": "\u0120" }, - {"key": "ġ", "characters": "\u0121" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⪌", "characters": "\u2A8C" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "⪩", "characters": "\u2AA9" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "⪀", "characters": "\u2A80" }, - {"key": "⪂", "characters": "\u2A82" }, - {"key": "⪄", "characters": "\u2A84" }, - - {"key": "⪔", "characters": "\u2A94" }, - - - {"key": "≫", "characters": "\u226B" }, - {"key": "⋙", "characters": "\u22D9" }, - {"key": "⋙", "characters": "\u22D9" }, - {"key": "ℷ", "characters": "\u2137" }, - {"key": "Ѓ", "characters": "\u0403" }, - {"key": "ѓ", "characters": "\u0453" }, - {"key": "⪥", "characters": "\u2AA5" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "⪒", "characters": "\u2A92" }, - {"key": "⪤", "characters": "\u2AA4" }, - {"key": "⪊", "characters": "\u2A8A" }, - {"key": "⪊", "characters": "\u2A8A" }, - {"key": "⪈", "characters": "\u2A88" }, - {"key": "≩", "characters": "\u2269" }, - {"key": "⪈", "characters": "\u2A88" }, - {"key": "≩", "characters": "\u2269" }, - {"key": "⋧", "characters": "\u22E7" }, - - - {"key": "`", "characters": "\u0060" }, - {"key": "≥", "characters": "\u2265" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "≧", "characters": "\u2267" }, - {"key": "⪢", "characters": "\u2AA2" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "⩾", "characters": "\u2A7E" }, - {"key": "≳", "characters": "\u2273" }, - - {"key": "ℊ", "characters": "\u210A" }, - {"key": "≳", "characters": "\u2273" }, - {"key": "⪎", "characters": "\u2A8E" }, - {"key": "⪐", "characters": "\u2A90" }, - {"key": "⪧", "characters": "\u2AA7" }, - {"key": "⩺", "characters": "\u2A7A" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": ">", "characters": "\u003E" }, - {"key": "≫", "characters": "\u226B" }, - {"key": "⋗", "characters": "\u22D7" }, - {"key": "⦕", "characters": "\u2995" }, - {"key": "⩼", "characters": "\u2A7C" }, - {"key": "⪆", "characters": "\u2A86" }, - {"key": "⥸", "characters": "\u2978" }, - {"key": "⋗", "characters": "\u22D7" }, - {"key": "⋛", "characters": "\u22DB" }, - {"key": "⪌", "characters": "\u2A8C" }, - {"key": "≷", "characters": "\u2277" }, - {"key": "≳", "characters": "\u2273" }, - - - {"key": "ˇ", "characters": "\u02C7" }, - {"key": " ", "characters": "\u200A" }, - {"key": "½", "characters": "\u00BD" }, - {"key": "ℋ", "characters": "\u210B" }, - {"key": "Ъ", "characters": "\u042A" }, - {"key": "ъ", "characters": "\u044A" }, - {"key": "⥈", "characters": "\u2948" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "↭", "characters": "\u21AD" }, - {"key": "^", "characters": "\u005E" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "Ĥ", "characters": "\u0124" }, - {"key": "ĥ", "characters": "\u0125" }, - {"key": "♥", "characters": "\u2665" }, - {"key": "♥", "characters": "\u2665" }, - {"key": "…", "characters": "\u2026" }, - {"key": "⊹", "characters": "\u22B9" }, - - {"key": "ℌ", "characters": "\u210C" }, - {"key": "ℋ", "characters": "\u210B" }, - {"key": "⤥", "characters": "\u2925" }, - {"key": "⤦", "characters": "\u2926" }, - {"key": "⇿", "characters": "\u21FF" }, - {"key": "∻", "characters": "\u223B" }, - {"key": "↩", "characters": "\u21A9" }, - {"key": "↪", "characters": "\u21AA" }, - - {"key": "ℍ", "characters": "\u210D" }, - {"key": "―", "characters": "\u2015" }, - {"key": "─", "characters": "\u2500" }, - - {"key": "ℋ", "characters": "\u210B" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "Ħ", "characters": "\u0126" }, - {"key": "ħ", "characters": "\u0127" }, - {"key": "≎", "characters": "\u224E" }, - {"key": "≏", "characters": "\u224F" }, - {"key": "⁃", "characters": "\u2043" }, - {"key": "‐", "characters": "\u2010" }, - {"key": "Í", "characters": "\u00CD" }, - {"key": "Í", "characters": "\u00CD" }, - {"key": "í", "characters": "\u00ED" }, - {"key": "í", "characters": "\u00ED" }, - {"key": "⁣", "characters": "\u2063" }, - {"key": "Î", "characters": "\u00CE" }, - {"key": "Î", "characters": "\u00CE" }, - {"key": "î", "characters": "\u00EE" }, - {"key": "î", "characters": "\u00EE" }, - {"key": "И", "characters": "\u0418" }, - {"key": "и", "characters": "\u0438" }, - {"key": "İ", "characters": "\u0130" }, - {"key": "Е", "characters": "\u0415" }, - {"key": "е", "characters": "\u0435" }, - {"key": "¡", "characters": "\u00A1" }, - {"key": "¡", "characters": "\u00A1" }, - {"key": "⇔", "characters": "\u21D4" }, - - {"key": "ℑ", "characters": "\u2111" }, - {"key": "Ì", "characters": "\u00CC" }, - {"key": "Ì", "characters": "\u00CC" }, - {"key": "ì", "characters": "\u00EC" }, - {"key": "ì", "characters": "\u00EC" }, - {"key": "ⅈ", "characters": "\u2148" }, - {"key": "⨌", "characters": "\u2A0C" }, - {"key": "∭", "characters": "\u222D" }, - {"key": "⧜", "characters": "\u29DC" }, - {"key": "℩", "characters": "\u2129" }, - {"key": "IJ", "characters": "\u0132" }, - {"key": "ij", "characters": "\u0133" }, - {"key": "Ī", "characters": "\u012A" }, - {"key": "ī", "characters": "\u012B" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "ⅈ", "characters": "\u2148" }, - {"key": "ℐ", "characters": "\u2110" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "ı", "characters": "\u0131" }, - {"key": "ℑ", "characters": "\u2111" }, - {"key": "⊷", "characters": "\u22B7" }, - {"key": "Ƶ", "characters": "\u01B5" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "℅", "characters": "\u2105" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "∞", "characters": "\u221E" }, - {"key": "⧝", "characters": "\u29DD" }, - {"key": "ı", "characters": "\u0131" }, - {"key": "⊺", "characters": "\u22BA" }, - {"key": "∫", "characters": "\u222B" }, - {"key": "∬", "characters": "\u222C" }, - {"key": "ℤ", "characters": "\u2124" }, - {"key": "∫", "characters": "\u222B" }, - {"key": "⊺", "characters": "\u22BA" }, - {"key": "⋂", "characters": "\u22C2" }, - {"key": "⨗", "characters": "\u2A17" }, - {"key": "⨼", "characters": "\u2A3C" }, - {"key": "⁣", "characters": "\u2063" }, - {"key": "⁢", "characters": "\u2062" }, - {"key": "Ё", "characters": "\u0401" }, - {"key": "ё", "characters": "\u0451" }, - {"key": "Į", "characters": "\u012E" }, - {"key": "į", "characters": "\u012F" }, - - - {"key": "Ι", "characters": "\u0399" }, - {"key": "ι", "characters": "\u03B9" }, - {"key": "⨼", "characters": "\u2A3C" }, - {"key": "¿", "characters": "\u00BF" }, - {"key": "¿", "characters": "\u00BF" }, - - {"key": "ℐ", "characters": "\u2110" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⋵", "characters": "\u22F5" }, - {"key": "⋹", "characters": "\u22F9" }, - {"key": "⋴", "characters": "\u22F4" }, - {"key": "⋳", "characters": "\u22F3" }, - {"key": "∈", "characters": "\u2208" }, - {"key": "⁢", "characters": "\u2062" }, - {"key": "Ĩ", "characters": "\u0128" }, - {"key": "ĩ", "characters": "\u0129" }, - {"key": "І", "characters": "\u0406" }, - {"key": "і", "characters": "\u0456" }, - {"key": "Ï", "characters": "\u00CF" }, - {"key": "Ï", "characters": "\u00CF" }, - {"key": "ï", "characters": "\u00EF" }, - {"key": "ï", "characters": "\u00EF" }, - {"key": "Ĵ", "characters": "\u0134" }, - {"key": "ĵ", "characters": "\u0135" }, - {"key": "Й", "characters": "\u0419" }, - {"key": "й", "characters": "\u0439" }, - - - {"key": "ȷ", "characters": "\u0237" }, - - - - - {"key": "Ј", "characters": "\u0408" }, - {"key": "ј", "characters": "\u0458" }, - {"key": "Є", "characters": "\u0404" }, - {"key": "є", "characters": "\u0454" }, - {"key": "Κ", "characters": "\u039A" }, - {"key": "κ", "characters": "\u03BA" }, - {"key": "ϰ", "characters": "\u03F0" }, - {"key": "Ķ", "characters": "\u0136" }, - {"key": "ķ", "characters": "\u0137" }, - {"key": "К", "characters": "\u041A" }, - {"key": "к", "characters": "\u043A" }, - - - {"key": "ĸ", "characters": "\u0138" }, - {"key": "Х", "characters": "\u0425" }, - {"key": "х", "characters": "\u0445" }, - {"key": "Ќ", "characters": "\u040C" }, - {"key": "ќ", "characters": "\u045C" }, - - - - - {"key": "⇚", "characters": "\u21DA" }, - {"key": "Ĺ", "characters": "\u0139" }, - {"key": "ĺ", "characters": "\u013A" }, - {"key": "⦴", "characters": "\u29B4" }, - {"key": "ℒ", "characters": "\u2112" }, - {"key": "Λ", "characters": "\u039B" }, - {"key": "λ", "characters": "\u03BB" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⟪", "characters": "\u27EA" }, - {"key": "⦑", "characters": "\u2991" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⪅", "characters": "\u2A85" }, - {"key": "ℒ", "characters": "\u2112" }, - {"key": "«", "characters": "\u00AB" }, - {"key": "«", "characters": "\u00AB" }, - {"key": "⇤", "characters": "\u21E4" }, - {"key": "⤟", "characters": "\u291F" }, - {"key": "←", "characters": "\u2190" }, - {"key": "↞", "characters": "\u219E" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⤝", "characters": "\u291D" }, - {"key": "↩", "characters": "\u21A9" }, - {"key": "↫", "characters": "\u21AB" }, - {"key": "⤹", "characters": "\u2939" }, - {"key": "⥳", "characters": "\u2973" }, - {"key": "↢", "characters": "\u21A2" }, - {"key": "⤙", "characters": "\u2919" }, - {"key": "⤛", "characters": "\u291B" }, - {"key": "⪫", "characters": "\u2AAB" }, - {"key": "⪭", "characters": "\u2AAD" }, - - {"key": "⤌", "characters": "\u290C" }, - {"key": "⤎", "characters": "\u290E" }, - {"key": "❲", "characters": "\u2772" }, - {"key": "{", "characters": "\u007B" }, - {"key": "[", "characters": "\u005B" }, - {"key": "⦋", "characters": "\u298B" }, - {"key": "⦏", "characters": "\u298F" }, - {"key": "⦍", "characters": "\u298D" }, - {"key": "Ľ", "characters": "\u013D" }, - {"key": "ľ", "characters": "\u013E" }, - {"key": "Ļ", "characters": "\u013B" }, - {"key": "ļ", "characters": "\u013C" }, - {"key": "⌈", "characters": "\u2308" }, - {"key": "{", "characters": "\u007B" }, - {"key": "Л", "characters": "\u041B" }, - {"key": "л", "characters": "\u043B" }, - {"key": "⤶", "characters": "\u2936" }, - {"key": "“", "characters": "\u201C" }, - {"key": "„", "characters": "\u201E" }, - {"key": "⥧", "characters": "\u2967" }, - {"key": "⥋", "characters": "\u294B" }, - {"key": "↲", "characters": "\u21B2" }, - {"key": "≤", "characters": "\u2264" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "⟨", "characters": "\u27E8" }, - {"key": "⇤", "characters": "\u21E4" }, - {"key": "←", "characters": "\u2190" }, - {"key": "←", "characters": "\u2190" }, - {"key": "⇐", "characters": "\u21D0" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "↢", "characters": "\u21A2" }, - {"key": "⌈", "characters": "\u2308" }, - {"key": "⟦", "characters": "\u27E6" }, - {"key": "⥡", "characters": "\u2961" }, - {"key": "⥙", "characters": "\u2959" }, - {"key": "⇃", "characters": "\u21C3" }, - {"key": "⌊", "characters": "\u230A" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⇇", "characters": "\u21C7" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "↔", "characters": "\u2194" }, - {"key": "⇔", "characters": "\u21D4" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "↭", "characters": "\u21AD" }, - {"key": "⥎", "characters": "\u294E" }, - {"key": "↤", "characters": "\u21A4" }, - {"key": "⊣", "characters": "\u22A3" }, - {"key": "⥚", "characters": "\u295A" }, - {"key": "⋋", "characters": "\u22CB" }, - {"key": "⧏", "characters": "\u29CF" }, - {"key": "⊲", "characters": "\u22B2" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "⥑", "characters": "\u2951" }, - {"key": "⥠", "characters": "\u2960" }, - {"key": "⥘", "characters": "\u2958" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "⥒", "characters": "\u2952" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⪋", "characters": "\u2A8B" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "≤", "characters": "\u2264" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "⪨", "characters": "\u2AA8" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "⩿", "characters": "\u2A7F" }, - {"key": "⪁", "characters": "\u2A81" }, - {"key": "⪃", "characters": "\u2A83" }, - - {"key": "⪓", "characters": "\u2A93" }, - {"key": "⪅", "characters": "\u2A85" }, - {"key": "⋖", "characters": "\u22D6" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "⪋", "characters": "\u2A8B" }, - {"key": "⋚", "characters": "\u22DA" }, - {"key": "≦", "characters": "\u2266" }, - {"key": "≶", "characters": "\u2276" }, - {"key": "≶", "characters": "\u2276" }, - {"key": "⪡", "characters": "\u2AA1" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⩽", "characters": "\u2A7D" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⥼", "characters": "\u297C" }, - {"key": "⌊", "characters": "\u230A" }, - - - {"key": "≶", "characters": "\u2276" }, - {"key": "⪑", "characters": "\u2A91" }, - {"key": "⥢", "characters": "\u2962" }, - {"key": "↽", "characters": "\u21BD" }, - {"key": "↼", "characters": "\u21BC" }, - {"key": "⥪", "characters": "\u296A" }, - {"key": "▄", "characters": "\u2584" }, - {"key": "Љ", "characters": "\u0409" }, - {"key": "љ", "characters": "\u0459" }, - {"key": "⇇", "characters": "\u21C7" }, - {"key": "≪", "characters": "\u226A" }, - {"key": "⋘", "characters": "\u22D8" }, - {"key": "⌞", "characters": "\u231E" }, - {"key": "⇚", "characters": "\u21DA" }, - {"key": "⥫", "characters": "\u296B" }, - {"key": "◺", "characters": "\u25FA" }, - {"key": "Ŀ", "characters": "\u013F" }, - {"key": "ŀ", "characters": "\u0140" }, - {"key": "⎰", "characters": "\u23B0" }, - {"key": "⎰", "characters": "\u23B0" }, - {"key": "⪉", "characters": "\u2A89" }, - {"key": "⪉", "characters": "\u2A89" }, - {"key": "⪇", "characters": "\u2A87" }, - {"key": "≨", "characters": "\u2268" }, - {"key": "⪇", "characters": "\u2A87" }, - {"key": "≨", "characters": "\u2268" }, - {"key": "⋦", "characters": "\u22E6" }, - {"key": "⟬", "characters": "\u27EC" }, - {"key": "⇽", "characters": "\u21FD" }, - {"key": "⟦", "characters": "\u27E6" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "⟼", "characters": "\u27FC" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟹", "characters": "\u27F9" }, - {"key": "↫", "characters": "\u21AB" }, - {"key": "↬", "characters": "\u21AC" }, - {"key": "⦅", "characters": "\u2985" }, - - - {"key": "⨭", "characters": "\u2A2D" }, - {"key": "⨴", "characters": "\u2A34" }, - {"key": "∗", "characters": "\u2217" }, - {"key": "_", "characters": "\u005F" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "◊", "characters": "\u25CA" }, - {"key": "◊", "characters": "\u25CA" }, - {"key": "⧫", "characters": "\u29EB" }, - {"key": "(", "characters": "\u0028" }, - {"key": "⦓", "characters": "\u2993" }, - {"key": "⇆", "characters": "\u21C6" }, - {"key": "⌟", "characters": "\u231F" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "⥭", "characters": "\u296D" }, - {"key": "‎", "characters": "\u200E" }, - {"key": "⊿", "characters": "\u22BF" }, - {"key": "‹", "characters": "\u2039" }, - - {"key": "ℒ", "characters": "\u2112" }, - {"key": "↰", "characters": "\u21B0" }, - {"key": "↰", "characters": "\u21B0" }, - {"key": "≲", "characters": "\u2272" }, - {"key": "⪍", "characters": "\u2A8D" }, - {"key": "⪏", "characters": "\u2A8F" }, - {"key": "[", "characters": "\u005B" }, - {"key": "‘", "characters": "\u2018" }, - {"key": "‚", "characters": "\u201A" }, - {"key": "Ł", "characters": "\u0141" }, - {"key": "ł", "characters": "\u0142" }, - {"key": "⪦", "characters": "\u2AA6" }, - {"key": "⩹", "characters": "\u2A79" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "<", "characters": "\u003C" }, - {"key": "≪", "characters": "\u226A" }, - {"key": "⋖", "characters": "\u22D6" }, - {"key": "⋋", "characters": "\u22CB" }, - {"key": "⋉", "characters": "\u22C9" }, - {"key": "⥶", "characters": "\u2976" }, - {"key": "⩻", "characters": "\u2A7B" }, - {"key": "◃", "characters": "\u25C3" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "◂", "characters": "\u25C2" }, - {"key": "⦖", "characters": "\u2996" }, - {"key": "⥊", "characters": "\u294A" }, - {"key": "⥦", "characters": "\u2966" }, - - - {"key": "¯", "characters": "\u00AF" }, - {"key": "¯", "characters": "\u00AF" }, - {"key": "♂", "characters": "\u2642" }, - {"key": "✠", "characters": "\u2720" }, - {"key": "✠", "characters": "\u2720" }, - {"key": "⤅", "characters": "\u2905" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "↧", "characters": "\u21A7" }, - {"key": "↤", "characters": "\u21A4" }, - {"key": "↥", "characters": "\u21A5" }, - {"key": "▮", "characters": "\u25AE" }, - {"key": "⨩", "characters": "\u2A29" }, - {"key": "М", "characters": "\u041C" }, - {"key": "м", "characters": "\u043C" }, - {"key": "—", "characters": "\u2014" }, - {"key": "∺", "characters": "\u223A" }, - {"key": "∡", "characters": "\u2221" }, - {"key": " ", "characters": "\u205F" }, - {"key": "ℳ", "characters": "\u2133" }, - - - {"key": "℧", "characters": "\u2127" }, - {"key": "µ", "characters": "\u00B5" }, - {"key": "µ", "characters": "\u00B5" }, - {"key": "*", "characters": "\u002A" }, - {"key": "⫰", "characters": "\u2AF0" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "·", "characters": "\u00B7" }, - {"key": "⊟", "characters": "\u229F" }, - {"key": "−", "characters": "\u2212" }, - {"key": "∸", "characters": "\u2238" }, - {"key": "⨪", "characters": "\u2A2A" }, - {"key": "∓", "characters": "\u2213" }, - {"key": "⫛", "characters": "\u2ADB" }, - {"key": "…", "characters": "\u2026" }, - {"key": "∓", "characters": "\u2213" }, - {"key": "⊧", "characters": "\u22A7" }, - - - {"key": "∓", "characters": "\u2213" }, - - {"key": "ℳ", "characters": "\u2133" }, - {"key": "∾", "characters": "\u223E" }, - {"key": "Μ", "characters": "\u039C" }, - {"key": "μ", "characters": "\u03BC" }, - {"key": "⊸", "characters": "\u22B8" }, - {"key": "⊸", "characters": "\u22B8" }, - {"key": "∇", "characters": "\u2207" }, - {"key": "Ń", "characters": "\u0143" }, - {"key": "ń", "characters": "\u0144" }, - - {"key": "≉", "characters": "\u2249" }, - - - {"key": "ʼn", "characters": "\u0149" }, - {"key": "≉", "characters": "\u2249" }, - {"key": "♮", "characters": "\u266E" }, - {"key": "ℕ", "characters": "\u2115" }, - {"key": "♮", "characters": "\u266E" }, - {"key": " ", "characters": "\u00A0" }, - {"key": " ", "characters": "\u00A0" }, - - - {"key": "⩃", "characters": "\u2A43" }, - {"key": "Ň", "characters": "\u0147" }, - {"key": "ň", "characters": "\u0148" }, - {"key": "Ņ", "characters": "\u0145" }, - {"key": "ņ", "characters": "\u0146" }, - {"key": "≇", "characters": "\u2247" }, - - {"key": "⩂", "characters": "\u2A42" }, - {"key": "Н", "characters": "\u041D" }, - {"key": "н", "characters": "\u043D" }, - {"key": "–", "characters": "\u2013" }, - {"key": "⤤", "characters": "\u2924" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "⇗", "characters": "\u21D7" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "≠", "characters": "\u2260" }, - - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "​", "characters": "\u200B" }, - {"key": "≢", "characters": "\u2262" }, - {"key": "⤨", "characters": "\u2928" }, - - {"key": "≫", "characters": "\u226B" }, - {"key": "≪", "characters": "\u226A" }, - {"key": " ", "characters": "\u000A" }, - {"key": "∄", "characters": "\u2204" }, - {"key": "∄", "characters": "\u2204" }, - - - - {"key": "≱", "characters": "\u2271" }, - {"key": "≱", "characters": "\u2271" }, - - - - - {"key": "≵", "characters": "\u2275" }, - - {"key": "≯", "characters": "\u226F" }, - {"key": "≯", "characters": "\u226F" }, - - {"key": "↮", "characters": "\u21AE" }, - {"key": "⇎", "characters": "\u21CE" }, - {"key": "⫲", "characters": "\u2AF2" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "⋼", "characters": "\u22FC" }, - {"key": "⋺", "characters": "\u22FA" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "Њ", "characters": "\u040A" }, - {"key": "њ", "characters": "\u045A" }, - {"key": "↚", "characters": "\u219A" }, - {"key": "⇍", "characters": "\u21CD" }, - {"key": "‥", "characters": "\u2025" }, - - {"key": "≰", "characters": "\u2270" }, - {"key": "↚", "characters": "\u219A" }, - {"key": "⇍", "characters": "\u21CD" }, - {"key": "↮", "characters": "\u21AE" }, - {"key": "⇎", "characters": "\u21CE" }, - {"key": "≰", "characters": "\u2270" }, - - - - {"key": "≮", "characters": "\u226E" }, - - {"key": "≴", "characters": "\u2274" }, - - {"key": "≮", "characters": "\u226E" }, - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - - {"key": "∤", "characters": "\u2224" }, - {"key": "⁠", "characters": "\u2060" }, - {"key": " ", "characters": "\u00A0" }, - - {"key": "ℕ", "characters": "\u2115" }, - {"key": "⫬", "characters": "\u2AEC" }, - {"key": "¬", "characters": "\u00AC" }, - {"key": "¬", "characters": "\u00AC" }, - {"key": "≢", "characters": "\u2262" }, - {"key": "≭", "characters": "\u226D" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "∉", "characters": "\u2209" }, - {"key": "≠", "characters": "\u2260" }, - - {"key": "∄", "characters": "\u2204" }, - {"key": "≯", "characters": "\u226F" }, - {"key": "≱", "characters": "\u2271" }, - - - {"key": "≹", "characters": "\u2279" }, - - {"key": "≵", "characters": "\u2275" }, - - - {"key": "∉", "characters": "\u2209" }, - - - {"key": "∉", "characters": "\u2209" }, - {"key": "⋷", "characters": "\u22F7" }, - {"key": "⋶", "characters": "\u22F6" }, - - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - {"key": "≮", "characters": "\u226E" }, - {"key": "≰", "characters": "\u2270" }, - {"key": "≸", "characters": "\u2278" }, - - - {"key": "≴", "characters": "\u2274" }, - - - {"key": "∌", "characters": "\u220C" }, - {"key": "∌", "characters": "\u220C" }, - {"key": "⋾", "characters": "\u22FE" }, - {"key": "⋽", "characters": "\u22FD" }, - {"key": "⊀", "characters": "\u2280" }, - - {"key": "⋠", "characters": "\u22E0" }, - {"key": "∌", "characters": "\u220C" }, - - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - - {"key": "⋢", "characters": "\u22E2" }, - - {"key": "⋣", "characters": "\u22E3" }, - - {"key": "⊈", "characters": "\u2288" }, - {"key": "⊁", "characters": "\u2281" }, - - {"key": "⋡", "characters": "\u22E1" }, - - - {"key": "⊉", "characters": "\u2289" }, - {"key": "≁", "characters": "\u2241" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "≇", "characters": "\u2247" }, - {"key": "≉", "characters": "\u2249" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "∦", "characters": "\u2226" }, - - - {"key": "⨔", "characters": "\u2A14" }, - {"key": "⊀", "characters": "\u2280" }, - {"key": "⋠", "characters": "\u22E0" }, - {"key": "⊀", "characters": "\u2280" }, - - - - {"key": "↛", "characters": "\u219B" }, - {"key": "⇏", "characters": "\u21CF" }, - - {"key": "↛", "characters": "\u219B" }, - {"key": "⇏", "characters": "\u21CF" }, - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - {"key": "⊁", "characters": "\u2281" }, - {"key": "⋡", "characters": "\u22E1" }, - - - - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "≁", "characters": "\u2241" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "≄", "characters": "\u2244" }, - {"key": "∤", "characters": "\u2224" }, - {"key": "∦", "characters": "\u2226" }, - {"key": "⋢", "characters": "\u22E2" }, - {"key": "⋣", "characters": "\u22E3" }, - {"key": "⊄", "characters": "\u2284" }, - - {"key": "⊈", "characters": "\u2288" }, - - {"key": "⊈", "characters": "\u2288" }, - - {"key": "⊁", "characters": "\u2281" }, - - {"key": "⊅", "characters": "\u2285" }, - - {"key": "⊉", "characters": "\u2289" }, - - {"key": "⊉", "characters": "\u2289" }, - - {"key": "≹", "characters": "\u2279" }, - {"key": "Ñ", "characters": "\u00D1" }, - {"key": "Ñ", "characters": "\u00D1" }, - {"key": "ñ", "characters": "\u00F1" }, - {"key": "ñ", "characters": "\u00F1" }, - {"key": "≸", "characters": "\u2278" }, - {"key": "⋪", "characters": "\u22EA" }, - {"key": "⋬", "characters": "\u22EC" }, - {"key": "⋫", "characters": "\u22EB" }, - {"key": "⋭", "characters": "\u22ED" }, - {"key": "Ν", "characters": "\u039D" }, - {"key": "ν", "characters": "\u03BD" }, - {"key": "#", "characters": "\u0023" }, - {"key": "№", "characters": "\u2116" }, - {"key": " ", "characters": "\u2007" }, - - {"key": "⊬", "characters": "\u22AC" }, - {"key": "⊭", "characters": "\u22AD" }, - {"key": "⊮", "characters": "\u22AE" }, - {"key": "⊯", "characters": "\u22AF" }, - - - {"key": "⤄", "characters": "\u2904" }, - {"key": "⧞", "characters": "\u29DE" }, - {"key": "⤂", "characters": "\u2902" }, - - - - {"key": "⤃", "characters": "\u2903" }, - - - {"key": "⤣", "characters": "\u2923" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "⇖", "characters": "\u21D6" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "⤧", "characters": "\u2927" }, - {"key": "Ó", "characters": "\u00D3" }, - {"key": "Ó", "characters": "\u00D3" }, - {"key": "ó", "characters": "\u00F3" }, - {"key": "ó", "characters": "\u00F3" }, - {"key": "⊛", "characters": "\u229B" }, - {"key": "Ô", "characters": "\u00D4" }, - {"key": "Ô", "characters": "\u00D4" }, - {"key": "ô", "characters": "\u00F4" }, - {"key": "ô", "characters": "\u00F4" }, - {"key": "⊚", "characters": "\u229A" }, - {"key": "О", "characters": "\u041E" }, - {"key": "о", "characters": "\u043E" }, - {"key": "⊝", "characters": "\u229D" }, - {"key": "Ő", "characters": "\u0150" }, - {"key": "ő", "characters": "\u0151" }, - {"key": "⨸", "characters": "\u2A38" }, - {"key": "⊙", "characters": "\u2299" }, - {"key": "⦼", "characters": "\u29BC" }, - {"key": "Œ", "characters": "\u0152" }, - {"key": "œ", "characters": "\u0153" }, - {"key": "⦿", "characters": "\u29BF" }, - - - {"key": "˛", "characters": "\u02DB" }, - {"key": "Ò", "characters": "\u00D2" }, - {"key": "Ò", "characters": "\u00D2" }, - {"key": "ò", "characters": "\u00F2" }, - {"key": "ò", "characters": "\u00F2" }, - {"key": "⧁", "characters": "\u29C1" }, - {"key": "⦵", "characters": "\u29B5" }, - {"key": "Ω", "characters": "\u03A9" }, - {"key": "∮", "characters": "\u222E" }, - {"key": "↺", "characters": "\u21BA" }, - {"key": "⦾", "characters": "\u29BE" }, - {"key": "⦻", "characters": "\u29BB" }, - {"key": "‾", "characters": "\u203E" }, - {"key": "⧀", "characters": "\u29C0" }, - {"key": "Ō", "characters": "\u014C" }, - {"key": "ō", "characters": "\u014D" }, - {"key": "Ω", "characters": "\u03A9" }, - {"key": "ω", "characters": "\u03C9" }, - {"key": "Ο", "characters": "\u039F" }, - {"key": "ο", "characters": "\u03BF" }, - {"key": "⦶", "characters": "\u29B6" }, - {"key": "⊖", "characters": "\u2296" }, - - - {"key": "⦷", "characters": "\u29B7" }, - {"key": "“", "characters": "\u201C" }, - {"key": "‘", "characters": "\u2018" }, - {"key": "⦹", "characters": "\u29B9" }, - {"key": "⊕", "characters": "\u2295" }, - {"key": "↻", "characters": "\u21BB" }, - {"key": "⩔", "characters": "\u2A54" }, - {"key": "∨", "characters": "\u2228" }, - {"key": "⩝", "characters": "\u2A5D" }, - {"key": "ℴ", "characters": "\u2134" }, - {"key": "ℴ", "characters": "\u2134" }, - {"key": "ª", "characters": "\u00AA" }, - {"key": "ª", "characters": "\u00AA" }, - {"key": "º", "characters": "\u00BA" }, - {"key": "º", "characters": "\u00BA" }, - {"key": "⊶", "characters": "\u22B6" }, - {"key": "⩖", "characters": "\u2A56" }, - {"key": "⩗", "characters": "\u2A57" }, - {"key": "⩛", "characters": "\u2A5B" }, - {"key": "Ⓢ", "characters": "\u24C8" }, - - {"key": "ℴ", "characters": "\u2134" }, - {"key": "Ø", "characters": "\u00D8" }, - {"key": "Ø", "characters": "\u00D8" }, - {"key": "ø", "characters": "\u00F8" }, - {"key": "ø", "characters": "\u00F8" }, - {"key": "⊘", "characters": "\u2298" }, - {"key": "Õ", "characters": "\u00D5" }, - {"key": "Õ", "characters": "\u00D5" }, - {"key": "õ", "characters": "\u00F5" }, - {"key": "õ", "characters": "\u00F5" }, - {"key": "⨶", "characters": "\u2A36" }, - {"key": "⨷", "characters": "\u2A37" }, - {"key": "⊗", "characters": "\u2297" }, - {"key": "Ö", "characters": "\u00D6" }, - {"key": "Ö", "characters": "\u00D6" }, - {"key": "ö", "characters": "\u00F6" }, - {"key": "ö", "characters": "\u00F6" }, - {"key": "⌽", "characters": "\u233D" }, - {"key": "‾", "characters": "\u203E" }, - {"key": "⏞", "characters": "\u23DE" }, - {"key": "⎴", "characters": "\u23B4" }, - {"key": "⏜", "characters": "\u23DC" }, - {"key": "¶", "characters": "\u00B6" }, - {"key": "¶", "characters": "\u00B6" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⫳", "characters": "\u2AF3" }, - {"key": "⫽", "characters": "\u2AFD" }, - {"key": "∂", "characters": "\u2202" }, - {"key": "∂", "characters": "\u2202" }, - {"key": "П", "characters": "\u041F" }, - {"key": "п", "characters": "\u043F" }, - {"key": "%", "characters": "\u0025" }, - {"key": ".", "characters": "\u002E" }, - {"key": "‰", "characters": "\u2030" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "‱", "characters": "\u2031" }, - - - {"key": "Φ", "characters": "\u03A6" }, - {"key": "φ", "characters": "\u03C6" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "ℳ", "characters": "\u2133" }, - {"key": "☎", "characters": "\u260E" }, - {"key": "Π", "characters": "\u03A0" }, - {"key": "π", "characters": "\u03C0" }, - {"key": "⋔", "characters": "\u22D4" }, - {"key": "ϖ", "characters": "\u03D6" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "ℎ", "characters": "\u210E" }, - {"key": "ℏ", "characters": "\u210F" }, - {"key": "⨣", "characters": "\u2A23" }, - {"key": "⊞", "characters": "\u229E" }, - {"key": "⨢", "characters": "\u2A22" }, - {"key": "+", "characters": "\u002B" }, - {"key": "∔", "characters": "\u2214" }, - {"key": "⨥", "characters": "\u2A25" }, - {"key": "⩲", "characters": "\u2A72" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "⨦", "characters": "\u2A26" }, - {"key": "⨧", "characters": "\u2A27" }, - {"key": "±", "characters": "\u00B1" }, - {"key": "ℌ", "characters": "\u210C" }, - {"key": "⨕", "characters": "\u2A15" }, - - {"key": "ℙ", "characters": "\u2119" }, - {"key": "£", "characters": "\u00A3" }, - {"key": "£", "characters": "\u00A3" }, - {"key": "⪷", "characters": "\u2AB7" }, - {"key": "⪻", "characters": "\u2ABB" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "⪷", "characters": "\u2AB7" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "≺", "characters": "\u227A" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "≼", "characters": "\u227C" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "⪹", "characters": "\u2AB9" }, - {"key": "⪵", "characters": "\u2AB5" }, - {"key": "⋨", "characters": "\u22E8" }, - {"key": "⪯", "characters": "\u2AAF" }, - {"key": "⪳", "characters": "\u2AB3" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "′", "characters": "\u2032" }, - {"key": "″", "characters": "\u2033" }, - {"key": "ℙ", "characters": "\u2119" }, - {"key": "⪹", "characters": "\u2AB9" }, - {"key": "⪵", "characters": "\u2AB5" }, - {"key": "⋨", "characters": "\u22E8" }, - {"key": "∏", "characters": "\u220F" }, - {"key": "∏", "characters": "\u220F" }, - {"key": "⌮", "characters": "\u232E" }, - {"key": "⌒", "characters": "\u2312" }, - {"key": "⌓", "characters": "\u2313" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "∷", "characters": "\u2237" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "≾", "characters": "\u227E" }, - {"key": "⊰", "characters": "\u22B0" }, - - - {"key": "Ψ", "characters": "\u03A8" }, - {"key": "ψ", "characters": "\u03C8" }, - {"key": " ", "characters": "\u2008" }, - - - {"key": "⨌", "characters": "\u2A0C" }, - - {"key": "ℚ", "characters": "\u211A" }, - {"key": "⁗", "characters": "\u2057" }, - - - {"key": "ℍ", "characters": "\u210D" }, - {"key": "⨖", "characters": "\u2A16" }, - {"key": "?", "characters": "\u003F" }, - {"key": "≟", "characters": "\u225F" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": """, "characters": "\u0022" }, - {"key": "⇛", "characters": "\u21DB" }, - - {"key": "Ŕ", "characters": "\u0154" }, - {"key": "ŕ", "characters": "\u0155" }, - {"key": "√", "characters": "\u221A" }, - {"key": "⦳", "characters": "\u29B3" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "⟫", "characters": "\u27EB" }, - {"key": "⦒", "characters": "\u2992" }, - {"key": "⦥", "characters": "\u29A5" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "»", "characters": "\u00BB" }, - {"key": "»", "characters": "\u00BB" }, - {"key": "⥵", "characters": "\u2975" }, - {"key": "⇥", "characters": "\u21E5" }, - {"key": "⤠", "characters": "\u2920" }, - {"key": "⤳", "characters": "\u2933" }, - {"key": "→", "characters": "\u2192" }, - {"key": "↠", "characters": "\u21A0" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⤞", "characters": "\u291E" }, - {"key": "↪", "characters": "\u21AA" }, - {"key": "↬", "characters": "\u21AC" }, - {"key": "⥅", "characters": "\u2945" }, - {"key": "⥴", "characters": "\u2974" }, - {"key": "⤖", "characters": "\u2916" }, - {"key": "↣", "characters": "\u21A3" }, - {"key": "↝", "characters": "\u219D" }, - {"key": "⤚", "characters": "\u291A" }, - {"key": "⤜", "characters": "\u291C" }, - {"key": "∶", "characters": "\u2236" }, - {"key": "ℚ", "characters": "\u211A" }, - {"key": "⤍", "characters": "\u290D" }, - {"key": "⤏", "characters": "\u290F" }, - {"key": "⤐", "characters": "\u2910" }, - {"key": "❳", "characters": "\u2773" }, - {"key": "}", "characters": "\u007D" }, - {"key": "]", "characters": "\u005D" }, - {"key": "⦌", "characters": "\u298C" }, - {"key": "⦎", "characters": "\u298E" }, - {"key": "⦐", "characters": "\u2990" }, - {"key": "Ř", "characters": "\u0158" }, - {"key": "ř", "characters": "\u0159" }, - {"key": "Ŗ", "characters": "\u0156" }, - {"key": "ŗ", "characters": "\u0157" }, - {"key": "⌉", "characters": "\u2309" }, - {"key": "}", "characters": "\u007D" }, - {"key": "Р", "characters": "\u0420" }, - {"key": "р", "characters": "\u0440" }, - {"key": "⤷", "characters": "\u2937" }, - {"key": "⥩", "characters": "\u2969" }, - {"key": "”", "characters": "\u201D" }, - {"key": "”", "characters": "\u201D" }, - {"key": "↳", "characters": "\u21B3" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "ℛ", "characters": "\u211B" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "ℝ", "characters": "\u211D" }, - {"key": "ℜ", "characters": "\u211C" }, - {"key": "▭", "characters": "\u25AD" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "®", "characters": "\u00AE" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "⇋", "characters": "\u21CB" }, - {"key": "⥯", "characters": "\u296F" }, - {"key": "⥽", "characters": "\u297D" }, - {"key": "⌋", "characters": "\u230B" }, - - {"key": "ℜ", "characters": "\u211C" }, - {"key": "⥤", "characters": "\u2964" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "⥬", "characters": "\u296C" }, - {"key": "Ρ", "characters": "\u03A1" }, - {"key": "ρ", "characters": "\u03C1" }, - {"key": "ϱ", "characters": "\u03F1" }, - {"key": "⟩", "characters": "\u27E9" }, - {"key": "⇥", "characters": "\u21E5" }, - {"key": "→", "characters": "\u2192" }, - {"key": "→", "characters": "\u2192" }, - {"key": "⇒", "characters": "\u21D2" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "↣", "characters": "\u21A3" }, - {"key": "⌉", "characters": "\u2309" }, - {"key": "⟧", "characters": "\u27E7" }, - {"key": "⥝", "characters": "\u295D" }, - {"key": "⥕", "characters": "\u2955" }, - {"key": "⇂", "characters": "\u21C2" }, - {"key": "⌋", "characters": "\u230B" }, - {"key": "⇁", "characters": "\u21C1" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "⇉", "characters": "\u21C9" }, - {"key": "↝", "characters": "\u219D" }, - {"key": "↦", "characters": "\u21A6" }, - {"key": "⊢", "characters": "\u22A2" }, - {"key": "⥛", "characters": "\u295B" }, - {"key": "⋌", "characters": "\u22CC" }, - {"key": "⧐", "characters": "\u29D0" }, - {"key": "⊳", "characters": "\u22B3" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "⥏", "characters": "\u294F" }, - {"key": "⥜", "characters": "\u295C" }, - {"key": "⥔", "characters": "\u2954" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "⥓", "characters": "\u2953" }, - {"key": "⇀", "characters": "\u21C0" }, - {"key": "˚", "characters": "\u02DA" }, - {"key": "≓", "characters": "\u2253" }, - {"key": "⇄", "characters": "\u21C4" }, - {"key": "⇌", "characters": "\u21CC" }, - {"key": "‏", "characters": "\u200F" }, - {"key": "⎱", "characters": "\u23B1" }, - {"key": "⎱", "characters": "\u23B1" }, - {"key": "⫮", "characters": "\u2AEE" }, - {"key": "⟭", "characters": "\u27ED" }, - {"key": "⇾", "characters": "\u21FE" }, - {"key": "⟧", "characters": "\u27E7" }, - {"key": "⦆", "characters": "\u2986" }, - - {"key": "ℝ", "characters": "\u211D" }, - {"key": "⨮", "characters": "\u2A2E" }, - {"key": "⨵", "characters": "\u2A35" }, - {"key": "⥰", "characters": "\u2970" }, - {"key": ")", "characters": "\u0029" }, - {"key": "⦔", "characters": "\u2994" }, - {"key": "⨒", "characters": "\u2A12" }, - {"key": "⇉", "characters": "\u21C9" }, - {"key": "⇛", "characters": "\u21DB" }, - {"key": "›", "characters": "\u203A" }, - - {"key": "ℛ", "characters": "\u211B" }, - {"key": "↱", "characters": "\u21B1" }, - {"key": "↱", "characters": "\u21B1" }, - {"key": "]", "characters": "\u005D" }, - {"key": "’", "characters": "\u2019" }, - {"key": "’", "characters": "\u2019" }, - {"key": "⋌", "characters": "\u22CC" }, - {"key": "⋊", "characters": "\u22CA" }, - {"key": "▹", "characters": "\u25B9" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "▸", "characters": "\u25B8" }, - {"key": "⧎", "characters": "\u29CE" }, - {"key": "⧴", "characters": "\u29F4" }, - {"key": "⥨", "characters": "\u2968" }, - {"key": "℞", "characters": "\u211E" }, - {"key": "Ś", "characters": "\u015A" }, - {"key": "ś", "characters": "\u015B" }, - {"key": "‚", "characters": "\u201A" }, - {"key": "⪸", "characters": "\u2AB8" }, - {"key": "Š", "characters": "\u0160" }, - {"key": "š", "characters": "\u0161" }, - {"key": "⪼", "characters": "\u2ABC" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "⪴", "characters": "\u2AB4" }, - {"key": "Ş", "characters": "\u015E" }, - {"key": "ş", "characters": "\u015F" }, - {"key": "Ŝ", "characters": "\u015C" }, - {"key": "ŝ", "characters": "\u015D" }, - {"key": "⪺", "characters": "\u2ABA" }, - {"key": "⪶", "characters": "\u2AB6" }, - {"key": "⋩", "characters": "\u22E9" }, - {"key": "⨓", "characters": "\u2A13" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "С", "characters": "\u0421" }, - {"key": "с", "characters": "\u0441" }, - {"key": "⊡", "characters": "\u22A1" }, - {"key": "⋅", "characters": "\u22C5" }, - {"key": "⩦", "characters": "\u2A66" }, - {"key": "⤥", "characters": "\u2925" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "⇘", "characters": "\u21D8" }, - {"key": "↘", "characters": "\u2198" }, - {"key": "§", "characters": "\u00A7" }, - {"key": "§", "characters": "\u00A7" }, - {"key": ";", "characters": "\u003B" }, - {"key": "⤩", "characters": "\u2929" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "✶", "characters": "\u2736" }, - - - {"key": "⌢", "characters": "\u2322" }, - {"key": "♯", "characters": "\u266F" }, - {"key": "Щ", "characters": "\u0429" }, - {"key": "щ", "characters": "\u0449" }, - {"key": "Ш", "characters": "\u0428" }, - {"key": "ш", "characters": "\u0448" }, - {"key": "↓", "characters": "\u2193" }, - {"key": "←", "characters": "\u2190" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "→", "characters": "\u2192" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "­", "characters": "\u00AD" }, - {"key": "­", "characters": "\u00AD" }, - {"key": "Σ", "characters": "\u03A3" }, - {"key": "σ", "characters": "\u03C3" }, - {"key": "ς", "characters": "\u03C2" }, - {"key": "ς", "characters": "\u03C2" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "⩪", "characters": "\u2A6A" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "⪞", "characters": "\u2A9E" }, - {"key": "⪠", "characters": "\u2AA0" }, - {"key": "⪝", "characters": "\u2A9D" }, - {"key": "⪟", "characters": "\u2A9F" }, - {"key": "≆", "characters": "\u2246" }, - {"key": "⨤", "characters": "\u2A24" }, - {"key": "⥲", "characters": "\u2972" }, - {"key": "←", "characters": "\u2190" }, - {"key": "∘", "characters": "\u2218" }, - {"key": "∖", "characters": "\u2216" }, - {"key": "⨳", "characters": "\u2A33" }, - {"key": "⧤", "characters": "\u29E4" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "⌣", "characters": "\u2323" }, - {"key": "⪪", "characters": "\u2AAA" }, - {"key": "⪬", "characters": "\u2AAC" }, - - {"key": "Ь", "characters": "\u042C" }, - {"key": "ь", "characters": "\u044C" }, - {"key": "⌿", "characters": "\u233F" }, - {"key": "⧄", "characters": "\u29C4" }, - {"key": "/", "characters": "\u002F" }, - - - {"key": "♠", "characters": "\u2660" }, - {"key": "♠", "characters": "\u2660" }, - {"key": "∥", "characters": "\u2225" }, - {"key": "⊓", "characters": "\u2293" }, - - {"key": "⊔", "characters": "\u2294" }, - - {"key": "√", "characters": "\u221A" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "⊓", "characters": "\u2293" }, - {"key": "⊏", "characters": "\u228F" }, - {"key": "⊑", "characters": "\u2291" }, - {"key": "⊐", "characters": "\u2290" }, - {"key": "⊒", "characters": "\u2292" }, - {"key": "⊔", "characters": "\u2294" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "□", "characters": "\u25A1" }, - {"key": "▪", "characters": "\u25AA" }, - {"key": "→", "characters": "\u2192" }, - - - {"key": "∖", "characters": "\u2216" }, - {"key": "⌣", "characters": "\u2323" }, - {"key": "⋆", "characters": "\u22C6" }, - {"key": "⋆", "characters": "\u22C6" }, - {"key": "☆", "characters": "\u2606" }, - {"key": "★", "characters": "\u2605" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "¯", "characters": "\u00AF" }, - {"key": "⊂", "characters": "\u2282" }, - {"key": "⋐", "characters": "\u22D0" }, - {"key": "⪽", "characters": "\u2ABD" }, - {"key": "⫅", "characters": "\u2AC5" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⫃", "characters": "\u2AC3" }, - {"key": "⫁", "characters": "\u2AC1" }, - {"key": "⫋", "characters": "\u2ACB" }, - {"key": "⊊", "characters": "\u228A" }, - {"key": "⪿", "characters": "\u2ABF" }, - {"key": "⥹", "characters": "\u2979" }, - {"key": "⊂", "characters": "\u2282" }, - {"key": "⋐", "characters": "\u22D0" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⫅", "characters": "\u2AC5" }, - {"key": "⊆", "characters": "\u2286" }, - {"key": "⊊", "characters": "\u228A" }, - {"key": "⫋", "characters": "\u2ACB" }, - {"key": "⫇", "characters": "\u2AC7" }, - {"key": "⫕", "characters": "\u2AD5" }, - {"key": "⫓", "characters": "\u2AD3" }, - {"key": "⪸", "characters": "\u2AB8" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "≻", "characters": "\u227B" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "≽", "characters": "\u227D" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "⪰", "characters": "\u2AB0" }, - {"key": "⪺", "characters": "\u2ABA" }, - {"key": "⪶", "characters": "\u2AB6" }, - {"key": "⋩", "characters": "\u22E9" }, - {"key": "≿", "characters": "\u227F" }, - {"key": "∋", "characters": "\u220B" }, - {"key": "∑", "characters": "\u2211" }, - {"key": "∑", "characters": "\u2211" }, - {"key": "♪", "characters": "\u266A" }, - {"key": "¹", "characters": "\u00B9" }, - {"key": "¹", "characters": "\u00B9" }, - {"key": "²", "characters": "\u00B2" }, - {"key": "²", "characters": "\u00B2" }, - {"key": "³", "characters": "\u00B3" }, - {"key": "³", "characters": "\u00B3" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⋑", "characters": "\u22D1" }, - {"key": "⪾", "characters": "\u2ABE" }, - {"key": "⫘", "characters": "\u2AD8" }, - {"key": "⫆", "characters": "\u2AC6" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⫄", "characters": "\u2AC4" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⟉", "characters": "\u27C9" }, - {"key": "⫗", "characters": "\u2AD7" }, - {"key": "⥻", "characters": "\u297B" }, - {"key": "⫂", "characters": "\u2AC2" }, - {"key": "⫌", "characters": "\u2ACC" }, - {"key": "⊋", "characters": "\u228B" }, - {"key": "⫀", "characters": "\u2AC0" }, - {"key": "⊃", "characters": "\u2283" }, - {"key": "⋑", "characters": "\u22D1" }, - {"key": "⊇", "characters": "\u2287" }, - {"key": "⫆", "characters": "\u2AC6" }, - {"key": "⊋", "characters": "\u228B" }, - {"key": "⫌", "characters": "\u2ACC" }, - {"key": "⫈", "characters": "\u2AC8" }, - {"key": "⫔", "characters": "\u2AD4" }, - {"key": "⫖", "characters": "\u2AD6" }, - {"key": "⤦", "characters": "\u2926" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "⇙", "characters": "\u21D9" }, - {"key": "↙", "characters": "\u2199" }, - {"key": "⤪", "characters": "\u292A" }, - {"key": "ß", "characters": "\u00DF" }, - {"key": "ß", "characters": "\u00DF" }, - {"key": " ", "characters": "\u0009" }, - {"key": "⌖", "characters": "\u2316" }, - {"key": "Τ", "characters": "\u03A4" }, - {"key": "τ", "characters": "\u03C4" }, - {"key": "⎴", "characters": "\u23B4" }, - {"key": "Ť", "characters": "\u0164" }, - {"key": "ť", "characters": "\u0165" }, - {"key": "Ţ", "characters": "\u0162" }, - {"key": "ţ", "characters": "\u0163" }, - {"key": "Т", "characters": "\u0422" }, - {"key": "т", "characters": "\u0442" }, - {"key": "⃛", "characters": "\u20DB" }, - {"key": "⌕", "characters": "\u2315" }, - - - {"key": "∴", "characters": "\u2234" }, - {"key": "∴", "characters": "\u2234" }, - {"key": "∴", "characters": "\u2234" }, - {"key": "Θ", "characters": "\u0398" }, - {"key": "θ", "characters": "\u03B8" }, - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "∼", "characters": "\u223C" }, - - {"key": " ", "characters": "\u2009" }, - {"key": " ", "characters": "\u2009" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "Þ", "characters": "\u00DE" }, - {"key": "Þ", "characters": "\u00DE" }, - {"key": "þ", "characters": "\u00FE" }, - {"key": "þ", "characters": "\u00FE" }, - {"key": "˜", "characters": "\u02DC" }, - {"key": "∼", "characters": "\u223C" }, - {"key": "≃", "characters": "\u2243" }, - {"key": "≅", "characters": "\u2245" }, - {"key": "≈", "characters": "\u2248" }, - {"key": "⨱", "characters": "\u2A31" }, - {"key": "⊠", "characters": "\u22A0" }, - {"key": "×", "characters": "\u00D7" }, - {"key": "×", "characters": "\u00D7" }, - {"key": "⨰", "characters": "\u2A30" }, - {"key": "∭", "characters": "\u222D" }, - {"key": "⤨", "characters": "\u2928" }, - {"key": "⌶", "characters": "\u2336" }, - {"key": "⫱", "characters": "\u2AF1" }, - {"key": "⊤", "characters": "\u22A4" }, - - - {"key": "⫚", "characters": "\u2ADA" }, - {"key": "⤩", "characters": "\u2929" }, - {"key": "‴", "characters": "\u2034" }, - {"key": "™", "characters": "\u2122" }, - {"key": "™", "characters": "\u2122" }, - {"key": "▵", "characters": "\u25B5" }, - {"key": "▿", "characters": "\u25BF" }, - {"key": "◃", "characters": "\u25C3" }, - {"key": "⊴", "characters": "\u22B4" }, - {"key": "≜", "characters": "\u225C" }, - {"key": "▹", "characters": "\u25B9" }, - {"key": "⊵", "characters": "\u22B5" }, - {"key": "◬", "characters": "\u25EC" }, - {"key": "≜", "characters": "\u225C" }, - {"key": "⨺", "characters": "\u2A3A" }, - {"key": "⃛", "characters": "\u20DB" }, - {"key": "⨹", "characters": "\u2A39" }, - {"key": "⧍", "characters": "\u29CD" }, - {"key": "⨻", "characters": "\u2A3B" }, - {"key": "⏢", "characters": "\u23E2" }, - - - {"key": "Ц", "characters": "\u0426" }, - {"key": "ц", "characters": "\u0446" }, - {"key": "Ћ", "characters": "\u040B" }, - {"key": "ћ", "characters": "\u045B" }, - {"key": "Ŧ", "characters": "\u0166" }, - {"key": "ŧ", "characters": "\u0167" }, - {"key": "≬", "characters": "\u226C" }, - {"key": "↞", "characters": "\u219E" }, - {"key": "↠", "characters": "\u21A0" }, - {"key": "Ú", "characters": "\u00DA" }, - {"key": "Ú", "characters": "\u00DA" }, - {"key": "ú", "characters": "\u00FA" }, - {"key": "ú", "characters": "\u00FA" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "↟", "characters": "\u219F" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⥉", "characters": "\u2949" }, - {"key": "Ў", "characters": "\u040E" }, - {"key": "ў", "characters": "\u045E" }, - {"key": "Ŭ", "characters": "\u016C" }, - {"key": "ŭ", "characters": "\u016D" }, - {"key": "Û", "characters": "\u00DB" }, - {"key": "Û", "characters": "\u00DB" }, - {"key": "û", "characters": "\u00FB" }, - {"key": "û", "characters": "\u00FB" }, - {"key": "У", "characters": "\u0423" }, - {"key": "у", "characters": "\u0443" }, - {"key": "⇅", "characters": "\u21C5" }, - {"key": "Ű", "characters": "\u0170" }, - {"key": "ű", "characters": "\u0171" }, - {"key": "⥮", "characters": "\u296E" }, - {"key": "⥾", "characters": "\u297E" }, - - - {"key": "Ù", "characters": "\u00D9" }, - {"key": "Ù", "characters": "\u00D9" }, - {"key": "ù", "characters": "\u00F9" }, - {"key": "ù", "characters": "\u00F9" }, - {"key": "⥣", "characters": "\u2963" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "▀", "characters": "\u2580" }, - {"key": "⌜", "characters": "\u231C" }, - {"key": "⌜", "characters": "\u231C" }, - {"key": "⌏", "characters": "\u230F" }, - {"key": "◸", "characters": "\u25F8" }, - {"key": "Ū", "characters": "\u016A" }, - {"key": "ū", "characters": "\u016B" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "¨", "characters": "\u00A8" }, - {"key": "_", "characters": "\u005F" }, - {"key": "⏟", "characters": "\u23DF" }, - {"key": "⎵", "characters": "\u23B5" }, - {"key": "⏝", "characters": "\u23DD" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "⊎", "characters": "\u228E" }, - {"key": "Ų", "characters": "\u0172" }, - {"key": "ų", "characters": "\u0173" }, - - - {"key": "⤒", "characters": "\u2912" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "↑", "characters": "\u2191" }, - {"key": "⇑", "characters": "\u21D1" }, - {"key": "⇅", "characters": "\u21C5" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "⥮", "characters": "\u296E" }, - {"key": "↿", "characters": "\u21BF" }, - {"key": "↾", "characters": "\u21BE" }, - {"key": "⊎", "characters": "\u228E" }, - {"key": "↖", "characters": "\u2196" }, - {"key": "↗", "characters": "\u2197" }, - {"key": "υ", "characters": "\u03C5" }, - {"key": "ϒ", "characters": "\u03D2" }, - {"key": "ϒ", "characters": "\u03D2" }, - {"key": "Υ", "characters": "\u03A5" }, - {"key": "υ", "characters": "\u03C5" }, - {"key": "↥", "characters": "\u21A5" }, - {"key": "⊥", "characters": "\u22A5" }, - {"key": "⇈", "characters": "\u21C8" }, - {"key": "⌝", "characters": "\u231D" }, - {"key": "⌝", "characters": "\u231D" }, - {"key": "⌎", "characters": "\u230E" }, - {"key": "Ů", "characters": "\u016E" }, - {"key": "ů", "characters": "\u016F" }, - {"key": "◹", "characters": "\u25F9" }, - - - {"key": "⋰", "characters": "\u22F0" }, - {"key": "Ũ", "characters": "\u0168" }, - {"key": "ũ", "characters": "\u0169" }, - {"key": "▵", "characters": "\u25B5" }, - {"key": "▴", "characters": "\u25B4" }, - {"key": "⇈", "characters": "\u21C8" }, - {"key": "Ü", "characters": "\u00DC" }, - {"key": "Ü", "characters": "\u00DC" }, - {"key": "ü", "characters": "\u00FC" }, - {"key": "ü", "characters": "\u00FC" }, - {"key": "⦧", "characters": "\u29A7" }, - {"key": "⦜", "characters": "\u299C" }, - {"key": "ϵ", "characters": "\u03F5" }, - {"key": "ϰ", "characters": "\u03F0" }, - {"key": "∅", "characters": "\u2205" }, - {"key": "ϕ", "characters": "\u03D5" }, - {"key": "ϖ", "characters": "\u03D6" }, - {"key": "∝", "characters": "\u221D" }, - {"key": "↕", "characters": "\u2195" }, - {"key": "⇕", "characters": "\u21D5" }, - {"key": "ϱ", "characters": "\u03F1" }, - {"key": "ς", "characters": "\u03C2" }, - - - - - {"key": "ϑ", "characters": "\u03D1" }, - {"key": "⊲", "characters": "\u22B2" }, - {"key": "⊳", "characters": "\u22B3" }, - {"key": "⫨", "characters": "\u2AE8" }, - {"key": "⫫", "characters": "\u2AEB" }, - {"key": "⫩", "characters": "\u2AE9" }, - {"key": "В", "characters": "\u0412" }, - {"key": "в", "characters": "\u0432" }, - {"key": "⊢", "characters": "\u22A2" }, - {"key": "⊨", "characters": "\u22A8" }, - {"key": "⊩", "characters": "\u22A9" }, - {"key": "⊫", "characters": "\u22AB" }, - {"key": "⫦", "characters": "\u2AE6" }, - {"key": "⊻", "characters": "\u22BB" }, - {"key": "∨", "characters": "\u2228" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "≚", "characters": "\u225A" }, - {"key": "⋮", "characters": "\u22EE" }, - {"key": "|", "characters": "\u007C" }, - {"key": "‖", "characters": "\u2016" }, - {"key": "|", "characters": "\u007C" }, - {"key": "‖", "characters": "\u2016" }, - {"key": "∣", "characters": "\u2223" }, - {"key": "|", "characters": "\u007C" }, - {"key": "❘", "characters": "\u2758" }, - {"key": "≀", "characters": "\u2240" }, - {"key": " ", "characters": "\u200A" }, - - - {"key": "⊲", "characters": "\u22B2" }, - - - - - {"key": "∝", "characters": "\u221D" }, - {"key": "⊳", "characters": "\u22B3" }, - - - - - - - {"key": "⊪", "characters": "\u22AA" }, - {"key": "⦚", "characters": "\u299A" }, - {"key": "Ŵ", "characters": "\u0174" }, - {"key": "ŵ", "characters": "\u0175" }, - {"key": "⩟", "characters": "\u2A5F" }, - {"key": "∧", "characters": "\u2227" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "≙", "characters": "\u2259" }, - {"key": "℘", "characters": "\u2118" }, - - - - - {"key": "℘", "characters": "\u2118" }, - {"key": "≀", "characters": "\u2240" }, - {"key": "≀", "characters": "\u2240" }, - - - {"key": "⋂", "characters": "\u22C2" }, - {"key": "◯", "characters": "\u25EF" }, - {"key": "⋃", "characters": "\u22C3" }, - {"key": "▽", "characters": "\u25BD" }, - - - {"key": "⟷", "characters": "\u27F7" }, - {"key": "⟺", "characters": "\u27FA" }, - {"key": "Ξ", "characters": "\u039E" }, - {"key": "ξ", "characters": "\u03BE" }, - {"key": "⟵", "characters": "\u27F5" }, - {"key": "⟸", "characters": "\u27F8" }, - {"key": "⟼", "characters": "\u27FC" }, - {"key": "⋻", "characters": "\u22FB" }, - {"key": "⨀", "characters": "\u2A00" }, - - - {"key": "⨁", "characters": "\u2A01" }, - {"key": "⨂", "characters": "\u2A02" }, - {"key": "⟶", "characters": "\u27F6" }, - {"key": "⟹", "characters": "\u27F9" }, - - - {"key": "⨆", "characters": "\u2A06" }, - {"key": "⨄", "characters": "\u2A04" }, - {"key": "△", "characters": "\u25B3" }, - {"key": "⋁", "characters": "\u22C1" }, - {"key": "⋀", "characters": "\u22C0" }, - {"key": "Ý", "characters": "\u00DD" }, - {"key": "Ý", "characters": "\u00DD" }, - {"key": "ý", "characters": "\u00FD" }, - {"key": "ý", "characters": "\u00FD" }, - {"key": "Я", "characters": "\u042F" }, - {"key": "я", "characters": "\u044F" }, - {"key": "Ŷ", "characters": "\u0176" }, - {"key": "ŷ", "characters": "\u0177" }, - {"key": "Ы", "characters": "\u042B" }, - {"key": "ы", "characters": "\u044B" }, - {"key": "¥", "characters": "\u00A5" }, - {"key": "¥", "characters": "\u00A5" }, - - - {"key": "Ї", "characters": "\u0407" }, - {"key": "ї", "characters": "\u0457" }, - - - - - {"key": "Ю", "characters": "\u042E" }, - {"key": "ю", "characters": "\u044E" }, - {"key": "ÿ", "characters": "\u00FF" }, - {"key": "ÿ", "characters": "\u00FF" }, - {"key": "Ÿ", "characters": "\u0178" }, - {"key": "Ź", "characters": "\u0179" }, - {"key": "ź", "characters": "\u017A" }, - {"key": "Ž", "characters": "\u017D" }, - {"key": "ž", "characters": "\u017E" }, - {"key": "З", "characters": "\u0417" }, - {"key": "з", "characters": "\u0437" }, - {"key": "Ż", "characters": "\u017B" }, - {"key": "ż", "characters": "\u017C" }, - {"key": "ℨ", "characters": "\u2128" }, - {"key": "​", "characters": "\u200B" }, - {"key": "Ζ", "characters": "\u0396" }, - {"key": "ζ", "characters": "\u03B6" }, - - {"key": "ℨ", "characters": "\u2128" }, - {"key": "Ж", "characters": "\u0416" }, - {"key": "ж", "characters": "\u0436" }, - {"key": "⇝", "characters": "\u21DD" }, - - {"key": "ℤ", "characters": "\u2124" }, - - - {"key": "‍", "characters": "\u200D" }, - {"key": "‌", "characters": "\u200C" }, - {"key": " ", "characters": "\u00A0"}, - {"key": "@", "characters": "@" }, - {"key": "A", "characters": "A" }, - {"key": " ", "characters": "\u00A0"}, - {"key": "@", "characters": "@" }, - {"key": "A", "characters": "A" }, - {"key": "&xA0;", "characters": "\u00A0" }, - {"key": " ", "characters": " " }, - {"key": " ", "characters": " "}, - {"key": "&x40;", "characters": "@" }, - {"key": "&x41;", "characters": "A" }, - {"key": "&XA0;", "characters": "\u00A0"}, - {"key": "&X40;", "characters": "@" }, - {"key": "&X41;", "characters": "A" } -]} diff --git a/tests/FSharp.Data.Core.Tests/Data/contacts.json b/tests/FSharp.Data.Core.Tests/Data/contacts.json deleted file mode 100644 index 8131f3eed..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/contacts.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "ab": { - "persons": [ - { - "contacts": [ - { - }, - { - "emailCapability": [ - null, - "0", - null - ], - "emailIMEnabled": [ - false, - false, - false - ], - "emails": [ - null, - "a@b.c", - null - ], - "phones": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - } - ], - "emails": [ - null, - null - ], - "phones": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - } - ] - } -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/cp932.csv b/tests/FSharp.Data.Core.Tests/Data/cp932.csv deleted file mode 100644 index 60f23bdb8..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/cp932.csv +++ /dev/null @@ -1,4 +0,0 @@ -id,value -1,1.0 -2,NaN (񐔒l) - diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who.html deleted file mode 100644 index 2eb0f8fbd..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/doctor_who.html +++ /dev/null @@ -1,5742 +0,0 @@ - - - - -List of Doctor Who serials - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          - - -
          -

          List of Doctor Who serials

          -
          -
          From Wikipedia, the free encyclopedia
          -
          -
          - Jump to: navigation, search -
          -
          -

          Doctor Who is a British science fiction television programme produced by the BBC. As of 11 October 2014, 808 individual episodes, including one television movie of Doctor Who, have been aired, encompassing 249 stories. Additionally, four charity specials and two animated serials have also been aired. The show's high episode count resulted in Doctor Who holding the world record for the highest number of episodes for a science-fiction programme.[1] For comparison, the Guinness World Record holder for the highest number of consecutive episodes, Smallville,[2] aired 218 episodes.

          -

          Doctor Who ceased airing in 1989 and began again in 2005. Each story in the original series (1963–89) is a multi-episode serial, with two exceptions: the 1965 cutaway episode "Mission to the Unknown" and the 20th anniversary story The Five Doctors. The characters in the column after the serial titles indicate the code used by the production team to designate the serial, where applicable, and are followed either by the titles of the individual episodes where given or by the number of episodes otherwise. Unless otherwise noted, episodes in this period are 25 minutes long. During the early seasons of the programme most serials were linked together and one would usually lead directly into the next. Starting with the 2005 revival, the production team abandoned the traditional serial format for a largely self-contained episodic format with occasional multi-part stories and loose story arcs. Unless otherwise noted, the new episodes are 45 minutes long.

          -

          Due to the BBC's 1970s junking policy, 97 episodes from the 1960s are missing, with the result that 26 serials are incomplete, although all of these still exist as audio recordings, and some have been reconstructed. In the first two seasons and most of the third, each episode of a serial had an individual title; no serial had an overall on-screen title until The Savages. The serial titles given below are the most common title for the serials as a whole, used in sources such as the Doctor Who Reference Guide and the BBC's classic episode guide, and are generally those used for commercial release. The practice of individually titled episodes resurfaced with the show's 2005 revival, when Doctor Who's serial nature was abandoned in favour of an episodic format.

          -

          The three-digit story numbers are not official designations but are merely to serve as a guide to where the story stands in the overall context of the programme. There is some dispute about, for example, whether to count Season 23's The Trial of a Time Lord as one or four serials,[3] and whether the uncompleted Shada should be included.[4] The numbering scheme used here reflects the current internal practice of describing "Planet of the Dead" (2009) as the 200th story, used in the official magazine's 407th issue.[5] Other sources, such as the Region 1 DVDs of classic Doctor Who serials, use different numbering schemes which diverge after the 108th story, The Horns of Nimon (1979/80).

          -
          -
          -
          -

          Contents

          -
          - -
          -
          -

          Overview of seasons and series

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Season/SeriesDoctorSerialsEpisodesPremiere Date
          -(UK)
          Premiere
          -viewers
          -(in millions)
          Finale Date
          -(UK)
          Finale
          -viewers
          -(in millions)
          Average
          -viewers
          -(in millions)
          Season 1First Doctor84223 November 19634.412 September 19646.47.96
          Season 293931 October 19648.424 July 19658.310.38
          Season 3104511 September 19659.016 July 19665.57.38
          Season 4Second Doctor94310 September 19664.31 July 19676.17.11
          Season 57402 September 19676.01 June 19686.56.63
          Season 674410 August 19686.121 June 19695.06.57
          Season 7Third Doctor4253 January 19708.420 June 19705.57.18
          Season 85252 January 19717.319 June 19718.37.96
          Season 95261 January 19729.824 June 19727.68.48
          Season 1052630 December 19729.623 June 19737.08.98
          Season 1152615 December 19738.78 June 19748.98.78
          Season 12Fourth Doctor52028 December 197410.110 May 19759.010.14
          Season 1362630 August 19757.56 March 197610.910.08
          Season 146264 September 19769.52 April 197710.411.17
          Season 156263 September 19778.411 March 197810.58.91
          Season 16[α]6262 September 19788.124 February 19798.58.56
          Season 175[β]201 September 197913.512 January 19808.811.22
          Season 1872830 August 19805.121 March 19816.75.81
          Season 19Fifth Doctor7264 January 19829.630 March 19828.99.30
          Season 206224 January 19837.216 March 19837.557.00
          Season 217245 January 19847.2530 March 19847.18.37
          Season 22Sixth Doctor6135 January 19858.0530 March 19857.557.17
          Season 23[γ]4146 September 19864.356 December 19865.04.83
          Season 24Seventh Doctor4147 September 19874.637 December 19875.074.98
          Season 254145 October 19885.354 January 19895.455.35
          Season 264146 September 19893.656 December 19894.94.19
          Series 1Ninth Doctor101326 March 200510.8118 June 20056.917.31
          Series 2Tenth Doctor101315 April 20068.628 July 20068.227.64
          Series 391331 March 20078.7130 June 20078.617.54
          Series 410135 April 20089.145 July 200810.578.04
          Series 5Eleventh Doctor10133 April 201010.0926 June 20106.707.73
          Series 6111323 April 20118.861 October 20117.677.51
          Series 713131 September 20128.3318 May 20137.457.44
          Series 8Twelfth Doctor111223 August 20149.178 November 2014TBATBA
          -

          Specials

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          DoctorSeason/SeriesEpisodesPremiere Date
          -(UK)
          Finale Date
          -(UK)
          Average
          -viewers
          -(in millions)
          Fifth Doctor20th anniversary special125 November 198325 November 19837.70
          First DoctorSeason 1 pilot126 August 199126 August 19911.70
          Eighth DoctorTelevision movie127 May 199627 May 19969.10
          Tenth Doctor2005 specials218 November 200525 December 2005
          2006 Christmas special125 December 200625 December 2006
          2007 specials216 November 200725 November 2007
          2008-10 specials525 December 20081 January 2010
          Eleventh Doctor2010-11 specials325 December 201018 March 2011
          2011-12 specials625 December 201131 August 2012
          2012 specials312 October 201225 December 2012
          2013 specials414 November 201325 December 2013
          Twelfth Doctor2014 Christmas special1Christmas 2014Christmas 2014
          -

          First Doctor

          -

          The first incarnation of the Doctor was portrayed by William Hartnell. During Hartnell's tenure, the Doctor visited a mixture of stories set in the future and in historical events that had no extraterrestrial influence, such as fifteenth century Mesoamerica. In his last story, The Tenth Planet, the Doctor gradually grew weaker to the point of collapsing at the end of the fourth episode, leading to his regeneration.

          -

          Season 1 (1963–64)

          -
          Main article: Doctor Who (season 1)
          -

          Verity Lambert was producer with David Whitaker serving as script editor.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          001An Unearthly Child
          -aka 100,000 BC
          -aka The Tribe of Gum
          A"An Unearthly Child"
          -"The Cave of Skulls"
          -"The Forest of Fear"
          -"The Firemaker"
          Anthony Coburn
          -(and C. E. Webber)[δ]
          Waris Hussein23 November 1963
          -30 November 1963
          -7 December 1963
          -14 December 1963
          002The Daleks
          -aka The Mutants
          -aka The Dead Planet
          B"The Dead Planet"
          -"The Survivors"
          -"The Escape"
          -"The Ambush"
          -"The Expedition"
          -"The Ordeal"
          -"The Rescue"
          Terry NationRichard Martin &
          -Christopher Barry
          21 December 1963
          -28 December 1963
          -4 January 1964
          -11 January 1964
          -18 January 1964
          -25 January 1964
          -1 February 1964
          003The Edge of Destruction
          -aka Inside the Spaceship
          C"The Edge of Destruction"
          -"The Brink of Disaster"
          David WhitakerRichard Martin &
          -Frank Cox
          8 February 1964
          -15 February 1964
          004Marco Polo
          -aka A Journey to Cathay
          D"The Roof of the World"
          -"The Singing Sands"
          -"Five Hundred Eyes"
          -"The Wall of Lies"
          -"Rider from Shang-Tu"
          -"Mighty Kublai Khan"
          -"Assassin at Peking"
          -(all missing)
          John LucarottiWaris Hussein &
          -John Crockett
          22 February 1964
          -29 February 1964
          -7 March 1964
          -14 March 1964
          -21 March 1964
          -28 March 1964
          -4 April 1964
          005The Keys of Marinus
          -aka The Sea of Death
          E"The Sea of Death"
          -"The Velvet Web"
          -"The Screaming Jungle"
          -"The Snows of Terror"
          -"Sentence of Death"
          -"The Keys of Marinus"
          Terry NationJohn Gorrie11 April 1964
          -18 April 1964
          -25 April 1964
          -2 May 1964
          -9 May 1964
          -16 May 1964
          006The AztecsF"The Temple of Evil"
          -"The Warriors of Death"
          -"The Bride of Sacrifice"
          -"The Day of Darkness"
          John LucarottiJohn Crockett23 May 1964
          -30 May 1964
          -6 June 1964
          -13 June 1964
          007The SensoritesG"Strangers in Space"
          -"The Unwilling Warriors"
          -"Hidden Danger"
          -"A Race Against Death"
          -"Kidnap"
          -"A Desperate Venture"
          Peter R. NewmanMervyn Pinfield &
          -Frank Cox
          20 June 1964
          -27 June 1964
          -11 July 1964
          -18 July 1964
          -25 July 1964
          -1 August 1964
          008The Reign of Terror
          -aka The French Revolution
          H"A Land of Fear"
          -"Guests of Madame Guillotine"
          -"A Change of Identity"
          -"The Tyrant of France"
          -"A Bargain of Necessity"
          -"Prisoners of Conciergerie"
          -(episodes 4–5 missing)
          Dennis SpoonerHenric Hirsch8 August 1964
          -15 August 1964
          -22 August 1964
          -29 August 1964
          -5 September 1964
          -12 September 1964
          -

          Season 2 (1964–65)

          -
          Main article: Doctor Who (season 2)
          -

          Dennis Spooner replaced David Whitaker as script editor after The Dalek Invasion of Earth, and edited the remainder of the season apart from The Time Meddler, which was edited by Donald Tosh.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          009Planet of GiantsJ"Planet of Giants"
          -"Dangerous Journey"
          -"Crisis"
          Louis MarksMervyn Pinfield &
          -Douglas Camfield
          31 October 1964
          -7 November 1964
          -14 November 1964
          010The Dalek Invasion of Earth
          -aka World's End
          K"World's End"
          -"The Daleks"
          -"Day of Reckoning"
          -"The End of Tomorrow"
          -"The Waking Ally"
          -"Flashpoint"
          Terry NationRichard Martin21 November 1964
          -28 November 1964
          -5 December 1964
          -12 December 1964
          -19 December 1964
          -26 December 1964
          011The RescueL"The Powerful Enemy"
          -"Desperate Measures"
          David WhitakerChristopher Barry2 January 1965
          -9 January 1965
          012The RomansM"The Slave Traders"
          -"All Roads Lead to Rome"
          -"Conspiracy"
          -"Inferno"
          Dennis SpoonerChristopher Barry16 January 1965
          -23 January 1965
          -30 January 1965
          -6 February 1965
          013The Web Planet
          -aka The Zarbi
          N"The Web Planet"
          -"The Zarbi"
          -"Escape to Danger"
          -"Crater of Needles"
          -"Invasion"
          -"The Centre"
          Bill StruttonRichard Martin13 February 1965
          -20 February 1965
          -27 February 1965
          -6 March 1965
          -13 March 1965
          -20 March 1965
          014The Crusade
          -aka The Lionheart
          -aka The Crusaders
          P"The Lion"
          -"The Knight of Jaffa"
          -"The Wheel of Fortune"
          -"The Warlords"
          -(episodes 2 & 4 missing)
          David WhitakerDouglas Camfield27 March 1965
          -3 April 1965
          -10 April 1965
          -17 April 1965
          015The Space MuseumQ"The Space Museum"
          -"The Dimensions of Time"
          -"The Search"
          -"The Final Phase"
          Glyn JonesMervyn Pinfield24 April 1965
          -1 May 1965
          -8 May 1965
          -15 May 1965
          016The ChaseR"The Executioners"
          -"The Death of Time"
          -"Flight Through Eternity"
          -"Journey into Terror"
          -"The Death of Doctor Who"
          -"The Planet of Decision"
          Terry NationRichard Martin &
          -Douglas Camfield
          22 May 1965
          -29 May 1965
          -5 June 1965
          -12 June 1965
          -19 June 1965
          -26 June 1965
          017The Time MeddlerS"The Watcher"
          -"The Meddling Monk"
          -"A Battle of Wits"
          -"Checkmate"
          Dennis SpoonerDouglas Camfield3 July 1965
          -10 July 1965
          -17 July 1965
          -24 July 1965
          -

          Season 3 (1965–66)

          -
          Main article: Doctor Who (season 3)
          -

          John Wiles replaced Verity Lambert as producer after Mission to the Unknown. Innes Lloyd, in turn, replaced Wiles after The Ark. Donald Tosh continued as script editor until The Massacre of St Bartholomew's Eve, which was also script-edited by his replacement, Gerry Davis. The practice of giving each individual episode a different title was abandoned after The Gunfighters, near the end of the season.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          018Galaxy 4T"Four Hundred Dawns"
          -"Trap of Steel"
          -"Air Lock"
          -"The Exploding Planet"
          -(episodes 1, 2, & 4 missing)
          William EmmsDerek Martinus &
          -Mervyn Pinfield
          11 September 1965
          -18 September 1965
          -25 September 1965
          -2 October 1965
          019"Mission to the Unknown"
          -aka "Dalek Cutaway"
          T/A, TA or DC"Mission to the Unknown"
          -(missing)
          Terry NationDerek Martinus9 October 1965
          020The Myth MakersU"Temple of Secrets"
          -"Small Prophet, Quick Return"
          -"Death of a Spy"
          -"Horse of Destruction"
          -(all missing)
          Donald CottonMichael Leeston-Smith16 October 1965
          -23 October 1965
          -30 October 1965
          -6 November 1965
          021The Daleks' Master PlanV"The Nightmare Begins"
          -"Day of Armageddon"
          -"Devil's Planet"
          -"The Traitors"
          -"Counter Plot"
          -"Coronas of the Sun"
          -"The Feast of Steven"
          -"Volcano"
          -"Golden Death"
          -"Escape Switch"
          -"The Abandoned Planet"
          -"Destruction of Time"
          -(episodes 1, 3–4, 6–9, & 11–12 missing)
          Terry Nation &
          -Dennis Spooner
          Douglas Camfield13 November 1965
          -20 November 1965
          -27 November 1965
          -4 December 1965
          -11 December 1965
          -18 December 1965
          -25 December 1965
          -1 January 1966
          -8 January 1966
          -15 January 1966
          -22 January 1966
          -29 January 1966
          022The Massacre of St Bartholomew's Eve
          -aka The Massacre
          W"War of God"
          -"The Sea Beggar"
          -"Priest of Death"
          -"Bell of Doom"
          -(all missing)
          John Lucarotti &
          -Donald Tosh
          Paddy Russell5 February 1966
          -12 February 1966
          -19 February 1966
          -26 February 1966
          023The ArkX"The Steel Sky"
          -"The Plague"
          -"The Return"
          -"The Bomb"
          Paul Erickson &
          -Lesley Scott
          Michael Imison5 March 1966
          -12 March 1966
          -19 March 1966
          -26 March 1966
          024The Celestial ToymakerY"The Celestial Toyroom"
          -"The Hall of Dolls"
          -"The Dancing Floor"
          -"The Final Test"
          -(episodes 1–3 missing)
          Brian Hayles &
          -Donald Tosh
          Bill Sellars2 April 1966
          -9 April 1966
          -16 April 1966
          -23 April 1966
          025The GunfightersZ"A Holiday for the Doctor"
          -"Don't Shoot the Pianist"
          -"Johnny Ringo"
          -"The OK Corral"
          Donald CottonRex Tucker30 April 1966
          -7 May 1966
          -14 May 1966
          -21 May 1966
          026The Savages[ε]AA4 episodes
          -(all missing)
          Ian Stuart BlackChristopher Barry28 May – 18 June 1966
          027The War MachinesBB4 episodesIan Stuart Black
          -(and Kit Pedler)
          Michael Ferguson25 June – 16 July 1966
          -

          Season 4 (1966–67)

          -
          Main article: Doctor Who (season 4)
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          028The SmugglersCC4 episodes
          -(all missing)
          Brian HaylesJulia Smith10 September – 1 October 1966
          029The Tenth PlanetDD4 episodes
          -(episode 4 missing)
          Kit Pedler &
          -Gerry Davis
          Derek Martinus8–29 October 1966
          -

          Second Doctor

          -

          The Second Doctor was portrayed by Patrick Troughton, whose serials were more action-oriented than those of his predecessor. Additionally, after The Highlanders, stories moved away from the purely historical ones that featured during William Hartnell's tenure; instead, any historical tales also included a science fiction element. Patrick Troughton retained the role until the last episode of The War Games when members of the Doctor's race, the Time Lords, put him on trial for breaking the laws of time and forced him to regenerate.

          -

          Season 4 (1966–67) continued

          -

          Peter Bryant joined as associate producer for The Faceless Ones, and replaced Gerry Davis as script editor for the last four episodes of The Evil of the Daleks.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          030The Power of the DaleksEE6 episodes
          -(all missing)
          David Whitaker
          -(and Dennis Spooner)
          Christopher Barry5 November – 10 December 1966
          031The HighlandersFF4 episodes
          -(all missing)
          Elwyn Jones &
          -Gerry Davis
          Hugh David17 December 1966 – 7 January 1967
          032The Underwater MenaceGG4 episodes
          -(episodes 1 & 4 missing)
          Geoffrey OrmeJulia Smith14 January – 4 February 1967
          033The MoonbaseHH4 episodes
          -(episodes 1 & 3 missing)
          Kit PedlerMorris Barry11 February – 4 March 1967
          034The Macra TerrorJJ4 episodes
          -(all missing)
          Ian Stuart BlackJohn Davies11 March – 1 April 1967
          035The Faceless OnesKK6 episodes
          -(episodes 2 & 4–6 missing)
          David Ellis &
          -Malcolm Hulke
          Gerry Mill8 April – 13 May 1967
          036The Evil of the DaleksLL7 episodes
          -(episodes 1 & 3–7 missing)
          David WhitakerDerek Martinus20 May – 1 July 1967
          -

          Season 5 (1967–68)

          -
          Main article: Doctor Who (season 5)
          -

          Victor Pemberton was script editor for The Tomb of the Cybermen, with Peter Bryant as producer. After this, Bryant resumed the role of script editor, with Innes Lloyd returning as producer, until The Web of Fear when Bryant took over from Lloyd as producer. Derrick Sherwin replaced Bryant as script editor at the same time.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          037The Tomb of the CybermenMM4 episodesKit Pedler &
          -Gerry Davis
          Morris Barry2–23 September 1967
          038The Abominable SnowmenNN6 episodes
          -(episodes 1 & 3–6 missing)
          Mervyn Haisman &
          -Henry Lincoln
          Gerald Blake30 September – 4 November 1967
          039The Ice WarriorsOO6 episodes
          -(episodes 2 & 3 missing)
          Brian HaylesDerek Martinus11 November – 16 December 1967
          040The Enemy of the WorldPP6 episodes
          David WhitakerBarry Letts23 December 1967 – 27 January 1968
          041The Web of FearQQ6 episodes
          -(episode 3 missing)
          Mervyn Haisman and Henry LincolnDouglas Camfield3 February – 9 March 1968
          042Fury from the DeepRR6 episodes
          -(all missing)
          Victor PembertonHugh David16 March – 20 April 1968
          043The Wheel in SpaceSS6 episodes
          -(episodes 1–2 & 4–5 missing)
          David Whitaker and Kit PedlerTristan de Vere Cole27 April – 1 June 1968
          -

          Season 6 (1968–69)

          -
          Main article: Doctor Who (season 6)
          -

          Terrance Dicks took over from Derrick Sherwin as script editor from The Invasion, with Sherwin resuming the role for The Space Pirates. Derrick Sherwin took over as producer from Peter Bryant for The War Games.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          044The DominatorsTT5 episodesNorman Ashby
          -(aka Mervyn Haisman & Henry Lincoln)
          Morris Barry10 August – 7 September 1968
          045The Mind RobberUU5 episodes (20 mins each)Peter Ling
          -(and Derrick Sherwin)
          David Maloney14 September – 12 October 1968
          046The InvasionVV8 episodes
          -(episodes 1 & 4 missing)
          Derrick Sherwin and Kit PedlerDouglas Camfield2 November – 21 December 1968
          047The KrotonsWW4 episodesRobert HolmesDavid Maloney28 December 1968 – 18 January 1969
          048The Seeds of DeathXX6 episodesBrian Hayles
          -(and Terrance Dicks)
          Michael Ferguson25 January – 1 March 1969
          049The Space PiratesYY6 episodes
          -(episodes 1 & 3–6 missing)
          Robert HolmesMichael Hart8 March – 12 April 1969
          050The War GamesZZ10 episodesMalcolm Hulke &
          -Terrance Dicks
          David Maloney19 April – 21 June 1969
          -

          Third Doctor

          -

          The Third Doctor was portrayed by Jon Pertwee. Sentenced to exile on Earth and forcibly regenerated at the end of The War Games, the Doctor spent his time working for UNIT. After The Three Doctors, the Time Lords repealed his exile; however, the Doctor still worked closely with UNIT from time to time. The Third Doctor regenerated into his fourth incarnation as a result of radiation poisoning in the last moments of Planet of the Spiders.

          -

          Season 7 (1970)

          -
          Main article: Doctor Who (season 7)
          -

          Barry Letts took over as producer from Derrick Sherwin after Spearhead from Space. From this season onwards the programme was produced in colour. To accommodate the new production methods the number of episodes in a season was cut: season 6 has 44 episodes; season 7 has 25 episodes. The seasons would continue to have between 20 and 28 episodes until season 22.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          051Spearhead from SpaceAAA4 episodesRobert HolmesDerek Martinus3–24 January 1970
          052Doctor Who and the SiluriansBBB7 episodesMalcolm HulkeTimothy Combe31 January – 14 March 1970
          053The Ambassadors of DeathCCC7 episodes[ζ]David Whitaker, Trevor Ray, Terrance Dicks, and Malcolm HulkeMichael Ferguson21 March – 2 May 1970
          054InfernoDDD7 episodesDon HoughtonDouglas Camfield & Barry Letts9 May – 20 June 1970
          -

          Season 8 (1971)

          -
          Main article: Doctor Who (season 8)
          -

          This season forms a loose arc with the introduction of the Master, the villain in each of the season's storylines, and introduces the companion Jo Grant.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          055Terror of the AutonsEEE4 episodesRobert HolmesBarry Letts2–23 January 1971
          056The Mind of EvilFFF6 episodesDon HoughtonTimothy Combe30 January – 6 March 1971
          057The Claws of AxosGGG4 episodesBob Baker & Dave MartinMichael Ferguson13 March – 3 April 1971
          058Colony in SpaceHHH6 episodesMalcolm HulkeMichael E. Briant10 April – 15 May 1971
          059The DæmonsJJJ5 episodes"Guy Leopold" (pseudonym for Robert Sloman and Barry Letts)Christopher Barry22 May – 19 June 1971
          -

          Season 9 (1972)

          -
          Main article: Doctor Who (season 9)
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          060Day of the DaleksKKK4 episodesLouis MarksPaul Bernard1–22 January 1972
          061The Curse of PeladonMMM4 episodesBrian HaylesLennie Mayne29 January – 19 February 1972
          062The Sea DevilsLLL6 episodesMalcolm HulkeMichael Briant26 February – 1 April 1972
          063The MutantsNNN6 episodesBob Baker and Dave MartinChristopher Barry8 April – 13 May 1972
          064The Time MonsterOOO6 episodesRobert Sloman (and Barry Letts)Paul Bernard20 May – 24 June 1972
          -

          Season 10 (1972–73)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          065The Three Doctors[η]RRR4 episodesBob Baker and Dave MartinLennie Mayne30 December 1972 – 20 January 1973
          066Carnival of MonstersPPP4 episodesRobert HolmesBarry Letts27 January – 17 February 1973
          067Frontier in SpaceQQQ6 episodesMalcolm HulkePaul Bernard24 February – 31 March 1973
          068Planet of the DaleksSSS6 episodes[θ]Terry NationDavid Maloney7 April – 12 May 1973
          069The Green DeathTTT6 episodesRobert Sloman (and Barry Letts)Michael Briant19 May – 23 June 1973
          -

          Season 11 (1973–74)

          - -

          This season introduces the companion Sarah Jane Smith.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          070The Time WarriorUUU4 episodesRobert HolmesAlan Bromly15 December 1973 – 5 January 1974
          071Invasion of the Dinosaurs[ι]WWW6 episodes[κ]Malcolm HulkePaddy Russell12 January – 16 February 1974
          072Death to the DaleksXXX4 episodesTerry NationMichael Briant23 February – 16 March 1974
          073The Monster of PeladonYYY6 episodesBrian HaylesLennie Mayne23 March – 27 April 1974
          074Planet of the SpidersZZZ6 episodesRobert Sloman (and Barry Letts)Barry Letts4 May – 8 June 1974
          -

          Fourth Doctor

          -

          The Fourth Doctor was portrayed by Tom Baker. He is, to date, the actor who has played the Doctor on television for the longest time,[7] having held the role for seven seasons.

          -

          Season 12 (1974–75)

          - -

          Barry Letts served as producer for Robot, after which he was succeeded by Philip Hinchcliffe. Robert Holmes took over from Terrance Dicks as script editor. All serials in this season continue directly one after the other, tracing one single problematic voyage of the TARDIS crew. Despite the continuity, each serial is considered its own standalone story. This season also introduced the character of Harry Sullivan as a companion; this character was intended to undertake action scenes, during the period prior to Tom Baker being cast, when it was unclear how old the actor playing the new Doctor would be.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          075Robot4A4 episodesTerrance DicksChristopher Barry28 December 1974 – 18 January 1975
          076The Ark in Space4C4 episodesRobert Holmes (and John Lucarotti)Rodney Bennett25 January – 15 February 1975
          077The Sontaran Experiment4B2 episodesBob Baker & Dave MartinRodney Bennett22 February – 1 March 1975
          078Genesis of the Daleks4E6 episodesTerry NationDavid Maloney8 March – 12 April 1975
          079Revenge of the Cybermen4D4 episodesGerry DavisMichael Briant19 April – 10 May 1975
          -

          Season 13 (1975–76)

          - -

          During this season, Ian Marter (Harry Sullivan) left after Terror of the Zygons, but returned for a guest appearance in The Android Invasion. Terror of the Zygons also saw the last semi-regular appearance of Nicholas Courtney (Brigadier Lethbridge-Stewart) who would not return until Season 20 in Mawdryn Undead.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          080Terror of the Zygons4F4 episodesRobert Banks StewartDouglas Camfield30 August – 20 September 1975
          081Planet of Evil4H4 episodesLouis MarksDavid Maloney27 September – 18 October 1975
          082Pyramids of Mars4G4 episodesStephen Harris (pseudonym for Robert Holmes and Lewis Greifer)Paddy Russell25 October – 15 November 1975
          083The Android Invasion4J4 episodesTerry NationBarry Letts22 November – 13 December 1975
          084The Brain of Morbius4K4 episodesRobin Bland (pseudonym for Terrance Dicks and Robert Holmes)Christopher Barry3–24 January 1976
          085The Seeds of Doom4L6 episodesRobert Banks StewartDouglas Camfield31 January – 6 March 1976
          -

          Season 14 (1976–77)

          - -

          Elizabeth Sladen (Sarah Jane Smith) left the series this season and was replaced by Louise Jameson (Leela). The season also saw the first story in which the Doctor did not have a companion, The Deadly Assassin.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          086The Masque of Mandragora4M4 episodesLouis MarksRodney Bennett4–25 September 1976
          087The Hand of Fear4N4 episodesBob Baker & Dave MartinLennie Mayne2–23 October 1976
          088The Deadly Assassin4P4 episodesRobert HolmesDavid Maloney30 October – 20 November 1976
          089The Face of Evil4Q4 episodesChris BoucherPennant Roberts1–22 January 1977
          090The Robots of Death4R4 episodesChris BoucherMichael Briant29 January – 19 February 1977
          091The Talons of Weng-Chiang4S6 episodesRobert Holmes (and Robert Banks Stewart)David Maloney26 February – 2 April 1977
          -

          Season 15 (1977–78)

          - -

          Graham Williams took over as producer from Philip Hinchcliffe. Robert Holmes was replaced as script editor by Anthony Read during The Sun Makers.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          092Horror of Fang Rock4V4 episodesTerrance DicksPaddy Russell3–24 September 1977
          093The Invisible Enemy4T4 episodesBob Baker & Dave MartinDerrick Goodwin1–22 October 1977
          094Image of the Fendahl4X4 episodesChris BoucherGeorge Spenton-Foster29 October – 19 November 1977
          095The Sun Makers4W4 episodesRobert HolmesPennant Roberts26 November – 17 December 1977
          096Underworld4Y4 episodesBob Baker & Dave MartinNorman Stewart7–28 January 1978
          097The Invasion of Time4Z6 episodesDavid Agnew (pseudonym for Graham Williams and Anthony Read)Gerald Blake4 February – 11 March 1978
          -

          Season 16 (1978–79)

          - -

          Douglas Adams took over as script editor from Anthony Read for The Armageddon Factor. Season 16 consists of one long story arc encompassing six separate, linked stories. This season is referred to by the umbrella title The Key to Time and has been released on DVD under this title.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          098The Ribos Operation5A4 episodesRobert HolmesGeorge Spenton-Foster2–23 September 1978
          099The Pirate Planet5B4 episodesDouglas AdamsPennant Roberts30 September – 21 October 1978
          100The Stones of Blood5C4 episodesDavid FisherDarrol Blake28 October – 18 November 1978
          101The Androids of Tara5D4 episodesDavid FisherMichael Hayes25 November – 16 December 1978
          102The Power of Kroll5E4 episodesRobert HolmesNorman Stewart23 December 1978 – 13 January 1979
          103The Armageddon Factor5F6 episodesBob Baker and Dave MartinMichael Hayes20 January – 24 February 1979
          -

          Season 17 (1979–80)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          104Destiny of the Daleks5J4 episodesTerry NationKen Grieve1–22 September 1979
          105City of Death5H4 episodesDavid Agnew (pseudonym for Douglas Adams, Graham Williams, and David Fisher)Michael Hayes29 September – 20 October 1979
          106The Creature from the Pit5G4 episodesDavid FisherChristopher Barry27 October – 17 November 1979
          107Nightmare of Eden5K4 episodesBob BakerAlan Bromly24 November – 15 December 1979
          108The Horns of Nimon5L4 episodesAnthony ReadKenny McBain22 December 1979 – 12 January 1980
          Shada[β]5M6 episodesDouglas AdamsPennant RobertsUnaired
          -

          Season 18 (1980–81)

          - -

          John Nathan-Turner replaced Graham Williams as producer. Barry Letts returned, as executive producer, for just this season. Christopher H. Bidmead replaced Douglas Adams as script editor. In a return to the format of early seasons, virtually all serials from Seasons 18 through 20 are linked together, often running directly into each other.

          -

          Season 18 forms a loose story arc dealing with the theme of entropy. Full Circle, State of Decay, and Warriors' Gate trace the Doctor's adventures in E-Space; they were released in both VHS and DVD boxsets with the umbrella title The E-Space Trilogy.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          109The Leisure Hive5N4 episodesDavid FisherLovett Bickford30 August – 20 September 1980
          110Meglos5Q4 episodesJohn Flanagan and Andrew McCullochTerence Dudley27 September – 18 October 1980
          111Full Circle5R4 episodesAndrew SmithPeter Grimwade25 October – 15 November 1980
          112State of Decay5P4 episodesTerrance DicksPeter Moffatt22 November – 13 December 1980
          113Warriors' Gate5S4 episodesStephen GallagherPaul Joyce & Graeme Harper3–24 January 1981
          114The Keeper of Traken5T4 episodesJohnny ByrneJohn Black31 January – 21 February 1981
          115Logopolis5V4 episodesChristopher H. BidmeadPeter Grimwade28 February – 21 March 1981
          -

          Fifth Doctor

          -

          The Fifth Doctor was portrayed by Peter Davison.

          -

          Season 19 (1982)

          - -

          Antony Root took over from Bidmead as script editor for Four to Doomsday and The Visitation, after which he was replaced by Eric Saward. The show moved from its traditional once-weekly Saturday broadcast to being broadcast twice-weekly primarily on Monday and Tuesday, although there were regional variations to the schedule.

          -

          Castrovalva, together with the previous two serials, The Keeper of Traken and Logopolis, form a trilogy involving the return of the Master. They were released on DVD under the banner title New Beginnings.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          116Castrovalva5Z4 episodesChristopher H. BidmeadFiona Cumming4–12 January 1982
          117Four to Doomsday5W4 episodesTerence DudleyJohn Black18–26 January 1982
          118Kinda5Y4 episodesChristopher BaileyPeter Grimwade1–9 February 1982
          119The Visitation5X4 episodesEric SawardPeter Moffatt15–23 February 1982
          120Black Orchid6A2 episodesTerence DudleyRon Jones1–2 March 1982
          121Earthshock6B4 episodesEric SawardPeter Grimwade8–16 March 1982
          122Time-Flight6C4 episodesPeter GrimwadeRon Jones22–30 March 1982
          -

          Season 20 (1983)

          - -

          To commemorate the twentieth season, the stories in this season involve the return of previous villains. Mawdryn Undead, Terminus and Enlightenment involve the Black Guardian's plot to kill the Doctor; they were released individually on VHS and as a set on DVD as parts of The Black Guardian Trilogy. This season was broadcast twice weekly on Tuesday and Wednesday evenings on BBC1.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          123Arc of Infinity6E4 episodesJohnny ByrneRon Jones3–12 January 1983
          124Snakedance6D4 episodesChristopher BaileyFiona Cumming18–26 January 1983
          125Mawdryn Undead6F4 episodesPeter GrimwadePeter Moffatt1–9 February 1983
          126Terminus6G4 episodesStephen GallagherMary Ridge15–23 February 1983
          127Enlightenment6H4 episodesBarbara CleggFiona Cumming1–9 March 1983
          128The King's Demons6J2 episodesTerence DudleyTony Virgo15–16 March 1983
          -

          Special (1983)

          - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          129The Five Doctors[λ]6K20th anniversary special (90 mins)Terrance DicksPeter Moffatt23 November 1983 (USA)
          -25 November 1983 (UK)
          -

          Season 21 (1984)

          - -

          Episodes were broadcast twice weekly on Thursday and Friday evenings, with Resurrection of the Daleks broadcast on two consecutive Wednesday nights.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          130Warriors of the Deep6L4 episodesJohnny ByrnePennant Roberts5–13 January 1984
          131The Awakening6M2 episodesEric PringleMichael Owen Morris19–20 January 1984
          132Frontios6N4 episodesChristopher H. BidmeadRon Jones26 January – 3 February 1984
          133Resurrection of the Daleks6P2 episodes (45 mins each)[μ]Eric SawardMatthew Robinson8–15 February 1984
          134Planet of Fire6Q4 episodesPeter GrimwadeFiona Cumming23 February – 2 March 1984
          135The Caves of Androzani6R4 episodesRobert HolmesGraeme Harper8–16 March 1984
          -

          Sixth Doctor

          -

          The Sixth Doctor was portrayed by Colin Baker.

          -

          Season 21 (1984) continued

          - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          136The Twin Dilemma6S4 episodesAnthony StevenPeter Moffatt22–30 March 1984
          -

          Season 22 (1985)

          - -

          The series moved back to once-weekly Saturday broadcasts. All episodes were 45 minutes long, though they also exist in 25-minute versions. Although there were now only 13 episodes in the season, the total running time remained approximately the same as in previous seasons since the episodes were almost twice as long.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          137Attack of the Cybermen6T2 episodesPaula MooreMatthew Robinson5–12 January 1985
          138Vengeance on Varos6V2 episodesPhilip MartinRon Jones19–26 January 1985
          139The Mark of the Rani6X2 episodesPip and Jane BakerSarah Hellings2–9 February 1985
          140The Two Doctors6W3 episodesRobert HolmesPeter Moffatt16 February – 2 March 1985
          141Timelash6Y2 episodesGlen McCoyPennant Roberts9–16 March 1985
          142Revelation of the Daleks6Z2 episodesEric SawardGraeme Harper23–30 March 1985
          -

          Season 23 (1986)

          - -

          After an 18-month production hiatus, the series returned. Eric Saward was script editor up to part eight, when Nathan-Turner unofficially took over script editing the remainder of the season because of Saward's departure. The whole season is titled as The Trial of a Time Lord, and is split into four segments. The segments are commonly referred to by their working titles[8] (listed below) but the season was broadcast as one fourteen-part story and the working titles did not appear on screen. Episode length returned to 25 minutes, but with only fourteen episodes in the season, making the total running time of this season (and subsequent seasons) just over half of the previous seasons, going back to season 7.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          143Episodes 1-4 (The Mysterious Planet)7A4 episodesRobert HolmesNicholas Mallett6–27 September 1986
          Episodes 5-8 (Mindwarp)7B4 episodesPhilip MartinRon Jones4–25 October 1986
          Episodes 9-12 (Terror of the Vervoids)7C[9]4 episodesPip and Jane BakerChris Clough1–22 November 1986
          Episodes 13-14 (The Ultimate Foe)7C[9]2 episodes
          -(Episode 2 is 30 minutes)
          Robert Holmes and Pip and Jane BakerChris Clough29 November – 6 December 1986
          -

          Seventh Doctor

          -

          The Seventh Doctor was portrayed by Sylvester McCoy.

          -

          Season 24 (1987)

          - -

          Andrew Cartmel took over as script editor. This season was moved to a Monday schedule.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          144Time and the Rani7D4 episodesPip and Jane BakerAndrew Morgan7–28 September 1987
          145Paradise Towers7E4 episodesStephen WyattNicholas Mallett5–26 October 1987
          146Delta and the Bannermen7F3 episodesMalcolm KohllChris Clough2–16 November 1987
          147Dragonfire7G3 episodesIan BriggsChris Clough23 November – 7 December 1987
          -

          Season 25 (1988–89)

          - -

          The series was moved to Wednesdays.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          148Remembrance of the Daleks7H4 episodesBen AaronovitchAndrew Morgan5–26 October 1988
          149The Happiness Patrol7L3 episodesGraeme CurryChris Clough2–16 November 1988
          150Silver Nemesis7K3 episodesKevin ClarkeChris Clough23 November – 7 December 1988 (UK)
          -25 November 1988 (New Zealand)[ν]
          151The Greatest Show in the Galaxy7J4 episodesStephen WyattAlan Wareing14 December 1988 – 4 January 1989
          -

          Season 26 (1989)

          - -

          The final season continued to push the series towards a darker approach, focusing this time more on Ace's personal life as well as The Doctor's past and manipulations. This season set the tone for the Virgin New Adventures novels that followed.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          152Battlefield7N4 episodesBen AaronovitchMichael Kerrigan6–27 September 1989
          153Ghost Light7Q3 episodesMarc PlattAlan Wareing4–18 October 1989
          154The Curse of Fenric7M4 episodesIan BriggsNicholas Mallett25 October – 15 November 1989
          155Survival7P3 episodesRona MunroAlan Wareing22 November – 6 December 1989
          -

          Eighth Doctor

          -

          The Eighth Doctor was portrayed by Paul McGann. The movie is the only television appearance of this Doctor during his tenure. The only production title held by this story was Doctor Who. However, producer Philip Segal later suggested Enemy Within as an alternative title. Lacking any other specific name, many fans have adopted this to refer to the movie. Fan groups have also used other informal titles. The DVD release is titled Doctor Who: The Movie. In 2013, Paul McGann returned for the second television appearance of the Eighth Doctor in the minisode titled, "The Night of the Doctor".

          -

          Television movie (1996)

          - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          156Doctor WhoTVM[ξ]Television movie (89 mins)Matthew JacobsGeoffrey Sax12 May 1996 (Canada)
          -14 May 1996 (USA)
          -27 May 1996 (UK)
          -

          Ninth Doctor

          -

          In 2005, the BBC relaunched Doctor Who after a 16-year absence from episodic television, with Russell T Davies, Julie Gardner and Mal Young as executive producers, Phil Collinson as producer, and Christopher Eccleston taking the lead role of the Ninth Doctor.

          -

          The revival adheres to the original continuity. The new series is formatted to a 16:9 widescreen display ratio, and a standard episode length of 45 minutes. For the first time since the 1965/66 season each episode has an individual title, although most stories do not span more than one episode. The show also returned to its traditional Saturday evening slot.

          -

          Series 1 (2005)

          -
          Main article: Doctor Who (series 1)
          -

          The 2005 series constitutes a loose story arc, dealing with the consequences of the Time War and the mysterious Bad Wolf.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          157"Rose"1.11 episodeRussell T DaviesKeith Boak26 March 2005
          158"The End of the World"1.21 episodeRussell T DaviesEuros Lyn2 April 2005
          159"The Unquiet Dead"1.31 episodeMark GatissEuros Lyn9 April 2005
          160"Aliens of London"
          -"World War Three"
          1.4
          -1.5
          2 episodesRussell T DaviesKeith Boak16 April 2005
          -23 April 2005
          161"Dalek"1.61 episodeRobert ShearmanJoe Ahearne30 April 2005
          162"The Long Game"1.71 episodeRussell T DaviesBrian Grant7 May 2005
          163"Father's Day"1.81 episodePaul CornellJoe Ahearne14 May 2005
          164"The Empty Child"
          -"The Doctor Dances"
          1.9
          -1.10
          2 episodesSteven MoffatJames Hawes21 May 2005
          -28 May 2005
          165"Boom Town"1.111 episodeRussell T DaviesJoe Ahearne4 June 2005
          166"Bad Wolf"
          -"The Parting of the Ways"
          1.12
          -1.13
          2 episodesRussell T DaviesJoe Ahearne11 June 2005
          -18 June 2005
          -

          Tenth Doctor

          -

          The Tenth Doctor was portrayed by David Tennant, who was cast before the first series aired.[14] Mal Young vacated his position as executive producer when he departed the BBC after Series 1. He was not replaced in that capacity.

          -

          Specials (2005)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          "Doctor Who: Children in Need"CINChildren in Need special (7 mins)Russell T DaviesEuros Lyn18 November 2005
          167"The Christmas Invasion"2.XChristmas special (60 mins)Russell T DaviesJames Hawes25 December 2005
          -

          Series 2 (2006)

          -
          Main article: Doctor Who (series 2)
          -

          The back-story for the spin-off series Torchwood is "seeded" in various episodes in the 2006 series. Each episode also has an accompanying online TARDISODE.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          168"New Earth"2.11 episodeRussell T DaviesJames Hawes15 April 2006
          169"Tooth and Claw"2.21 episodeRussell T DaviesEuros Lyn22 April 2006
          170"School Reunion"2.31 episodeToby WhithouseJames Hawes29 April 2006
          171"The Girl in the Fireplace"2.41 episodeSteven MoffatEuros Lyn6 May 2006
          172"Rise of the Cybermen"
          -"The Age of Steel"
          2.5
          -2.6
          2 episodesTom MacRaeGraeme Harper13 May 2006
          -20 May 2006
          173"The Idiot's Lantern"2.71 episodeMark GatissEuros Lyn27 May 2006
          174"The Impossible Planet"
          -"The Satan Pit"
          2.8
          -2.9
          2 episodesMatt JonesJames Strong3 June 2006
          -10 June 2006
          175"Love & Monsters"2.101 episodeRussell T DaviesDan Zeff17 June 2006
          176"Fear Her"2.111 episodeMatthew GrahamEuros Lyn24 June 2006
          177"Army of Ghosts"
          -"Doomsday"
          2.12
          -2.13
          2 episodesRussell T DaviesGraeme Harper1 July 2006
          -8 July 2006
          -

          Special (2006)

          - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          178"The Runaway Bride"3.XChristmas special (60 mins)Russell T DaviesEuros Lyn25 December 2006
          -

          Series 3 (2007)

          -
          Main article: Doctor Who (series 3)
          -

          This series introduces Martha Jones and deals with the Face of Boe's final message, the mysterious Mr. Saxon, and the Doctor dealing with the loss of Rose Tyler. Susie Liggat was the producer for "Human Nature" and "The Family of Blood", with Phil Collinson credited as executive producer for those episodes.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          179"Smith and Jones"3.11 episodeRussell T DaviesCharles Palmer31 March 2007
          180"The Shakespeare Code"3.21 episodeGareth RobertsCharles Palmer7 April 2007
          181"Gridlock"3.31 episodeRussell T DaviesRichard Clark14 April 2007
          182"Daleks in Manhattan"
          -"Evolution of the Daleks"
          3.4
          -3.5
          2 episodesHelen RaynorJames Strong21 April 2007
          -28 April 2007
          183"The Lazarus Experiment"3.61 episodeStephen GreenhornRichard Clark5 May 2007
          184"42"3.71 episodeChris ChibnallGraeme Harper19 May 2007
          185"Human Nature"
          -"The Family of Blood"
          3.8
          -3.9
          2 episodesPaul CornellCharles Palmer26 May 2007
          -2 June 2007
          186"Blink"3.101 episodeSteven MoffatHettie MacDonald9 June 2007
          187"Utopia"
          -"The Sound of Drums"
          -"Last of the Time Lords"
          3.11
          -3.12
          -3.13
          3 episodes
          -(3.13 is 52 mins)
          Russell T DaviesGraeme Harper (3.11)
          -Colin Teague (3.12 & 3.13)
          16 June 2007
          -23 June 2007
          -30 June 2007
          -

          Specials (2007)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          "Time Crash"CIN2Children in Need special (8 mins)Steven MoffatGraeme Harper16 November 2007
          188"Voyage of the Damned"4.XChristmas special (72 mins)Russell T DaviesJames Strong25 December 2007
          -

          Series 4 (2008)

          -
          Main article: Doctor Who (series 4)
          -

          This series explores the coincidences binding the Doctor and Donna together. Susie Liggat was the producer for "Planet of the Ood", "The Sontaran Stratagem", "The Poison Sky", "The Unicorn and the Wasp" and "Turn Left", with Phil Collinson credited as executive producer for those episodes. Phil Collinson left the position of producer at the end of the series.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          189"Partners in Crime"4.11 episode (50 mins)Russell T DaviesJames Strong5 April 2008
          190"The Fires of Pompeii"4.3[ο]1 episode (50 mins)James MoranColin Teague12 April 2008
          191"Planet of the Ood"4.2[ο]1 episodeKeith TempleGraeme Harper19 April 2008
          192"The Sontaran Stratagem"
          -"The Poison Sky"
          4.4
          -4.5
          2 episodesHelen RaynorDouglas Mackinnon26 April 2008
          -3 May 2008
          193"The Doctor's Daughter"4.61 episodeStephen GreenhornAlice Troughton10 May 2008
          194"The Unicorn and the Wasp"4.71 episodeGareth RobertsGraeme Harper17 May 2008
          195"Silence in the Library"
          -"Forest of the Dead"
          4.9[ο]
          -4.10[ο]
          2 episodesSteven MoffatEuros Lyn31 May 2008
          -7 June 2008
          196"Midnight"4.8[ο]1 episodeRussell T DaviesAlice Troughton14 June 2008
          197"Turn Left"4.111 episode (50 mins)Russell T DaviesGraeme Harper21 June 2008
          198"The Stolen Earth"
          -"Journey's End"
          4.12
          -4.13
          2 episodes
          -(4.13 is 65 mins)
          Russell T DaviesGraeme Harper28 June 2008
          -5 July 2008
          -

          Specials (2008–10)

          - -

          From "Planet of the Dead", episodes were filmed in HD.[16] Susie Liggat produced "The Next Doctor", while Nikki Wilson produced "The Waters of Mars" and Tracie Simpson produced "Planet of the Dead" and The End of Time. For practical reasons, these specials continued to use Series 4 production codes.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          199"The Next Doctor"4.14Christmas special (60 mins)Russell T DaviesAndy Goddard25 December 2008
          200"Planet of the Dead"4.15Easter special (60 mins)Russell T Davies & Gareth RobertsJames Strong11 April 2009
          201"The Waters of Mars"4.16Autumn special (60 mins)Russell T Davies & Phil FordGraeme Harper15 November 2009
          202The End of Time4.17
          -4.18
          Christmas special (60 mins)
          -New Year's special (75 mins)
          Russell T DaviesEuros Lyn25 December 2009
          -1 January 2010
          -

          Eleventh Doctor

          -

          The Eleventh Doctor was portrayed by Matt Smith. Steven Moffat took over as head writer and executive producer after Russell T Davies stepped down. Julie Gardner also stepped down as executive producer and was replaced by Piers Wenger and Beth Willis.

          -

          Series 5 (2010)

          -
          Main article: Doctor Who (series 5)
          -

          Tracie Simpson and Peter Bennett shared producer duties for this series only, with Patrick Schweitzer co-producing with Simpson for "The Vampires of Venice" and "Vincent and the Doctor".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          203"The Eleventh Hour"1.11 episode (65 mins)Steven MoffatAdam Smith3 April 2010
          204"The Beast Below"1.21 episodeSteven MoffatAndrew Gunn10 April 2010
          205"Victory of the Daleks"1.31 episodeMark GatissAndrew Gunn17 April 2010
          206"The Time of Angels"
          -"Flesh and Stone"
          1.4
          -1.5
          2 episodesSteven MoffatAdam Smith24 April 2010
          -1 May 2010
          207"The Vampires of Venice"1.61 episode (50 mins)Toby WhithouseJonny Campbell8 May 2010
          208"Amy's Choice"1.71 episodeSimon NyeCatherine Morshead15 May 2010
          209"The Hungry Earth"
          -"Cold Blood"
          1.8
          -1.9
          2 episodes
          Chris ChibnallAshley Way22 May 2010
          -29 May 2010
          210"Vincent and the Doctor"1.101 episodeRichard CurtisJonny Campbell5 June 2010
          211"The Lodger"1.111 episodeGareth RobertsCatherine Morshead12 June 2010
          212"The Pandorica Opens"
          -"The Big Bang"
          1.12
          -1.13
          2 episodes
          -(50 and 55 mins)
          Steven MoffatToby Haynes19 June 2010
          -26 June 2010
          -

          Specials (2010–11)

          -

          Sanne Wohlenberg produced "A Christmas Carol".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          213"A Christmas Carol"2.XChristmas special (60 mins)Steven MoffatToby Haynes25 December 2010
          "Space"
          -"Time"
          2 Comic Relief specials (3 mins each)Steven MoffatRichard Senior18 March 2011
          -

          Series 6 (2011)

          -
          Main article: Doctor Who (series 6)
          -

          The original transmission of series 6 was split into two parts, with the first seven episodes airing April to June 2011 and the final six from late August to October 2011. Sanne Wohlenberg continued as producer for the first block of filming, consisting of "The Doctor's Wife" and "Night Terrors". Marcus Wilson then took over as series producer, with Denise Paul producing "Closing Time".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          214"The Impossible Astronaut"
          -"Day of the Moon"
          2.1
          -2.2
          2 episodesSteven MoffatToby Haynes23 April 2011
          -30 April 2011
          215"The Curse of the Black Spot"2.9[π]1 episodeStephen ThompsonJeremy Webb7 May 2011
          216"The Doctor's Wife"2.3[π]1 episodeNeil GaimanRichard Clark14 May 2011
          217"The Rebel Flesh"
          -"The Almost People"
          2.5
          -2.6
          2 episodesMatthew GrahamJulian Simpson21 May 2011
          -28 May 2011
          218"A Good Man Goes to War"2.71 episode (50 mins)Steven MoffatPeter Hoar4 June 2011
          219"Let's Kill Hitler"2.81 episode (50 mins)Steven MoffatRichard Senior27 August 2011
          220"Night Terrors"2.4[π]1 episodeMark GatissRichard Clark3 September 2011
          221"The Girl Who Waited"2.101 episodeTom MacRaeNick Hurran10 September 2011
          222"The God Complex"2.111 episode (50 mins)Toby WhithouseNick Hurran17 September 2011
          223"Closing Time"2.121 episodeGareth RobertsSteve Hughes24 September 2011
          224"The Wedding of River Song"2.131 episodeSteven MoffatJeremy Webb1 October 2011
          -

          Specials (2011–12)

          -

          The Christmas special was executive produced by Moffat, Wenger and Caroline Skinner.[17] Beth Willis left the BBC and stepped down as executive producer after series 6[18] and Wenger also departed following the Christmas special, leaving Moffat and Skinner as executive producers for series 7.[19]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleCodeEpisodesWriterDirectorOriginal airdate
          225"The Doctor, the Widow and the Wardrobe"X11Christmas special (60 mins)Steven MoffatFarren Blackburn25 December 2011
          Pond Life5 mini-episodesChris ChibnallSaul Metzstein27–31 August 2012 (webcast)
          -1 September 2012 (BBC Red Button)
          -

          Series 7 (2012–13)

          -
          Main article: Doctor Who (series 7)
          -

          Series 7 started with five episodes in late 2012, followed by a Christmas special and eight episodes in 2013. From this series on, the use of production codes were abandoned.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleEpisodesWriterDirectorOriginal airdate
          226"Asylum of the Daleks"1 episode (50 mins)Steven MoffatNick Hurran1 September 2012
          227"Dinosaurs on a Spaceship"1 episodeChris ChibnallSaul Metzstein8 September 2012
          228"A Town Called Mercy"1 episodeToby WhithouseSaul Metzstein15 September 2012
          229"The Power of Three"1 episodeChris ChibnallDouglas Mackinnon22 September 2012
          230"The Angels Take Manhattan"1 episodeSteven MoffatNick Hurran29 September 2012
          -

          Specials (2012)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleEpisodesWriterDirectorOriginal airdate
          "P.S."1 mini-episode (5 mins)Chris Chibnall12 October 2012 (webcast)
          "The Great Detective"1 mini-episode (3 mins)Steven Moffat16 November 2012
          231"The Snowmen"Christmas special (60 mins)Steven MoffatSaul Metzstein25 December 2012
          -

          Series 7 (2012–13) continued

          -

          Denise Paul produced "The Bells of Saint John", "The Rings of Akhaten", "Nightmare in Silver" and "The Name of the Doctor" with Marcus Wilson credited as series producer on those episodes.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleEpisodesWriterDirectorOriginal airdate
          232"The Bells of Saint John"1 episodeSteven MoffatColm McCarthy30 March 2013
          233"The Rings of Akhaten"1 episodeNeil CrossFarren Blackburn6 April 2013
          234"Cold War"1 episodeMark GatissDouglas Mackinnon13 April 2013
          235"Hide"1 episodeNeil CrossJamie Payne20 April 2013
          236"Journey to the Centre of the TARDIS"1 episodeStephen ThompsonMat King27 April 2013
          237"The Crimson Horror"1 episodeMark GatissSaul Metzstein4 May 2013
          238"Nightmare in Silver"1 episodeNeil GaimanStephen Woolfenden11 May 2013
          239"The Name of the Doctor"1 episodeSteven MoffatSaul Metzstein18 May 2013
          -

          Specials (2013)

          - -

          Following Caroline Skinner's departure, BBC Wales' Head of Drama, Faith Penhale, served as Executive Producer with Moffat for the 50th anniversary special;[20] Brian Minchin, previously a script editor in series 5, took over the role thereafter.[21]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleEpisodesWriterDirectorOriginal airdate
          "The Night of the Doctor"1 mini-episode (7 mins)Steven MoffatJohn Hayes14 November 2013 (webcast)
          -16 November 2013 (BBC Red Button)
          "The Last Day"1 mini-episode (4 mins)Steven MoffatJamie Stone21 November 2013 (webcast)
          240"The Day of the Doctor"50th anniversary special (75 mins)Steven MoffatNick Hurran23 November 2013
          241"The Time of the Doctor"Christmas special (60 mins)Steven MoffatJamie Payne25 December 2013
          -

          Twelfth Doctor

          -

          The Twelfth Doctor is portrayed by Peter Capaldi.

          -

          Series 8 (2014)

          -
          Main article: Doctor Who (series 8)
          -

          Producer Marcus Wilson was replaced by Nikki Wilson and Peter Bennett.[22]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitle[23]EpisodesWriter[23]Director[23]Original airdate[24]
          242"Deep Breath"1 episode (76 mins)Steven MoffatBen Wheatley23 August 2014
          243"Into the Dalek"1 episodePhil Ford & Steven MoffatBen Wheatley30 August 2014
          244"Robot of Sherwood"1 episodeMark GatissPaul Murphy6 September 2014
          245"Listen"1 episodeSteven MoffatDouglas Mackinnon13 September 2014
          246"Time Heist"1 episodeStephen Thompson & Steven MoffatDouglas Mackinnon20 September 2014
          247"The Caretaker"1 episodeGareth Roberts & Steven MoffatPaul Murphy27 September 2014
          248"Kill the Moon"1 episodePeter HarnessPaul Wilmshurst4 October 2014
          249"Mummy on the Orient Express"1 episodeJamie MathiesonPaul Wilmshurst11 October 2014
          250"Flatline"1 episodeJamie MathiesonDouglas Mackinnon18 October 2014
          251"In the Forest of the Night"1 episodeFrank Cottrell BoyceSheree Folkson25 October 2014
          252"Dark Water"
          -"Death in Heaven"
          2 episodesSteven MoffatRachel Talalay1 November 2014
          -8 November 2014
          -

          Special (2014)

          -

          Filming on the 2014 Christmas Special began in September 2014, with both Peter Capaldi and Jenna Coleman confirmed to return.[25] Filming wrapped 3 October 2014.[26]

          - - - - - - - - - - - - - - - - - -
          NoTitleEpisodesWriterDirectorOriginal airdate
          253TBAChristmas special[27]Steven Moffat[27]Paul Wilmshurst[28]25 December 2014
          -

          Other stories

          -

          Television broadcasts

          -

          There have also been several special Doctor Who episodes and serials that are produced by the BBC. They usually consist of spoofs and crossovers with other TV shows, and stories produced for special occasions.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirectorOriginal airdate
          "A Fix with Sontarans"1 episode, 9 minutesEric SawardMarcus Mortimer23 February 1985
          A segment of Jim'll Fix It during Colin Baker's tenure as the Sixth Doctor, also starring Janet Fielding as Tegan Jovanka.
          "Search Out Science: The Ultimate Challenge"[29]1 episode, 20 minutesLambros Atteshlis and Stuart Berry-Anne BillingsleyStuart Berry-Anne Billingsley21 November 1990
          A special edition of the children's education programme Search Out Science featuring Sylvester McCoy as the Seventh Doctor, Sophie Aldred as Ace and John Leeson as K-9.
          Dimensions in Time2 episodes, 13 minutes totalJohn Nathan-Turner and David RodenStuart MacDonald26–27 November 1993
          A thirtieth anniversary programme for Doctor Who. The special was also a crossover with EastEnders. It featured Jon Pertwee, Tom Baker, Peter Davison, Colin Baker and Sylvester McCoy as the Doctor plus many of the companions.
          Doctor Who and the Curse of Fatal Death4 parts, 23 minutes totalSteven MoffatJohn Henderson12 March 1999
          A Comic Relief spoof, starring Rowan Atkinson, Richard E. Grant, Jim Broadbent, Hugh Grant, and Joanna Lumley as the Doctor, and Jonathan Pryce as the Master.
          "Attack of the Graske"14-minute interactive episodeGareth RobertsAshley Way25 December 2005
          An interactive "mini-episode" debuting on the BBC Red Button service
          The Infinite Quest13 parts, 45 minutes totalAlan BarnesGary Russell2 April – 30 June 2007
          An animated serial debuting as segments during Totally Doctor Who made during David Tennant's tenure as The Doctor, plus his companion Martha Jones.
          "Music of the Spheres"7 minutesRussell T DaviesEuros Lyn27 July 2008
          -BBC iPlayer and BBC Radio 3 (audio only)
          -1 January 2009[30]
          -BBC One
          A segment of the 2008 BBC Proms
          "Doctor Who: Tonight's the Night"3 minutesRussell T DaviesAlice Troughton23 May 2009
          A segment of Tonight's the Night written for the winner of the Doctor Who Alien Talent Search competition.[31] Starring the competition winner Tim Ingham as Sao Til,[32] John Barrowman as Captain Jack Harkness and David Tennant as himself.
          Dreamland6 parts, 45 minutes totalPhil FordGary Russell21–26 November 2009[33]
          -BBC Red Button and online
          -5 December 2009
          -BBC Two
          An animated serial debuting on the BBC Red Button service and the BBC Doctor Who website, and later broadcast as one episode on BBC Two.
          "Death Is the Only Answer"[34]4 minutesThe Children of Oakley Junior SchoolJeremy Webb1 October 2011
          Doctor Who Confidential special
          "Good as Gold"[35][36]3 minutesThe Children of Ashdene SchoolSaul Metzstein[37]24 May 2012
          Blue Peter special
          The Five(ish) Doctors Reboot31 minutesPeter DavisonPeter Davison23 November 2013
          A 50th anniversary Doctor Who comedy homage debuting on the BBC Red Button service, featuring former stars Peter Davison, Colin Baker, Sylvester McCoy and others.
          -

          Home video releases

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirectorRelease date
          Meanwhile in the TARDIS2 episodes, 7 minutes totalSteven MoffatEuros Lyn8 November 2010
          Two additional scenes, starring Matt Smith and Karen Gillan, specially filmed for "The Complete Fifth Series" boxset which reveal what occurred between selected regular episodes. The first instalment is set between "The Eleventh Hour" and "The Beast Below", the second is set between "Flesh and Stone" and "The Vampires of Venice".
          Night and the Doctor[38]"Bad Night"
          -"Good Night"
          -"First Night"
          -"Last Night"
          -"Up All Night", 16 minutes total
          Steven MoffatRichard Senior[39]21 November 2011
          Five additional scenes written and produced for "The Complete Sixth Series" boxset.
          -

          Radio broadcasts

          -

          There have been many Doctor Who radio broadcasts over the years. In addition to a small number of in-house BBC productions, a larger number of radio plays produced by Big Finish began to be broadcast on BBC Radio 7 from 2005, featuring the Eighth Doctor (again played by Paul McGann) with mainstay companions Charley Pollard and later Lucie Miller. Initially, these were broadcasts of Big Finish productions that had already been released on CD. However, the series that began with Blood of the Daleks and concluded with Human Resources was specially commissioned by the BBC from Big Finish for broadcast prior to the CD release. Many more of these were released on CD than were broadcast on the radio; only those plays broadcast by the BBC are listed here. See the list of Doctor Who audio releases as a starting point for other audio plays and audio books, notably the list of Doctor Who audio plays by Big Finish which includes considerably more plays than were broadcast.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirector/ProducerOriginal airdate
          Movietime: "Daleks – Invasion Earth – 2150 A.D."1 episodeGordon Gow (adaptation)Tony Luke18 November 1966[40][41]
          A narrated broadcast of the soundtrack of the second Dalek film on the BBC Light Programme
          "Exploration Earth: The Time Machine"1 episode, 20 minutesBernard VenablesMike Howarth and David Lyttle4 October 1976
          An educational Radio 4 drama featuring the Fourth Doctor
          Slipback6 episodes, 10 minutes eachEric SawardPaul Spencer25 July – 8 August 1985
          A Radio 4 serial featuring the Sixth Doctor
          The Paradise of Death5 episodes, 30 minutes eachBarry LettsPhil Clarke27 August – 24 September 1993
          A Radio 5 serial featuring the Third Doctor
          Doctor Who and the Ghosts of N-Space6 episodes, 30 minutes eachBarry LettsPhil Clarke20 January – 24 February 1996
          A Radio 2 drama featuring the Third Doctor
          -

          The following are all Eighth Doctor dramas produced by Big Finish and broadcast on BBC Radio 7.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirector/ProducerOriginal airdate
          Storm Warning4 episodes, 25 minutes eachAlan BarnesGary Russell6–27 August 2005
          Sword of Orion4 episodes, 25 minutes eachNicholas BriggsNicholas Briggs3–24 September 2005
          The Stones of Venice4 episodes, 25 minutes eachPaul MagrsGary Russell1–22 October 2005
          Invaders from Mars4 episodes, 25 minutes eachMark GatissMark Gatiss29 October – 19 November 2005
          Shada1 episode, 150 minutesDouglas Adams & Gary RussellNicholas Pegg10 December 2005
          The Chimes of Midnight4 episodes, 25 minutes eachRobert ShearmanBarnaby Edwards17 December 2005 – 7 January 2006
          Blood of the Daleks2 episodes, 50 minutes eachSteve LyonsNicholas Briggs31 December 2006 – 7 January 2007
          Horror of Glam Rock1 episode, 50 minutesPaul MagrsBarnaby Edwards14 January 2007
          Immortal Beloved1 episode, 50 minutesJonathan ClementsJason Haigh-Ellery21 January 2007
          Phobos1 episode, 50 minutesEddie RobsonBarnaby Edwards28 January 2007
          No More Lies1 episode, 50 minutesPaul SuttonBarnaby Edwards4 February 2007
          Human Resources2 episodes, 50 minutes eachEddie RobsonNicholas Briggs11–18 February 2007
          Dead London1 episode, 50 minutesPat MillsBarnaby Edwards19 October 2008
          Max Warp1 episode, 50 minutesJonathan MorrisBarnaby Edwards26 October 2008
          Brave New Town1 episode, 50 minutesJonathan ClementsBarnaby Edwards2 November 2008
          The Skull of Sobek1 episode, 50 minutesMarc PlattBarnaby Edwards9 November 2008
          Grand Theft Cosmos1 episode, 50 minutesEddie RobsonBarnaby Edwards19 November 2008
          The Zygon Who Fell to Earth1 episode, 50 minutesPaul MagrsBarnaby Edwards23 November 2008
          Sisters of the Flame1 episode, 55 minutesNicholas BriggsNicholas Briggs31 October 2009[42]
          Vengeance of Morbius1 episode, 55 minutesNicholas BriggsNicholas Briggs18 December 2009
          Orbis2 episodes, 30 minutes eachAlan Barnes & Nicholas BriggsNicholas Briggs16–23 May 2010
          The Beast of Orlok2 episodes, 30 minutes eachBarnaby EdwardsBarnaby Edwards30 May – 6 June 2010
          Scapegoat2 episodes, 30 minutes eachPat MillsNicholas Briggs13–20 June 2010
          The Cannibalists2 episodes, 30 minutes eachJonathan MorrisJason Haigh-Ellery27 June – 4 July 2010
          Death in Blackpool1 60-minute episodeAlan BarnesBarnaby Edwards7 January 2013
          Situation Vacant1 60-minute episodeEddie RobsonNicholas Briggs8 January 2013
          Nevermore1 60-minute episodeAlan BarnesNicholas Briggs9 January 2013
          The Books of Kells1 60-minute episodeBarnaby EdwardsBarnaby Edwards10 January 2013
          Deimos1 60-minute episodeJonathan MorrisBarnaby Edwards11 January 2013
          The Resurrection of Mars1 60-minute episodeJonathan MorrisBarnaby Edwards14 January 2013
          Relative Dimensions1 60-minute episodeMarc PlattBarnaby Edwards15 January 2013
          Prisoner of the Sun1 60-minute episodeEddie RobsonJason Haigh-Ellery16 January 2013
          Lucie Miller1 60-minute episodeNicholas BriggsNicholas Briggs17 January 2013
          To the Death1 60-minute episodeNicholas BriggsNicholas Briggs18 January 2013
          -

          In 2011, BBC Radio 4 Extra began a series of Fifth Doctor dramas produced by Big Finish.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirector/ProducerOriginal airdate
          Cobwebs4 episodes, 30 minutes eachJonathan MorrisBarnaby Edwards16–20 May 2011[43]
          The Whispering Forest4 episodes, 30 minutes eachStephen ColeBarnaby Edwards20–25 May 2011[43]
          The Cradle of the Snake4 episodes, 30 minutes eachMarc PlattBarnaby Edwards26 May – 1 June 2011
          -

          December 2011 saw the broadcast of the Fourth Doctor audio Hornets' Nest on BBC Radio 4 Extra.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirector/ProducerOriginal airdate
          The Stuff of Nightmares2 episodes, 30 minutes eachPaul MagrsKate Thomas12–13 December 2011[44][45]
          The Dead Shoes2 episodes, 30 minutes eachPaul MagrsKate Thomas14–15 December 2011[46][47]
          The Circus of Doom2 episodes, 30 minutes eachPaul MagrsKate Thomas16 & 19 December 2011[48][49]
          A Sting in the Tale2 episodes, 30 minutes eachPaul MagrsKate Thomas20–21 December 2011[50][51]
          Hive of Horror2 episodes, 30 minutes eachPaul MagrsKate Thomas22–23 December 2011[52][53]
          -

          In 2012, BBC Radio 4 Extra began a series of Seventh Doctor dramas produced by Big Finish.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirector/ProducerOriginal airdate
          A Thousand Tiny Wings3 episodes, 30 minutes eachAndy LaneLisa Bowerman21–23 May 2012
          Survival of the Fittest4 episodes, 30 minutes eachJonathan ClementsJohn Ainsworth24–29 May 2012[54][55][56][57]
          The Architects of History4 episodes, 30 minutes eachSteve LyonsJohn Ainsworth30 May – 4 June 2012[58][59]
          -

          Audiobook readings

          -

          BBC Radio 4 Extra has aired some of BBC Audio's audiobook readings of Classic Series novelisations, all read by Tom Baker.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterReaderOriginal airdates
          Doctor Who and the Giant Robot8 episodes, 30 min eachTerrance DicksTom Baker5–14 April 2010[60]
          Doctor Who and The Brain of Morbius8 episodes, 30 min eachTerrance DicksTom Baker15–26 April 2010[60]
          Doctor Who and the Creature from the Pit7 episodes, 30 min eachDavid FisherTom Baker27 April – 5 May 2010[60]
          Doctor Who and the Pyramids of Mars6 episodes, 30 min eachTerrance DicksTom Baker26 December 2011 – 2 January 2012[60]
          -

          50th Anniversary

          -

          In 2013, BBC Radio 4 Extra broadcast 8 audio adventures and talking books from both Big Finish and Audio Go under the title of Doctor Who at 50.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterReader / StarringOriginal airdates
          Doctor Who and the Daleks10 episodes, 30 mins eachDavid WhitakerWilliam Russell16 November 2013[61]
          Protect and Survive4 episodes, 30 mins eachJonathan MorrisSylvester McCoy, Sophie Aldred & Philip Olivier17 November 2013[61]
          1963: Fanfare for the Common Men4 episodes, 30 mins eachJohn DorneyPeter Davison & Sarah Sutton18 November 2013[61]
          A Thousand Tiny Wings3 episodes, 30 mins eachAndy LaneSylvester McCoy & Tracey Childs19 November 2013[61]
          Farwell, Great Macedon3 episodes, 2 x 30 mins & 1 x 165 minsMoris Farhi; adapted by Nigel RobinsonWilliam Russell & Carol Ann Ford20 November 2013[61]
          Human Resources2 episodes, 60 mins eachEddie RobsonPaul McGann & Sheridan Smith21 November 2013[61]
          The Dalek Invasion of Earth2 episodes, 1 x 60 mins & 1 x 195 minsTerrance DicksWilliam Russell22 November 2013[61]
          Lucie Miller / To the Death2 episodes, 60 mins eachNicholas BriggsPaul McGann & Sheridan Smith24 November 2013
          -

          Webcasts

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          TitleEpisodesWriterDirectorOriginal airdate
          Death Comes to Time13 parts, 140 minutes in totalColin MeekDan Freedman13 July 2001 (pilot)
          -14 February – 3 May 2002 (regular)
          An illustrated audio webcast for BBCi featuring the Seventh Doctor.
          Real Time6 parts, 12 minutes eachGary RussellGary Russell2 August – 6 September 2002
          An illustrated audio webcast for BBCi featuring the Sixth Doctor.
          Shada6 parts, 25 minutes eachDouglas AdamsNicholas Pegg2 May – 6 June 2003
          An illustrated audio webcast for BBCi featuring the Eighth Doctor in a remake of the unfinished Fourth Doctor serial.
          Scream of the Shalka6 parts, 15 minutes eachPaul CornellWilson Milam13 November – 18 December 2003
          Animated webcast for BBCi featuring an alternative version of the Ninth Doctor known as the Shalka Doctor, played by Richard E. Grant.
          -

          Death Comes to Time was released on CD by the BBC, and later re-released as an MP3 CD featuring the original illustrations. Real Time and Shada were released on CD by Big Finish. The webcast for Shada was released on DVD on 7 January 2013 as part of 'The Legacy Collection' and is only viewable on a PC or MAC. Scream of the Shalka was released in novel form in the Past Doctor Adventures series. While it has been classified for DVD release by the BBFC,[62] a planned release was postponed due to the programme's return to television. It was later released on 16 September 2013.[63]

          -

          Video games

          -

          In 1983 Doctor Who: The First Adventure was released for the BBC Micro.[64] followed by Doctor Who and the Warlord in 1985[65] and Doctor Who and the Mines of Terror also in 1985.[66] Later several other games were released.

          -

          The Adventure Games

          - -

          On 7 April 2010, the BBC announced that the fifth series would be supplemented with four "interactive episodes",[67] released online for free in the UK. They are described as "part of the Doctor Who universe", and will "go on to define the look and feel of future TV episodes." Executively produced by Moffat, Wenger and Willis with Anwen Aspden and Charles Cecil, the games are developed by Sumo Digital and written by Phil Ford and James Moran. Matt Smith and Karen Gillan provide full voiceovers for the digitised Doctor and Amy, both of whom are playable characters. Each episode offers around two hours of gameplay.[67] The Adventure Games were recommissioned by the BBC for a second series in 2011,[68] but after the release of The Gunpowder Plot, they were cancelled so the BBC could focus more on console games such as Doctor Who: The Eternity Clock.

          -
          Series 1
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          NoTitleWriterOriginal release
          1"City of the Daleks"Phil Ford5 June 2010
          2"Blood of the Cybermen"Phil Ford26 June 2010
          3"TARDIS"James Moran27 August 2010
          4"Shadows of the Vashta Nerada"Phil Ford22 December 2010
          -
          Series 2
          - - - - - - - - - - - - - -
          NoTitleWriterOriginal release
          5"The Gunpowder Plot"Phil Ford31 October 2011
          -

          See also

          - - - - - - -
          - - - - - - - - - -
          Portal iconDoctor Who portal
          Portal iconBBC portal
          -
          - -

          Footnotes

          -
          -
            -
          1. ^ Although technically the sixteenth season, the season was known by its subtitle, The Key to Time.
          2. -
          3. ^ a b Shada was left unfinished due to a strike. Its recorded footage was later released on home video using linking narration by Tom Baker to complete the story. It is not included in the episode or story counts as it was not broadcast.
          4. -
          5. ^ Although technically the twenty-third season, the season was known by its subtitle, The Trial of a Time Lord.
          6. -
          7. ^ Webber's script for the originally intended opening episode for the first story The Giants was a basis for the opening episode, but Webber didn't work with Coburn on the script.
          8. -
          9. ^ From this story up to the end of the original run [1989], the serials had overall titles (where previously each episode had an individual title), with episodes now simply being numbered (1,2 etc.). For the 2005 revival, episode titles are used, even for most multi-episode tales, although the majority of stories are told in a single episode.
          10. -
          11. ^ Episodes 2, 3, 4 and 7 existed in black and white only, but have been restored to full color for the 2009 DVD boxset, using colour recovery methods and the original colour information found in the chroma dots in a black-and-white film copy.[6]
          12. -
          13. ^ The Three Doctors was a tenth anniversary serial.
          14. -
          15. ^ Between 1976 and 2008, Episode 3 existed only in black and white – for the Dalek War DVD box set release, the colour has been replaced using a combination of computer colourisation by Legend Films, and software developed by the Colour Recovery Working Group. This version was released on DVD in 2009. The colour masters for the other five episodes are still in existence.
          16. -
          17. ^ The first episode lists the serial's name as simply Invasion, in order to conceal the surprise ending to that episode.
          18. -
          19. ^ Between 1976 and 2011, Episode 1 existed only in black and white – for the UNIT Files DVD box set release, the colour has been replaced using a software developed by the Colour Recovery Working Group. This version was released on DVD in 2012. The colour masters for the other five episodes are still in existence.
          20. -
          21. ^ The Five Doctors has also been released as four 25-minute episodes, and a 100 minute "Special Edition" re-edit originally released on VHS in 1995. It is counted as 1 episode in the count.
          22. -
          23. ^ Resurrection of the Daleks was written and filmed as four 25-minute episodes, then re-edited into two 45-minute episodes to accommodate coverage of the 1984 Winter Olympics; the 25-minute versions were later circulated to overseas broadcasters and commercially released. The serial is regarded as two 45-minute episodes in the count.
          24. -
          25. ^ Parts Two and Three of Silver Nemesis were first broadcast in New Zealand as part of a compilation broadcast before their UK transmission.[10]
          26. -
          27. ^ "TVM" is used in the BBC's online episode guide.[11] The actual code used during production is 50/LDX071Y/01X.[12] Doctor Who Magazine's "Complete Eighth Doctor Special" gives the production code as #83705.[13] Big Finish Productions uses the code 8A, and numbers its subsequent Eighth Doctor stories correspondingly.
          28. -
          29. ^ a b c d e As filming progressed on Series 4, the producers decided to rearrange the order of some episodes. "The Fires of Pompeii" and "Planet of the Ood" were switched, and "Midnight" was moved to air after the "Silence in the Library"/"Forest of the Dead" two-parter. However, the episodes retained the production codes reflecting the earlier plans.[15]
          30. -
          31. ^ a b c In order to achieve a greater variety of stories in the first half of series 6, "The Curse of the Black Spot" was moved forward to episode three before it was filmed. "The Doctor's Wife" was placed after it as episode four, and "Night Terrors" was moved to episode nine, the second episode of the series' autumn run. The production codes reflect the original intended order.
          32. -
          -
          -

          References

          -
          -
            -
          1. ^ "Dr Who 'longest-running sci-fi'". BBC. 28 September 2006. Retrieved 15 December 2007. 
          2. -
          3. ^ Colvin, Chad (9 March 2010). "Smallville will break Stargate SG-1's world record". Retrieved 11 December 2011. 
          4. -
          5. ^ Howe, David J.; Walker, Stephen James (1998, 2003). "The Trial of a Time Lord: 1–4 : Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 27 October 2007.  Check date values in: |date= (help)
          6. -
          7. ^ Cornell, Paul; Day, Martin and Topping, Keith (1995). "The Five Doctors: Details". Doctor Who: The Discontinuity Guide. BBC Doctor Who website. Retrieved 27 October 2007. 
          8. -
          9. ^ Spilsbury, Tom (22 April 2009). "The Mighty 200!". Doctor Who Magazine (Royal Tunbridge Wells, Kent: Panini Comics) (407): 26–29. 
          10. -
          11. ^ "The Doctor Who News Page: DVD 2011 Update". Gallifreynewsbase.blogspot.com. 13 January 2011. Retrieved 18 May 2011. 
          12. -
          13. ^ "Tom Baker". BBC Doctor Who website. 12 August 2004. Archived from the original on 29 December 2008. Retrieved 23 April 2013. 
          14. -
          15. ^ "Doctor Who – Classic Series – Episode Guide – Second Doctor Index". BBC. Retrieved 18 May 2011. 
          16. -
          17. ^ a b Pixley, Andrew (1992). "Archive Feature Serial 7C The Ultimate Foe". Doctor Who Magazine (London: Marvel UK) (Winter Special 1992): 43–49. ISSN 0957-9818. 
          18. -
          19. ^ Sullivan, Shannon (7 August 2007). "Silver Nemesis". A Brief History of Time Travel. Retrieved 30 August 2008. 
          20. -
          21. ^ Howe, David J.; Walker, Stephen James. "The TV Movie: Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 26 July 2007. 
          22. -
          23. ^ Segal, Philip; Russell, Gary (2000). Doctor Who: Regeneration. HarperCollinsEntertainment. ISBN 0-00-710591-6. 
          24. -
          25. ^ "The DWM Archive: Doctor Who (1996) – In Production". Doctor Who Magazine Special Edition (5). 3 September 2003. p. 69. ISSN 0957-9818. 
          26. -
          27. ^ "Bad Wolf" / "The Parting of the Ways" at Doctor Who: A Brief History Of Time (Travel) Retrieved 28 November 2007.
          28. -
          29. ^ Pixley, Andrew (August 2008). "The Doctor Who Companion: Series Four". Doctor Who Magazine. Special Edition (20) (Tunbridge Wells, Kent: Panini Publishing). p. 3. ISSN 0957-9818. 
          30. -
          31. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Archived from the original on 10 February 2010. Retrieved 22 April 2010. 
          32. -
          33. ^ "Steven Moffat on the New Exec". BBC. Retrieved 21 July 2011. 
          34. -
          35. ^ "BBC – Doctor Who – Beth Willis On Leaving Doctor Who – News & Features". Bbc.co.uk. Retrieved 22 August 2012. 
          36. -
          37. ^ "Doctor Who executive Piers Wenger leaves BBC for Film4". BBC News. 26 May 2011. Retrieved 9 June 2011. 
          38. -
          39. ^ "Caroline Skinner steps down as Executive Producer of Doctor Who". Media Centre. BBC. 13 March 2013. Retrieved 14 March 2013. 
          40. -
          41. ^ BBC - Media Centre - Brian Minchin confirmed as new Executive Producer of Doctor Who
          42. -
          43. ^ "Peter Capaldi begins filming on Doctor Who". 7 January 2014. 
          44. -
          45. ^ a b c "New Series: All the Episode Titles and More". Doctor Who. 18 August 2014. 
          46. -
          47. ^ "Doctor Who | Press Resources". BBC America Press Room. BBC America. Retrieved 4 September 2014. 
          48. -
          49. ^ "Capaldi & Coleman Back For 2014 Christmas Special". Doctor Who TV. 2014-08-07. Retrieved 2014-08-13. 
          50. -
          51. ^ http://www.thegallifreytimes.co.uk/2014/10/doctor-who-filming-wraps-on-2014.html?m=1
          52. -
          53. ^ a b Greenwood, Carl (2014-03-14). "Doctor Who series 8 spoilers: What we know about Peter Capaldi's debut run as the Doctor, including new cast, rumours and all the latest news - Mirror Online". Mirror.co.uk. Retrieved 2014-08-10. 
          54. -
          55. ^ "2014′s Christmas Special Director". Doctor Who TV. 2014-08-10. Retrieved 2014-08-11. 
          56. -
          57. ^ "Search Out Science". Dominique Boies. Retrieved 4 January 2011. 
          58. -
          59. ^ "Programme Information – BBC Network TV Weeks 52/53 – BBC ONE" (Press release). BBC Press Office. Retrieved 3 December 2008. 
          60. -
          61. ^ "David Tennant makes surprise return to the TARDIS!". BBC. 22 May 2009. Retrieved 24 May 2009. 
          62. -
          63. ^ "County man stars as Doctor Who alien". Lincolnshire Echo. 22 May 2009. Retrieved 25 May 2009. 
          64. -
          65. ^ Will R – Online Host (4 November 2009). "Dreamland: Saturday, 21 November". "Doctor Who: Dreamland Animation Blog". BBC. Retrieved 25 May 2010. [dead link]
          66. -
          67. ^ "BBC announces one-off mini-episode of Doctor Who" (Press release). BBC Press Office. 24 August 2011. Retrieved 24 August 2011. 
          68. -
          69. ^ "Blue Peter | 24/05/2012". Radio Times. Retrieved 15 May 2012. 
          70. -
          71. ^ "Doctor Who is Back". Blog Post. BBC. Retrieved 24 May 2012. 
          72. -
          73. ^ "Twitter / saulmetzstein". 24 May 2012. Retrieved 24 May 2012. 
          74. -
          75. ^ "Doctor Who: The Complete Series Six Boxed Set confirmed for 21 November". Doctor Who News. Retrieved 22 August 2012. 
          76. -
          77. ^ Richard Senior, interviewee (2011). Doctor Who Confidential:The Nights' Tale (DVD and BluRay). 2 Entertain. Event occurs at 40 seconds. Documentary included on the Doctor Who: Complete Series 6 DVD/BD release. Richard Senior interviewed about directing the shorts and named as director in caption. 
          78. -
          79. ^ "Radio Times Listings: "MOVIETIME, Daleks – Invasion Earth – 2150 A.D."". Doctor Who Cuttings Archive. Roger Anderson. Archived from the original on 28 February 2009. Retrieved 10 June 2008. 
          80. -
          81. ^ Pixley, Andrew (10 November 2004). "Doctor Who on Radio – Part One: 1966–1993". Doctor Who Magazine (349): 26–27. 
          82. -
          83. ^ "BBC Radio 7 Programmes- Schedule, Saturday, 31 October 2009". Retrieved 6 October 2009. 
          84. -
          85. ^ a b "The Doctor Who News Page: The Fifth Doctor lands in the Seventh Dimension". Doctorwhonews.net. 14 May 2011. Retrieved 18 May 2011. 
          86. -
          87. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Stuff of Nightmares, part 1". BBC. 13 December 2011. Retrieved 22 August 2012. 
          88. -
          89. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Stuff of Nightmares, part 2". BBC. 14 December 2011. Retrieved 22 August 2012. 
          90. -
          91. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Dead Shoes, part 1". BBC. 15 December 2011. Retrieved 22 August 2012. 
          92. -
          93. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Dead Shoes, part 2". BBC. 16 December 2011. Retrieved 22 August 2012. 
          94. -
          95. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Circus of Doom, part 1". BBC. 17 December 2011. Retrieved 22 August 2012. 
          96. -
          97. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, The Circus of Doom, part 2". BBC. 20 December 2011. Retrieved 22 August 2012. 
          98. -
          99. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, A Sting in the Tale, part 1". BBC. 21 December 2011. Retrieved 22 August 2012. 
          100. -
          101. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, A Sting in the Tale, part 2". BBC. 22 December 2011. Retrieved 22 August 2012. 
          102. -
          103. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, Hive of Horror, part 1". BBC. 23 December 2011. Retrieved 22 August 2012. 
          104. -
          105. ^ "BBC – BBC Radio 4 Extra Programmes – Doctor Who, Hornets' Nest, Hive of Horror, part 2". BBC. 24 December 2011. Retrieved 22 August 2012. 
          106. -
          107. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 1". BBC. 1 January 1970. Retrieved 24 May 2012. 
          108. -
          109. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 2". BBC. 1 January 1970. Retrieved 24 May 2012. 
          110. -
          111. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 3". BBC. 1 January 1970. Retrieved 24 May 2012. 
          112. -
          113. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – Survival of the Fittest, Episode 4". BBC. 1 January 1970. Retrieved 24 May 2012. 
          114. -
          115. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – The Architect of History, Episode 1". BBC. 1 January 1970. Retrieved 24 May 2012. 
          116. -
          117. ^ "Radio 4 Extra Programmes – Doctor Who, Doctor Who – The Architect of History, Episode 2". BBC. 1 January 1970. Retrieved 24 May 2012. 
          118. -
          119. ^ a b c d "BBC Radio 4 Extra – Doctor Who – Episode guide". BBC. 29 March 2009. Retrieved 22 August 2012. 
          120. -
          121. ^ a b c d e f g "50th Anniversary Radio Programmes Line-Up". Doctor Who TV. 31 October 2013. Retrieved 1 November 2013. 
          122. -
          123. ^ "BBFC classifications for ',Scream of the Shalka',". Bbfc.co.uk. 20 September 2005. Retrieved 18 May 2011. 
          124. -
          125. ^ "Animation Plans for The Tenth Planet Episode 4". Doctor Who Magazine (Panini Comics) (458): 9. April 2013. 
          126. -
          127. ^ Doctor Who: The First Adventure at MobyGames
          128. -
          129. ^ Micro Fun With BBC TV's Doctor Who, Sci-fi-online.com
          130. -
          131. ^ Doctor Who and the Mines of Terror, Gamespot
          132. -
          133. ^ a b "Doctor Who: The Adventure Games". BBC. Archived from the original on 12 April 2010. Retrieved 3 August 2014. 
          134. -
          135. ^ "Gaming – News – 'Doctor Who: Adventure Games' to return – Digital Spy". Digital Spy. UK. 20 September 2010. Retrieved 18 May 2011. 
          136. -
          -
          -

          Sources

          -
          - -
          -

          External links

          - - - - - - - -

          - - - - - -
          -
          -
          -
          -
          -

          Navigation menu

          - -
          - -
          - - -
          -
          - - - -
          -
          - -
          - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html deleted file mode 100644 index 792783f78..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/doctor_who2.html +++ /dev/null @@ -1,2425 +0,0 @@ - - - - -Doctor Who - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          - - -
          -
          -
          Page move-protected
          -
          Listen to this article
          -
          -

          Doctor Who

          -
          -
          From Wikipedia, the free encyclopedia
          -
          -
          - Jump to: navigation, search -
          -
          This article is about the television series. For other uses, see Doctor Who (disambiguation).
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Doctor Who
          Doctor Who - Current Titlecard.png -
          Doctor Who title card since 2014
          -
          GenreScience fiction
          -Drama
          Created by - -
          Written byVarious
          Directed byVarious
          StarringVarious Doctors
          -(as of 2014, Peter Capaldi)
          -Various companions
          -(as of 2014, Jenna Coleman)
          Theme music composer -
          - -
          -
          Opening themeDoctor Who theme music
          Composer(s)Various composers
          -(since 2005, Murray Gold)
          Country of originUnited Kingdom
          No. of seasons26 (1963–89)
          -+ 1 TV film (1996)
          No. of series8 (2005–present)
          No. of episodes813 (97 missing) (list of episodes)
          Production
          Executive producer(s)Various
          -(as of 2014, Steven Moffat and Brian Minchin[1])
          Camera setupSingle/multiple-camera hybrid
          Running timeRegular episodes:
          -
          -
            -
          • 25 minutes (1963–84, 1986–89)
          • -
          • 45 minutes (1985, 2005–present)
          • -
          -
          -Specials:
          -Various: 50–90 minutes
          Release
          Original channel -
          - -
          -
          Picture format -
          - -
          -
          Audio format -
          - -
          -
          Original releaseClassic series:
          -23 November 1963 (1963-11-23) –
          -6 December 1989
          -Television film:
          -12 May 1996
          -Revived series:
          -26 March 2005 – present
          Chronology
          Related shows -
          - -
          -
          External links
          Doctor Who at the BBC
          -

          Doctor Who is a British science-fiction television programme produced by the BBC from 1963 to the present day. The programme depicts the adventures of the Doctor, a Time Lord— a space and time-travelling humanoid alien. He explores the universe in his TARDIS, a sentient time-travelling space ship. Its exterior appears as a blue British police box, which was a common sight in Britain in 1963 when the series first aired. Along with a succession of companions, the Doctor combats a variety of foes while working to save civilisations and help people in need.

          -

          The show is a significant part of British popular culture,[2][3] and elsewhere it has become a cult television favourite. The show has influenced generations of British television professionals, many of whom grew up watching the series.[4] The programme originally ran from 1963 to 1989. After an unsuccessful attempt to revive regular production in 1996 with a backdoor pilot in the form of a television film, the programme was relaunched in 2005 by Russell T Davies who was showrunner and head writer for the first five years of its revival, produced in-house by BBC Wales in Cardiff. The first series of the 21st century, featuring Christopher Eccleston in the title role, was produced by the BBC. Series two and three had some development money contributed by the Canadian Broadcasting Corporation (CBC), which was credited as a co-producer.[5] Doctor Who also spawned spin-offs in multiple media, including Torchwood (2006–11) and The Sarah Jane Adventures (2007–11), both created by Russell T Davies; K-9 (2009–10); and a single pilot episode of K-9 and Company (1981). There also have been many spoofs and cultural references of the character in other media.

          -

          Twelve actors have headlined the series as the Doctor. The transition from one actor to another, and the differing approach to the role that they bring, is written into the plot of the show as regeneration into a new incarnation, a life process of Time Lords through which the character of the Doctor takes on a new body and, to some extent, new personality, which occurs after sustaining injury which would be fatal to most other species. While each actor's portrayal differs, they are all intended to be aspects of the same character, and form part of the same storyline. The time-travelling nature of the plot means that on occasion, story arcs have involved different Doctors meeting each other. Peter Capaldi took on the role after Matt Smith's exit in the 2013 Christmas special, "The Time of the Doctor".[6]

          -

          - -

          -

          Premise[edit]

          -

          Doctor Who follows the adventures of the primary character, a rogue Time Lord from the planet Gallifrey who simply goes by the name "The Doctor". He fled from Gallifrey in a stolen Mark I Type 40 TARDIS time machine - "Time and Relative Dimension in Space" - which allows him to travel across time and space. Due to a malfunction of the TARDIS' "chameleon circuit", which normally allows the TARDIS to take on the appearance of local objects to disguise it from others, the Doctor's TARDIS remains fixed as a blue British Police box. The Doctor rarely travels alone, and often brings one or more companions to share these adventures with, typically humans as he has found a fascination with the planet Earth. He often finds events that pique his curiosity while trying to prevent evil forces from harming innocent people or changing history, using only his ingenuity and minimal resources, such as his versatile sonic screwdriver. As a Time Lord, the Doctor has the ability to regenerate when his body is mortally damaged, taking on a new appearance and personality. The Doctor has gained numerous reoccurring enemies during his travels, including the Daleks, the Cybermen, and another renegade Time Lord, the Master.

          -

          History[edit]

          -
          Main article: History of Doctor Who
          -

          Doctor Who first appeared on BBC TV at 17:16:20 GMT, eighty seconds after the scheduled programme time, 5:15 pm, on Saturday, 23 November 1963.[7][8] It was to be a regular weekly programme, each episode 25 minutes of transmission length. Discussions and plans for the programme had been in progress for a year. The head of drama, Canadian Sydney Newman, was mainly responsible for developing the programme, with the first format document for the series being written by Newman along with the head of the script department (later head of serials) Donald Wilson and staff writer C. E. Webber. Writer Anthony Coburn, story editor David Whitaker and initial producer Verity Lambert also heavily contributed to the development of the series.[9][note 1] The programme was originally intended to appeal to a family audience,[10] as an educational programme using time travel as a means to explore scientific ideas and famous moments in history. On 31 July 1963 Whitaker commissioned Terry Nation to write a story under the title The Mutants. As originally written, the Daleks and Thals were the victims of an alien neutron bomb attack but Nation later dropped the aliens and made the Daleks the aggressors. When the script was presented to Newman and Wilson it was immediately rejected as the programme was not permitted to contain any "bug-eyed monsters". The first serial had been completed and the BBC believed it was crucial that the next one be a success, however, The Mutants was the only script ready to go so the show had little choice but to use it. According to producer Verity Lambert; "We didn't have a lot of choice — we only had the Dalek serial to go ... We had a bit of a crisis of confidence because Donald [Wilson] was so adamant that we shouldn't make it. Had we had anything else ready we would have made that." Nation's script became the second Doctor Who serial – The Daleks (a.k.a. The Mutants). The serial introduced the eponymous aliens that would become the series' most popular monsters, and was responsible for the BBC's first merchandising boom.[11]

          -

          The BBC drama department's serials division produced the programme for 26 seasons, broadcast on BBC 1. Falling viewing numbers, a decline in the public perception of the show and a less-prominent transmission slot saw production suspended in 1989 by Jonathan Powell, controller of BBC 1.[12] Although (as series co-star Sophie Aldred reported in the documentary Doctor Who: More Than 30 Years in the TARDIS) it was effectively, if not formally, cancelled with the decision not to commission a planned 27th series of the show for transmission in 1990, the BBC repeatedly affirmed that the series would return.[13]

          -

          While in-house production had ceased, the BBC hoped to find an independent production company to relaunch the show. Philip Segal, a British expatriate who worked for Columbia Pictures' television arm in the United States, had approached the BBC about such a venture as early as July 1989, while the 26th series was still in production.[13] Segal's negotiations eventually led to a Doctor Who television film, broadcast on the Fox Network in 1996 as a co-production between Fox, Universal Pictures, the BBC and BBC Worldwide. Although the film was successful in the UK (with 9.1 million viewers), it was less so in the United States and did not lead to a series.[13]

          -

          Licensed media such as novels and audio plays provided new stories, but as a television programme Doctor Who remained dormant until 2003. In September of that year,[14] BBC Television announced the in-house production of a new series after several years of attempts by BBC Worldwide to find backing for a feature film version. The executive producers of the new incarnation of the series were writer Russell T Davies and BBC Cymru Wales head of drama Julie Gardner.

          -

          Doctor Who finally returned with the episode "Rose" on BBC One on 26 March 2005.[15] There have since been eight further series in 2006–2008 and 2010–2014, and Christmas Day specials every year since 2005. No full series was filmed in 2009,[16] although four additional specials starring David Tennant were made. In 2010, Steven Moffat replaced Davies as head writer and executive producer.[17]

          -

          The 2005 version of Doctor Who is a direct plot continuation of the original 1963–1989 series,[note 2] as is the 1996 telefilm. This differs from other series relaunches that have either been reimaginings or reboots (for example, Battlestar Galactica and Bionic Woman) or series taking place in the same universe as the original but in a different period and with different characters (for example, Star Trek: The Next Generation and spin-offs).[18]

          -

          The programme has been sold to many other countries worldwide (see Viewership).

          -

          Public consciousness[edit]

          -

          It has been suggested that the transmission of the first episode was delayed by ten minutes due to extended news coverage of the assassination of US President John F. Kennedy the previous day; whereas in fact, it went out after a delay of eighty seconds.[19] Because it was believed that the coverage of the events of the assassination as well as a series of power blackouts across the country may have caused too many viewers to miss this introduction to a new series, the BBC broadcast it again on 30 November 1963, just before the broadcast of episode two.[20][21]

          -

          The programme soon became a national institution in the United Kingdom, with a large following among the general viewing audience.[22][23] Many renowned actors asked for, or were offered and accepted, guest-starring roles in various stories.[24][25][26][27]

          -

          With popularity came controversy over the show's suitability for children. Morality campaigner Mary Whitehouse repeatedly complained to the BBC in the 1970s over what she saw as the show's frightening and gory content.[28] John Nathan-Turner, who produced the series during the 1980s, was heard to say that he looked forward to Whitehouse's comments, as the show's ratings would increase soon after she had made them.[29]

          -

          The phrase "Hiding behind (or 'watching from behind') the sofa" became coined and entered British pop culture, signifying in humour the stereotypical early-series behaviour of children who wanted to avoid seeing frightening parts of a television programme while remaining in the room to watch the remainder of it.[30] The phrase retains this association with Doctor Who, to the point that in 1991 the Museum of the Moving Image in London named their exhibition celebrating the programme "Behind the Sofa". The electronic theme music too was perceived as eerie, novel, and frightening, at the time. A 2012 article placed this childhood juxtaposition of fear and thrill "at the center of many people's relationship with the show",[31] and a 2011 online vote at Digital Spy deemed the series the "scariest TV show of all time".[32]

          -

          During Jon Pertwee's second series as the Doctor, in the serial Terror of the Autons (1971), images of murderous plastic dolls, daffodils killing unsuspecting victims, and blank-featured policemen marked the apex of the show's ability to frighten children.[33] Other notable moments in that decade include a disembodied brain falling to the floor in The Brain of Morbius[34] and the Doctor apparently being drowned by Chancellor Goth in The Deadly Assassin (both 1976).[35]

          -
          -
          -
          -
          -The fibreglass TARDIS prop used between 1980 and 1989.
          -
          -
          -

          A BBC audience research survey conducted in 1972 found that, by their own definition of violence ("any act[s] which may cause physical and/or psychological injury, hurt or death to persons, animals or property, whether intentional or accidental") Doctor Who was the most violent of the drama programmes the corporation produced at the time.[36] The same report found that 3% of the surveyed audience regarded the show as "very unsuitable" for family viewing.[37] Responding to the findings of the survey in The Times newspaper, journalist Philip Howard maintained that, "to compare the violence of Dr Who, sired by a horse-laugh out of a nightmare, with the more realistic violence of other television series, where actors who look like human beings bleed paint that looks like blood, is like comparing Monopoly with the property market in London: both are fantasies, but one is meant to be taken seriously."[36]

          -

          The image of the TARDIS has become firmly linked to the show in the public's consciousness; BBC scriptwriter Anthony Coburn, who lived in the resort of Herne Bay, Kent, was one of the people who conceived the idea of a police box as a time machine.[38] In 1996, the BBC applied for a trade mark to use the TARDIS' blue police box design in merchandising associated with Doctor Who.[39] In 1998, the Metropolitan Police Authority filed an objection to the trade mark claim; but in 2002, the Patent Office ruled in favour of the BBC.[40]

          -

          The programme's broad appeal attracts audiences of children and families as well as science fiction fans.[41]

          -

          The 21st century revival of the programme has become the centrepiece of BBC One's Saturday schedule, and has, "defined the channel".[42] Since its return, Doctor Who has consistently received high ratings, both in number of viewers and as measured by the Appreciation Index.[43] In 2007, Caitlin Moran, television reviewer for The Times, wrote that Doctor Who is, "quintessential to being British".[3] Director Steven Spielberg has commented that, "the world would be a poorer place without Doctor Who".[44]

          -

          On 4 August 2013, a live programme titled Doctor Who Live: The Next Doctor was broadcast on BBC One, during which the actor who was going to play the Twelfth Doctor was revealed.[45] The show was simultaneously broadcast in the US and Australia.[46]

          -

          Episodes[edit]

          -
          Further information: List of Doctor Who serials
          -

          Doctor Who originally ran for 26 seasons on BBC One, from 23 November 1963 until 6 December 1989. During the original run, each weekly episode formed part of a story (or "serial") — usually of four to six parts in earlier years and three to four in later years. Notable exceptions were: The Daleks' Master Plan, which aired in 12 episodes (plus an earlier one-episode teaser,[47] "Mission to the Unknown", featuring none of the regular cast[48]); almost an entire season of seven-episode serials (season 7); the 10-episode serial The War Games;[49] and The Trial of a Time Lord, which ran for 14 episodes (albeit divided into three production codes and four narrative segments) during season 23.[50] Occasionally serials were loosely connected by a storyline, such as season 8 being devoted to the Doctor battling a rogue Time Lord called The Master,[51][52] season 16's quest for The Key to Time,[53] season 18's journey through E-Space and the theme of entropy,[54] and season 20's Black Guardian Trilogy.[55]

          -

          The programme was intended to be educational and for family viewing on the early Saturday evening schedule.[56] Initially, it alternated stories set in the past, which were intended to teach younger audience members about history, with stories set either in the future or in outer space to teach them about science.[56] This was also reflected in the Doctor's original companions, one of whom was a science teacher and another a history teacher.[56]

          -

          However, science fiction stories came to dominate the programme and the "historicals", which were not popular with the production team,[56] were dropped after The Highlanders (1967). While the show continued to use historical settings, they were generally used as a backdrop for science fiction tales, with one exception: Black Orchid set in 1920s England.[57]

          -

          The early stories were serial-like in nature, with the narrative of one story flowing into the next, and each episode having its own title, although produced as distinct stories with their own production codes.[58] Following The Gunfighters (1966), however, each serial was given its own title, with the individual parts simply being assigned episode numbers.[58]

          -

          Of the programme's many writers, Robert Holmes was the most prolific,[59] while Douglas Adams became the most well-known outside Doctor Who itself, due to the popularity of his Hitchhiker's Guide to the Galaxy.[60][61]

          -

          The serial format changed for the 2005 revival, with each series usually consisting of 13 45-minute, self-contained episodes (60 minutes with adverts, on overseas commercial channels), and an extended episode broadcast on Christmas Day. Each series includes several standalone and multi-part stories, linked with a loose story arc that resolves in the series finale. As in the early "classic" era, each episode, whether standalone or part of a larger story, has its own title. Occasionally, regular-series episodes will exceed the 45-minute run time; notably, the episodes "Journey's End" from 2008 and "The Eleventh Hour" from 2010 exceeded an hour in length.

          -

          813 Doctor Who instalments have been televised since 1963, ranging between 25-minute episodes (the most common format), 45-minute episodes (for Resurrection of the Daleks in the 1984 series, a single season in 1985, and the revival), two feature-length productions (1983's The Five Doctors and the 1996 television film), eight Christmas specials (most of 60 minutes' duration, one of 72 minutes), and four additional specials ranging from 60 to 75 minutes in 2009, 2010 and 2013. Four mini-episodes, running about eight minutes each, were also produced for the 1993, 2005 and 2007 Children in Need charity appeals, while another mini-episode was produced in 2008 for a Doctor Who-themed edition of The Proms. The 1993 2-part story, entitled Dimensions in Time, was made in collaboration with the cast of the BBC soap-opera EastEnders and was filmed partly on the EastEnders set. A two-part mini-episode was also produced for the 2011 edition of Comic Relief. Starting with the 2009 special "Planet of the Dead", the series was filmed in 1080i for HDTV,[62] and broadcast simultaneously on BBC One and BBC HD.

          -

          To celebrate the 50th anniversary of the show, a special 3D episode, "The Day of the Doctor", was broadcast in 2013.[63] In March 2013, it was announced that Tennant and Piper would be returning,[64] and that the episode would have a limited cinematic release worldwide.[65]

          -

          In April 2015, Steven Moffat confirmed that Doctor Who would run for at least another five years, extending the show until 2020.[66]

          -

          Missing episodes[edit]

          - -

          Between about 1964 and 1973, large amounts of older material stored in the BBC's various video tape and film libraries were either destroyed,[note 3] wiped, or suffered from poor storage which led to severe deterioration from broadcast quality. This included many old episodes of Doctor Who, mostly stories featuring the first two Doctors: William Hartnell and Patrick Troughton. In all, 97 of 253 episodes produced during the first six years of the programme are not held in the BBC's archives (most notably seasons 3, 4, & 5, from which 79 episodes are missing). In 1972, almost all episodes then made were known to exist at the BBC,[67] while by 1978 the practice of wiping tapes and destroying "spare" film copies had been brought to a stop.[68]

          -

          No 1960s episodes exist on their original videotapes (all surviving prints being film transfers), though some were transferred to film for editing before transmission, and exist in their broadcast form.[69]

          -

          Some episodes have been returned to the BBC from the archives of other countries who bought prints for broadcast, or by private individuals who acquired them by various means. Early colour videotape recordings made off-air by fans have also been retrieved, as well as excerpts filmed from the television screen onto 8 mm cine film and clips that were shown on other programmes. Audio versions of all of the lost episodes exist from home viewers who made tape recordings of the show. Short clips from every story with the exception of Marco Polo, "Mission to the Unknown" and The Massacre of St Bartholomew's Eve also exist.

          -

          In addition to these, there are off-screen photographs made by photographer John Cura, who was hired by various production personnel to document many of their programmes during the 1950s and 1960s, including Doctor Who. These have been used in fan reconstructions of the serials. These amateur reconstructions have been tolerated by the BBC, provided they are not sold for profit and are distributed as low-quality VHS copies.[70]

          -

          One of the most sought-after lost episodes is part four of the last William Hartnell serial, The Tenth Planet (1966), which ends with the First Doctor transforming into the Second. The only portion of this in existence, barring a few poor-quality silent 8 mm clips, is the few seconds of the regeneration scene, as it was shown on the children's magazine show Blue Peter.[71] With the approval of the BBC, efforts are now under way to restore as many of the episodes as possible from the extant material.

          -

          "Official" reconstructions have also been released by the BBC on VHS, on MP3 CD-ROM, and as special features on DVD. The BBC, in conjunction with animation studio Cosgrove Hall, reconstructed the missing episodes 1 and 4 of The Invasion (1968), using remastered audio tracks and the comprehensive stage notes for the original filming, for the serial's DVD release in November 2006. The missing episodes of The Reign of Terror were animated by animation company Theta-Sigma, in collaboration with Big Finish, and became available for purchase in May 2013 through Amazon.com.[72] Subsequent animations made in 2013 include The Tenth Planet, The Ice Warriors and The Moonbase.

          -

          In April 2006, Blue Peter launched a challenge to find missing Doctor Who episodes with the promise of a full-scale Dalek model as a reward.[73]

          -

          In December 2011, it was announced that part 3 of Galaxy 4 and part 2 of The Underwater Menace had been returned to the BBC by a fan who had purchased them in the mid-1980s without realising that the BBC did not hold copies of them.[74]

          -

          On 10 October 2013, the BBC announced that films of eleven episodes, including nine missing episodes, had been found in a Nigerian television relay station in Jos.[75] Six of the eleven films discovered were the six-part serial The Enemy of the World, from which all but the third episode had been missing.[76] The remaining films were from another six-part serial, The Web of Fear, and included the previously missing episodes 2, 4, 5, and 6. Episode 3 of The Web of Fear is still missing.[77]

          -

          Characters[edit]

          - -

          The Doctor[edit]

          - -
          -
          -
          -
          -
          The Doctor portrayed by series leads in chronological order. Left to right from top row; William Hartnell, Patrick Troughton, Jon Pertwee, Tom Baker, Peter Davison, Colin Baker, Sylvester McCoy, Paul McGann, Christopher Eccleston, David Tennant, Matt Smith and Peter Capaldi.
          -
          -
          -
          -

          The character of the Doctor was initially shrouded in mystery. All that was known about him in the programme's early days was that he was an eccentric alien traveller of great intelligence who battled injustice while exploring time and space in an unreliable time machine, the "TARDIS" (an acronym for time and relative dimension(s) in space), which notably appears much larger on the inside than on the outside (a quality referred to as "dimensional transcendentality").[note 4][78]

          -

          The initially irascible and slightly sinister Doctor quickly mellowed into a more compassionate figure. It was eventually revealed that he had been on the run from his own people, the Time Lords of the planet Gallifrey.

          -

          Changes of appearance[edit]

          -

          Producers introduced the concept of regeneration to permit the recasting of the main character. This was first prompted by original star William Hartnell's poor health. The actual term "regeneration" was not initially conceived of until the Doctor's third on-screen regeneration however; Hartnell's Doctor had merely described undergoing a "renewal," and the Second Doctor underwent a "change of appearance".[citation needed] The device has allowed for the recasting of the actor various times in the show's history, as well as the depiction of alternative Doctors either from the Doctor's relative past or future.[citation needed]

          -

          The serials The Deadly Assassin and Mawdryn Undead and the 1996 TV film would later establish that a Time Lord can only regenerate 12 times, for a total of 13 incarnations. This line became stuck in the public consciousness despite not often being repeated, and was recognised by producers of the show as a plot obstacle for when the show finally had to regenerate the Doctor a thirteenth time.[79][80] The episode "The Time of the Doctor" depicted the Doctor acquiring a new cycle of regenerations, starting from the Twelfth Doctor, due to the Eleventh Doctor being the product of the Doctor's twelfth regeneration from his original set.[citation needed][81][82]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Series leadIncarnationTenure
          William HartnellFirst Doctor1963–66[note 5]
          Patrick TroughtonSecond Doctor1966–69[note 5]
          Jon PertweeThird Doctor1970–74[note 5]
          Tom BakerFourth Doctor1974–81[note 5]
          Peter DavisonFifth Doctor1982–84[note 5]
          Colin BakerSixth Doctor1984–86
          Sylvester McCoySeventh Doctor1987–89[83][84][85]
          Paul McGannEighth Doctor1996[note 5]
          Christopher EcclestonNinth Doctor2005
          David TennantTenth Doctor2005–10[note 5]
          Matt SmithEleventh Doctor2010–13
          Peter CapaldiTwelfth Doctor2014–
          -

          In addition to those actors who have headlined the series, others have portrayed versions of the Doctor in guest roles. Notably, in 2013, John Hurt guest-starred as a hitherto unknown incarnation of the Doctor known as the War Doctor in the run-up to the show's 50th anniversary special "The Day of the Doctor".[86] He is shown in mini-episode "The Night of the Doctor" to have been retroactively inserted into the show's fictional chronology between McGann and Eccleston's Doctors, although his introduction was written so as not to disturb the established numerical naming of the Doctors.[87] Another example is from the 1986 serial The Trial of a Time Lord, where Michael Jayston portrayed the Valeyard, who is described as an amalgamation of the darker sides of the Doctor's nature, somewhere between his twelfth and final incarnation.

          -

          On rare occasions, other actors have stood in for the lead. In The Five Doctors, Richard Hurndall played the First Doctor due to William Hartnell's death in 1975. In Time and the Rani, Sylvester McCoy briefly played the Sixth Doctor during the regeneration sequence, carrying on as the Seventh. For more information, see the list of actors who have played the Doctor. In other media, the Doctor has been played by various other actors, including Peter Cushing in two films.

          -

          The casting of a new Doctor has often inspired debate and speculation: in particular, the desirability or possibility of a new Doctor being played by a woman.[88][89] In October 2010, the Sunday Telegraph revealed that the series' co-creator, Sydney Newman, had urged the BBC to recast the role of the Doctor as a female "Time Lady" during the ratings crisis of the late 1980s.[90]

          -

          Meetings of different incarnations[edit]

          -

          There have been instances of actors returning at later dates to reprise the role of their specific Doctor. In 1973's The Three Doctors, William Hartnell and Patrick Troughton returned alongside Jon Pertwee. For 1983's The Five Doctors, Troughton and Pertwee returned to star with Peter Davison, and Tom Baker appeared in previously unseen footage from the uncompleted Shada episode. For this episode, Richard Hurndall replaced William Hartnell. Patrick Troughton again returned in 1985's The Two Doctors with Colin Baker. In 2007, Peter Davison returned in the Children in Need short "Time Crash" alongside David Tennant, and most recently in 2013's 50th anniversary special episode, "The Day of the Doctor", David Tennant's Tenth Doctor appeared alongside Matt Smith as the Eleventh Doctor and John Hurt as the War Doctor, as well as brief footage from all of the previous actors.[91] In addition, the Doctor has occasionally encountered himself in the form of his own incarnation, from the near future or past. The First Doctor encounters himself in the story The Space Museum (albeit frozen and as an exhibit), the Third Doctor encounters and interacts with himself in the story Day of the Daleks, the Fourth Doctor encounters and interacts with the future incarnation of himself (the 'Watcher') in the story Logopolis, the Ninth Doctor observes a former version of his current incarnation in "Father's Day", and the Eleventh Doctor briefly comes face to face with himself in "The Big Bang". In "The Almost People" the Doctor comes face-to-face with himself although it is found out that this incarnation is in fact just a flesh replica. In "The Name of the Doctor", the Eleventh Doctor meets an unknown incarnation of himself, whom he refers to as "his secret" and who is subsequently revealed to be the War Doctor.[86]

          -

          Additionally, multiple Doctors have returned in new adventures together in audio dramas based on the series. Peter Davison, Colin Baker and Sylvester McCoy appeared together in the 1999 audio adventure The Sirens of Time. To celebrate the 40th anniversary in 2003, an audio drama titled Zagreus featuring Paul McGann, Colin Baker, Sylvester McCoy and Peter Davison was released with additional archive recordings of Jon Pertwee.[92] Again in 2003, Colin Baker and Sylvester McCoy appeared together in the audio adventure Project: Lazarus.[93] In 2010, Peter Davison, Colin Baker, Sylvester McCoy and Paul McGann came together again to star in the audio drama The Four Doctors.

          -

          Revelations about the Doctor[edit]

          - -

          Throughout the programme's long history, there have been revelations about the Doctor that have raised additional questions. In The Brain of Morbius (1976), it was hinted that the First Doctor may not have been the first incarnation (although the other faces depicted may have been incarnations of the Time Lord Morbius). In subsequent stories the First Doctor was depicted as the earliest incarnation of the Doctor. In Mawdryn Undead (1983), the Fifth Doctor explicitly confirmed that he was then currently in his fifth incarnation. Later that same year, during 1983's 20th Anniversary special The Five Doctors, the First Doctor enquires as to the Fifth Doctor's regeneration; when the Fifth Doctor confirms "Fourth", the First Doctor excitedly replies "Goodness me. So there are five of me now." In 2010, the Eleventh Doctor similarly calls himself "the Eleventh" in "The Lodger". In the 2013 episode "The Time of the Doctor," the Eleventh Doctor clarified he was the product of the twelfth regeneration, due to a previous incarnation which he chose not to count and one other aborted regeneration. The name Eleventh is still used for this incarnation; the same episode depicts the prophesied "Fall of the Eleventh" which had been trailed throughout the series.

          -

          During the Seventh Doctor's era, it was hinted that the Doctor was more than just an ordinary Time Lord. In the 1996 television film, the Eighth Doctor describes himself as being "half human".[94] The BBC's FAQ for the programme notes that "purists tend to disregard this",[95] instead focusing on his Gallifreyan heritage.

          -

          The programme's first serial, An Unearthly Child, shows that the Doctor has a granddaughter, Susan Foreman. In the 1967 serial, Tomb of the Cybermen, when Victoria Waterfield doubts the Doctor can remember his family because of, "being so ancient", the Doctor says that he can when he really wants to—"The rest of the time they sleep in my mind". The 2005 series reveals that the Ninth Doctor thought he was the last surviving Time Lord, and that his home planet had been destroyed; in "The Empty Child" (2005), Dr. Constantine states that, "Before the war even began, I was a father and a grandfather. Now I am neither." The Doctor remarks in response, "Yeah, I know the feeling." In "Smith and Jones" (2007), when asked if he had a brother, he replied, "No, not any more." In both "Fear Her" (2006) and "The Doctor's Daughter" (2008), he states that he had, in the past, been a father.

          -

          In "The Wedding of River Song" (2011), it is implied that the Doctor's true name is a secret that must never be revealed; this is explored further in "The Name of the Doctor" (2013), when River Song speaking his name allows the Great Intelligence to enter his tomb, and in "The Time of the Doctor" (2013) where speaking his true name becomes the signal by which the Time Lords would know they can safely return to the universe, an event opposed by many species.

          -

          Companions[edit]

          - -

          The companion figure - generally a human - has been a constant feature in Doctor Who since the programme's inception in 1963. One of the roles of the companion is to remind the Doctor of his "moral duty".[96] The Doctor's first companions seen on screen were his granddaughter Susan Foreman (Carole Ann Ford) and her teachers Barbara Wright (Jacqueline Hill) and Ian Chesterton (William Russell). These characters were intended to act as audience surrogates, through which the audience would discover information about the Doctor who was to act as a mysterious father figure.[96] The only story from the original series in which the Doctor travels alone is The Deadly Assassin. Notable companions from the earlier series included Romana (Mary Tamm and Lalla Ward), a Time Lady; Sarah Jane Smith (Elisabeth Sladen); and Jo Grant (Katy Manning). Dramatically, these characters provide a figure with whom the audience can identify, and serve to further the story by requesting exposition from the Doctor and manufacturing peril for the Doctor to resolve. The Doctor regularly gains new companions and loses old ones; sometimes they return home or find new causes — or loves — on worlds they have visited. Some have died during the course of the series. Companions are usually human, or humanoid aliens.

          -

          Since the 2005 revival, The Doctor generally travels with a primary female companion, who occupies a larger narrative role. Steven Moffat described the companion as the main character of the show, as the story begins anew with each companion and she undergoes more change than the Doctor.[97][98] The primary companions of the Ninth and Tenth Doctors were Rose Tyler (Billie Piper), Martha Jones (Freema Agyeman), and Donna Noble (Catherine Tate) with Mickey Smith (Noel Clarke), Jackie Tyler (Camille Coduri) and Jack Harkness (John Barrowman) recurring as secondary companion figures.[99] The Eleventh Doctor became the first to travel with a married couple (Amy Pond (Karen Gillan) and Rory Williams (Arthur Darvill)) whilst out-of-sync meetings with River Song (Alex Kingston) and Clara Oswald (Jenna Coleman) provided ongoing story arcs.

          -

          Some companions have gone on to re-appear either in the main series, or in spin-offs. Sarah Jane Smith became the central character in The Sarah Jane Adventures (2007-2011) following a return to Doctor Who in 2006. Guest stars in the series included former companions Jo Grant, K-9, and Brigadier Lethbridge-Stewart (Nicholas Courtney). The character of Jack Harkness also served to launch a spin-off, Torchwood, (2006-2011) in which Martha Jones also appeared.

          -

          Adversaries[edit]

          - -

          When Sydney Newman commissioned the series, he specifically did not want to perpetuate the cliché of the "bug-eyed monster" of science fiction.[100] However, monsters were popular with audiences and so became a staple of Doctor Who almost from the beginning.

          -

          With the show's 2005 revival, executive producer Russell T Davies stated[101] his intention to reintroduce classic icons of Doctor Who one step at a time: the Autons with the Nestene Consciousness and Daleks in series 1, Cybermen in series 2, the Macra and the Master in series 3, the Sontarans and Davros in series 4, and the Time Lords (Rassilon) in the 2009–10 Specials. Davies' successor, Steven Moffat, has continued the trend by reviving the Silurians in series 5, Cybermats in series 6, the Great Intelligence and the Ice Warriors in Series 7, and Zygons in the 50th Anniversary Special.[102] Since its 2005 return, the series has also introduced new recurring aliens: Slitheen (Raxacoricofallapatorian), Ood, Judoon, Weeping Angels and the Silence.

          -

          Besides infrequent appearances by the Ice Warriors, Ogrons, the Rani, and Black Guardian, three adversaries have become particularly iconic: the Daleks, the Cybermen, and the Master.

          -

          Daleks[edit]

          -
          Main article: Dalek
          -

          The Dalek race, which first appeared in the show's second serial in 1963,[103] are Doctor Who‍ '​s oldest villains. The Daleks were Kaleds from the planet Skaro, mutated by the scientist Davros and housed in tank-like mechanical armour shells for mobility. The actual creatures resemble octopuses with large, pronounced brains. Their armour shells contain a single eye-stalk to allow them vision, a sink-plunger-like device that serves the purpose of a hand, and a directed-energy weapon. Their main weakness is their eyestalk; most attacks on them, including those from guns and baseball bats, will blind them, making them go mad. Their chief role in the plot of the series, as they frequently remark in their instantly recognisable metallic voices, is to "exterminate" all non-Dalek beings, even attacking the Time Lords in the Time War, which was not shown until the 50th Anniversary celebrating the show, where some snippets of the Time War are shown. The Daleks' most recent appearance was in the 2014 episode "Into the Dalek". They continue to be a recurring 'monster' within the Doctor Who franchise. Davros himself has also been a recurring figure since his debut in Genesis of the Daleks, although played by several different actors.

          -

          The Daleks were created by writer Terry Nation (who intended them to be an allegory of the Nazis)[104] and BBC designer Raymond Cusick.[105] The Daleks' début in the programme's second serial, The Daleks (1963–64), made both the Daleks and Doctor Who very popular. A Dalek appeared on a postage stamp celebrating British popular culture in 1999, photographed by Lord Snowdon. In the new series, Daleks come in a range of colours; the colour of a Dalek denotes its role within the species.[citation needed]

          -

          In the 2012 episode "Asylum of the Daleks", every generation of the Dalek species made an appearance.[106]

          -

          Cybermen[edit]

          -
          Main article: Cyberman
          -

          Cybermen were originally a wholly organic species of humanoids originating on Earth's twin planet Mondas that began to implant more and more artificial parts into their bodies. This led to the race becoming coldly logical and calculating cyborgs, with emotions usually only shown when naked aggression was called for. With the demise of Mondas, they acquired Telos as their new home planet. They continue to be a recurring 'monster' within the Doctor Who franchise.

          -

          The 2006 series introduced a totally new variation of Cybermen. These Cybus Cybermen were created in a parallel universe by the mad inventor John Lumic; he was attempting to preserve the life of a human by transplanting their brains into powerful metal bodies, sending them orders using a mobile phone network and inhibiting their emotions with an electronic chip.

          -

          The Master[edit]

          -
          Main article: Master (Doctor Who)
          -

          The Master is the Doctor's archenemy, a renegade Time Lord who desires to rule the universe. Conceived as "Professor Moriarty to the Doctor's Sherlock Holmes",[107] the character first appeared in 1971. As with the Doctor, the role has been portrayed by several actors, since the Master is a Time Lord as well and able to regenerate; the first of these actors was Roger Delgado, who continued in the role until his death in 1973. The Master was briefly played by Peter Pratt and Geoffrey Beevers until Anthony Ainley took over and continued to play the character until Doctor Who's hiatus in 1989. The Master returned in the 1996 television movie of Doctor Who, and was played by American actor Eric Roberts.

          -

          Following the series revival in 2005, Derek Jacobi provided the character's re-introduction in the 2007 episode "Utopia". During that story the role was then assumed by John Simm who returned to the role multiple times through the Tenth Doctor's tenure.[108] As of the 2014 episode "Dark Water," it was revealed that the Master had become a female incarnation or "Time Lady," going by the name of "Missy" (short for Mistress, the feminine equivalent of "Master"). This incarnation is played by Michelle Gomez.

          -

          Music[edit]

          - -

          Theme music[edit]

          - - - - - - - - - -
          -
          -
          -
          -
          -
          - -
          -
          -
          -
          An excerpt from the original (1963) classic theme music to Doctor Who
          -
          -
          Problems playing this file? See media help.
          -

          The Doctor Who theme music was one of the first electronic music signature tunes for television, and after five decades remains one of the most easily recognised. It has been often called both memorable and frightening, priming the viewer for what was to follow. During the 1970s, the Radio Times, the BBC's own listings magazine, announced that a child's mother said the theme music terrified her son. The Radio Times was apologetic, but the theme music remained.[citation needed]

          -

          The original theme was composed by Ron Grainer and realised by Delia Derbyshire of the BBC Radiophonic Workshop, with assistance from Dick Mills. The various parts were built up using musique concrète techniques, by creating tape loops of an individually struck piano string and individual test oscillators and filters. The Derbyshire arrangement served, with minor edits, as the theme tune up to the end of season 17 (1979–80). It is regarded as a significant and innovative piece of electronic music, recorded well before the availability of commercial synthesisers or multitrack mixers. Each note was individually created by cutting, splicing, speeding up and slowing down segments of analogue tape containing recordings of a single plucked string, white noise, and the simple harmonic waveforms of test-tone oscillators, intended for calibrating equipment and rooms, not creating music. New techniques were invented to allow mixing of the music, as this was before the era of multitrack tape machines. On hearing the finished result, Grainer asked, "Did I write that?"[citation needed]

          -

          A different arrangement was recorded by Peter Howell for season 18 (1980), which was in turn replaced by Dominic Glynn's arrangement for the season-long serial The Trial of a Time Lord in season 23 (1986). Keff McCulloch provided the new arrangement for the Seventh Doctor's era which lasted from season 24 (1987) until the series' suspension in 1989. American composer John Debney created a new arrangement of Ron Grainer's original theme for Doctor Who in 1996. For the return of the series in 2005, Murray Gold provided a new arrangement which featured samples from the 1963 original with further elements added; in the 2005 Christmas episode "The Christmas Invasion", Gold introduced a modified closing credits arrangement that was used up until the conclusion of the 2007 series.[citation needed]

          -

          A new arrangement of the theme, once again by Gold, was introduced in the 2007 Christmas special episode, "Voyage of the Damned"; Gold returned as composer for the 2010 series.[109] He was responsible for a new version of the theme which was reported to have had a hostile reception from some viewers.[110] In 2011, the theme tune charted at number 228 of radio station Classic FM's Hall of Fame, a survey of classical music tastes. A revised version of Gold's 2010 arrangement had its debut over the opening titles of the 2012 Christmas special "The Snowmen", and a further revision of the arrangement was made for the 50th Anniversary special "The Day of the Doctor" in November 2013.[citation needed]

          -

          Versions of the "Doctor Who Theme" have also been released as pop music over the years. In the early 1970s, Jon Pertwee, who had played the Third Doctor, recorded a version of the Doctor Who theme with spoken lyrics, titled, "Who Is the Doctor".[note 6] In 1978 a disco version of the theme was released in the UK, Denmark and Australia by the group Mankind, which reached number 24 in the UK charts. In 1988 the band The Justified Ancients of Mu Mu (later known as The KLF) released the single "Doctorin' the Tardis" under the name The Timelords, which reached No. 1 in the UK and No. 2 in Australia; this version incorporated several other songs, including "Rock and Roll Part 2" by Gary Glitter (who recorded vocals for some of the CD-single remix versions of "Doctorin' the Tardis").[111] Others who have covered or reinterpreted the theme include Orbital,[111] Pink Floyd,[111] the Australian string ensemble Fourplay, New Zealand punk band Blam Blam Blam, The Pogues, Thin Lizzy, Dub Syndicate, and the comedians Bill Bailey and Mitch Benn. Both the theme and obsessive fans were satirised on The Chaser's War on Everything. The theme tune has also appeared on many compilation CDs, and has made its way into mobile-phone ringtones. Fans have also produced and distributed their own remixes of the theme. In January 2011 the Mankind version was released as a digital download on the album Gallifrey And Beyond.

          -

          Incidental music[edit]

          - - -

          Most of the innovative incidental music for Doctor Who has been specially commissioned from freelance composers, although in the early years some episodes also used stock music, as well as occasional excerpts from original recordings or cover versions of songs by popular music acts such as The Beatles and The Beach Boys. Since its 2005 return, the series has featured occasional use of excerpts of pop music from the 1970s to the 2000s.

          -

          The incidental music for the first Doctor Who adventure, An Unearthly Child, was written by Norman Kay. Many of the stories of the William Hartnell period were scored by electronic music pioneer Tristram Cary, whose Doctor Who credits include The Daleks, Marco Polo, The Daleks' Master Plan, The Gunfighters and The Mutants. Other composers in this early period included Richard Rodney Bennett, Carey Blyton and Geoffrey Burgon.

          -

          The most frequent musical contributor during the first 15 years was Dudley Simpson, who is also well known for his theme and incidental music for Blake's 7, and for his haunting theme music and score for the original 1970s version of The Tomorrow People. Simpson's first Doctor Who score was Planet of Giants (1964) and he went on to write music for many adventures of the 1960s and 1970s, including most of the stories of the Jon Pertwee/Tom Baker periods, ending with The Horns of Nimon (1979). He also made a cameo appearance in The Talons of Weng-Chiang (as a Music hall conductor).

          -

          In 1980 starting with the serial The Leisure Hive the task of creating incidental music was assigned to the Radiophonic Workshop. Paddy Kingsland and Peter Howell contributed many scores in this period and other contributors included Roger Limb, Malcolm Clarke and Jonathan Gibbs.

          -

          The Radiophonic Workshop was dropped after 1986's The Trial of a Time Lord series, and Keff McCulloch took over as the series' main composer until the end of its run, with Dominic Glynn and Mark Ayres also contributing scores.

          -

          All the incidental music for the 2005 revived series has been composed by Murray Gold and Ben Foster and has been performed by the BBC National Orchestra of Wales from the 2005 Christmas episode "The Christmas Invasion" onwards. A concert featuring the orchestra performing music from the first two series took place on 19 November 2006 to raise money for Children in Need. David Tennant hosted the event, introducing the different sections of the concert. Murray Gold and Russell T Davies answered questions during the interval and Daleks and Cybermen appeared whilst music from their stories was played. The concert aired on BBCi on Christmas Day 2006. A Doctor Who Prom was celebrated on 27 July 2008 in the Royal Albert Hall as part of the annual BBC Proms. The BBC Philharmonic and the London Philharmonic Choir performed Murray Gold's compositions for the series, conducted by Ben Foster, as well as a selection of classics based on the theme of space and time. The event was presented by Freema Agyeman and guest-presented by various other stars of the show with numerous monsters participating in the proceedings. It also featured the specially filmed mini-episode "Music of the Spheres", written by Russell T Davies and starring David Tennant.[112]

          -

          Six soundtrack releases have been released since 2005. The first featured tracks from the first two series,[113] the second and third featured music from the third and fourth series respectively. The fourth was released on 4 October 2010 as a two disc special edition and contained music from the 2008–2010 specials (The Next Doctor to End of Time Part 2).[114][115] The soundtrack for Series 5 was released on 8 November 2010.[116] In February 2011, a soundtrack was released for the 2010 Christmas special: "A Christmas Carol",[117] and in December 2011 the soundtrack for Series 6 was released, both by Silva Screen Records.[118]

          -

          Logo history[edit]

          -

          Below is a collection of current and past Doctor Who logos from the classic and current series. The different doctors have been named below the logos that have appeared during their tenure (e.g. The diamond logo from 1973-1980 was used for the Third Doctor in his final season (5 serials). However, he is more commonly associated with the 1970-1973 logo used for four seasons (7-10).

          -

          The original logo used for the First Doctor (and briefly for the Second Doctor) was reused in a slightly modified format for the 50th anniversary special "The Day of the Doctor" during the Eleventh Doctor's run. The logo used in the television movie featuring the Eighth Doctor was an edited version of the logo used for the Third Doctor. The logo from 1973–80 was used for the Third Doctor's final season and for the majority of the Fourth Doctor's tenure. The following logo, while most associated with the Fifth Doctor, was also used for the Fourth Doctor's final season. The logo used for the Ninth Doctor was slightly edited for the Tenth Doctor, but it retained the same general appearance. The logo used for the Eleventh Doctor had the "DW" TARDIS portion removed in 2012, but the same font remained (hence the date for until 2014), albeit with a slight edit to the texture every episode, with the texture relating to some aspect of the story, and the font was later subtly altered, as well as made slightly larger. for the Twelfth Doctor. As of 2014, the logo used for the Third and Eighth Doctors is the primary logo used on all media and merchandise relating to past Doctors, and the current Doctor Who logo is used for all merchandise relating to the current Doctor.

          - -

          Viewership[edit]

          -
          Main article: Doctor Who fandom
          -

          United Kingdom[edit]

          -
          -
          -
          -
          -The image of the TARDIS is iconic in British popular culture.
          -
          -
          -

          Premiering the day after the assassination of John F. Kennedy, the first episode of Doctor Who was repeated with the second episode the following week. Doctor Who has always appeared initially on the BBC's mainstream BBC One channel, where it is regarded as a family show, drawing audiences of many millions of viewers; episodes are now repeated on BBC Three. The programme's popularity has waxed and waned over the decades, with three notable periods of high ratings.[119] The first of these was the "Dalekmania" period (circa 1964–1965), when the popularity of the Daleks regularly brought Doctor Who ratings of between 9 and 14 million, even for stories which did not feature them.[119][120] The second was the late 1970s, when Tom Baker occasionally drew audiences of over 12 million.[119]

          -

          During the ITV network strike of 1979, viewership peaked at 16 million.[citation needed] Figures remained respectable into the 1980s, but fell noticeably after the programme's 23rd series was postponed in 1985 and the show was off the air for 18 months. Its late 1980s performance of three to five million viewers was seen as poor at the time and was, according to the BBC Board of Control, a leading cause of the programme's 1989 suspension. Some fans considered this disingenuous, since the programme was scheduled against the soap opera Coronation Street, the most popular show at the time. After the series' revival in 2005 (the third notable period of high ratings), it has consistently had high viewership levels for the evening on which the episode is broadcast.[119]

          -

          The BBC One broadcast of "Rose", the first episode of the 2005 revival, drew an average audience of 10.81 million, third highest for BBC One that week and seventh across all channels.[119][121][122] The current revival also garners the highest audience Appreciation Index of any drama on television.[123]

          -

          International[edit]

          -
          -
          -
          -
          -Map of countries that have or currently broadcast Doctor Who in either its current or classic incarnation (map correct as of October 2014)
          -
          -
          -

          Doctor Who has been broadcast internationally outside of the United Kingdom since 1964, a year after the show first aired. As of 1 January 2013, the modern series has been or is currently broadcast weekly in more than 50 countries.

          -

          Doctor Who is one of the five top grossing titles for BBC Worldwide, the BBC's commercial arm.[124] BBC Worldwide CEO John Smith has said that Doctor Who is one of a small number of "Superbrands" which Worldwide will promote heavily.[125]

          -

          Only four episodes have ever had their premiere showings on channels other than BBC One. The 1983 20th anniversary special The Five Doctors had its début on 23 November (the actual date of the anniversary) on a number of PBS stations two days prior to its BBC One broadcast. The 1988 story Silver Nemesis was broadcast with all three episodes airing back to back on TVNZ in New Zealand in November, after the first episode had been shown in the UK but before the final two instalments had aired there. Finally, the 1996 television film premièred on 12 May 1996 on CITV in Edmonton, Canada, 15 days before the BBC One showing, and two days before it aired on Fox in the United States.[citation needed]

          -

          Oceania[edit]

          -

          New Zealand was the first country outside the United Kingdom to screen Doctor Who, beginning in September 1964, and continued to screen the series for many years, including the new series from 2005.

          -

          In Australia, the show has had a strong fan base since its inception, having been exclusively first run by the Australian Broadcasting Corporation (ABC) since January 1965. The ABC has periodically repeated episodes; of note were the weekly screenings of all available classic episodes starting in 2003, for the show's 40th anniversary. The ABC broadcasts the modern series first run on ABC1, with repeats on ABC2. The ABC also provided partial funding for the 20th anniversary special The Five Doctors in 1983. Repeats of both the classic and modern series have also been shown on subscription television channels BBC UKTV, SF and later on SyFy upon SF's closure.[citation needed]

          -

          North America[edit]

          - -

          The series also has a fan base in the United States, where it was shown in syndication from the 1970s to the 1990s, particularly on PBS stations.[citation needed]

          -

          TVOntario picked up the show in 1976 beginning with The Three Doctors and aired each series (several years late) through to series 24 in 1991. From 1979 to 1981, TVO airings were bookended by science-fiction writer Judith Merril who would introduce the episode and then, after the episode concluded, try to place it in an educational context in keeping with TVO's status as an educational channel. Its airing of The Talons of Weng-Chiang was cancelled as a result of accusations that the story was racist; the story was later broadcast in the 1990s on cable station YTV. CBC began showing the series again in 2005. The series moved to the Canadian cable channel Space in 2009.[citation needed]

          -

          For the Canadian broadcast, Christopher Eccleston recorded special video introductions for each episode (including a trivia question as part of a viewer contest) and excerpts from the Doctor Who Confidential documentary were played over the closing credits; for the broadcast of "The Christmas Invasion" on 26 December 2005, Billie Piper recorded a special video introduction. CBC began airing series two on 9 October 2006 at 20:00 E/P (20:30 in Newfoundland and Labrador), shortly after that day's CFL double header on Thanksgiving in most of the country.[citation needed]

          -

          Series three began broadcasting on CBC on 18 June 2007 followed by the second Christmas special, "The Runaway Bride" at midnight,[126] and the Sci Fi Channel began on 6 July 2007 starting with the second Christmas special at 8:00 pm E/P followed by the first episode.[127]

          -

          Series four aired in the United States on the Sci Fi Channel (now known as Syfy), beginning in April 2008.[128] It aired on CBC beginning 19 September 2008, although the CBC did not air the Voyage of the Damned special.[129] The Canadian cable network Space broadcast "The Next Doctor" (in March 2009) and all subsequent series and specials.[130]

          -

          Other countries[edit]

          -

          In Latin America, the original series — known as Doctor Misterio – was shown in Venezuela from 1967; Mexico (Canal 13) from 1968, then later syndicated from 1979; and Chile from 1969.

          -

          A special logo has been designed for the Japanese broadcast with the katakana "ドクター・フー" (romanised as Dokutā Fū).[131] The series has apparently "mystified" viewers in Japan where it has been broadcast in a late evening time slot, leading to some not realising it is a family show.[132]

          -

          DVD and video[edit]

          - -

          A wide selection of serials are available from BBC Video on DVD, on sale in the United Kingdom, Australia, Canada and the United States. Every fully extant serial has been released on VHS, and BBC Worldwide continues to regularly release serials on DVD. The 2005 series is also available in its entirety on UMD for the PlayStation Portable. Eight original series serials have been released on Laserdisc[133] and many have also been released on Betamax tape and Video 2000. One episode of Doctor Who The Infinite Quest was released on VCD. So far only the new series from 2009 onwards are available on Blu-ray. The 1970 classic series story Spearhead from Space was released on Blu-ray in July 2013. Many early releases have been re-released on special edition with more bonus features.

          -

          Adaptations and other appearances[edit]

          -

          Doctor Who films[edit]

          -
          Main article: Dr. Who (Dalek films)
          -

          There are two Doctor Who feature films: Dr. Who and the Daleks, released in 1965 and Daleks – Invasion Earth: 2150 A.D. in 1966. Both are retellings of existing television stories (specifically, the first two Dalek serials, The Daleks and The Dalek Invasion of Earth respectively) with a larger budget and alterations to the series concept.

          -

          In these films, Peter Cushing plays a human scientist[134] named "Dr. Who", who travels with his granddaughter and niece and other companions in a time machine he has invented. The Cushing version of the character reappears in both comic strips and a short story, the latter attempting to reconcile the film continuity with that of the series.

          -

          In addition, several planned films were proposed, including a sequel, The Chase, loosely based on the original series story, for the Cushing Doctor, plus many attempted television movie and big screen productions to revive the original Doctor Who, after the original series was cancelled.

          -

          Paul McGann starred in the only television film as the eighth incarnation of the Doctor. After the film, he continued the role in audio books and was confirmed as the eighth incarnation through flashback footage and a mini episode in the 2005 revival, effectively linking the two series and the television movie.

          -

          In 2011, David Yates announced that he had started work with the BBC on a Doctor Who film, a project that would take three or more years to complete. Yates indicated that the film would take a different approach to Doctor Who,[135] although the current Doctor Who showrunner Steven Moffat stated later that any such film would not be a reboot of the series and a film should be made by the BBC team and star the current TV Doctor.[136][137]

          -

          Spin-offs[edit]

          -
          Main article: Doctor Who spin-offs
          -

          Doctor Who has appeared on stage numerous times. In the early 1970s, Trevor Martin played the role in Doctor Who and the Daleks in the Seven Keys to Doomsday. In the late 1980s, Jon Pertwee and Colin Baker both played the Doctor at different times during the run of a play titled Doctor Who – The Ultimate Adventure. For two performances, while Pertwee was ill, David Banks (better known for playing Cybermen) played the Doctor. Other original plays have been staged as amateur productions, with other actors playing the Doctor, while Terry Nation wrote The Curse of the Daleks, a stage play mounted in the late 1960s, but without the Doctor.

          -

          A pilot episode ("A Girl's Best Friend") for a potential spinoff series, K-9 and Company, was aired in 1981 with Elisabeth Sladen reprising her role as companion Sarah Jane Smith and John Leeson as the voice of K-9, but was not picked up as a regular series.

          -

          Concept art for an animated Doctor Who series was produced by animation company Nelvana in the 1980s, but the series was not produced.[138]

          -

          Following the success of the 2005 series produced by Russell T Davies, the BBC commissioned Davies to produce a 13-part spin-off series titled Torchwood (an anagram of "Doctor Who"), set in modern-day Cardiff and investigating alien activities and crime. The series debuted on BBC Three on 22 October 2006.[139] John Barrowman reprised his role of Jack Harkness from the 2005 series of Doctor Who.[140] Two other actresses who appeared in Doctor Who also star in the series; Eve Myles as Gwen Cooper, who also played the similarly named servant girl Gwyneth in the 2005 Doctor Who episode "The Unquiet Dead",[141] and Naoko Mori who reprised her role as Toshiko Sato first seen in "Aliens of London". A second series of Torchwood aired in 2008; for three episodes, the cast was joined by Freema Agyeman reprising her Doctor Who role of Martha Jones. A third series was broadcast from 6 to 10 July 2009, and consisted of a single five-part story called Children of Earth which was set largely in London. A fourth series, Torchwood: Miracle Day jointly produced by BBC Wales, BBC Worldwide and the American entertainment company Starz debuted in 2011. The series was predominantly set in the United States, though Wales remained part of the show's setting.

          -

          The Sarah Jane Adventures, starring Elisabeth Sladen who reprised her role as investigative journalist Sarah Jane Smith, was developed by CBBC; a special aired on New Year's Day 2007 and a full series began on 24 September 2007.[142] A second series followed in 2008, notable for (as noted above) featuring the return of Brigadier Lethbridge-Stewart. A third in 2009 featured a crossover appearance from the main show by David Tennant as the Tenth Doctor. In 2010, a further such appearance featured Matt Smith as the Eleventh Doctor alongside former companion actress Katy Manning reprising her role as Jo Grant. A final, three-story fifth series was transmitted in autumn 2011 – uncompleted due to the death of Elisabeth Sladen in early 2011.

          -

          An animated serial, The Infinite Quest, aired alongside the 2007 series of Doctor Who as part of the children's television series Totally Doctor Who. The serial featured the voices of series regulars David Tennant and Freema Agyeman but is not considered part of the 2007 series.[143] A second animated serial, Dreamland, aired in six parts on the BBC Red Button service, and the official Doctor Who website in 2009.[144]

          -

          Numerous other spin-off series have been created not by the BBC but by the respective owners of the characters and concepts. Such spin-offs include the novel and audio drama series Faction Paradox, Iris Wildthyme and Bernice Summerfield; as well as the made-for-video series P.R.O.B.E.; the Australian-produced television series K-9, which aired a 26-episode first season on Disney XD;[145] and the audio spin-off Counter-Measures.[146]

          -

          Charity episodes[edit]

          -

          In 1983, coinciding with the series' 20th anniversary, a charity special titled The Five Doctors was produced in aid of Children in Need, featuring three of the first five Doctors, a new actor to replace the deceased William Hartnell, and unused footage to represent Tom Baker.[147] This was a full-length, 90-minute film, the longest single episode of Doctor Who produced to date (the television movie ran slightly longer on broadcast where it included commercial breaks).[148][149]

          -

          In 1993, for the franchise's 30th anniversary, another charity special, titled Dimensions in Time was produced for Children in Need, featuring all of the surviving actors who played the Doctor and a number of previous companions. It also featured a crossover with the soap opera EastEnders, the action taking place in the latter's Albert Square location and around Greenwich. The special was one of several special 3D programmes the BBC produced at the time, using a 3D system that made use of the Pulfrich effect requiring glasses with one darkened lens; the picture would look normal to those viewers who watched without the glasses.

          -

          In 1999, another special, Doctor Who and the Curse of Fatal Death, was made for Comic Relief and later released on VHS. An affectionate parody of the television series, it was split into four segments, mimicking the traditional serial format, complete with cliffhangers, and running down the same corridor several times when being chased (the version released on video was split into only two episodes). In the story, the Doctor (Rowan Atkinson) encounters both the Master (Jonathan Pryce) and the Daleks. During the special the Doctor is forced to regenerate several times, with his subsequent incarnations played by, in order, Richard E. Grant, Jim Broadbent, Hugh Grant and Joanna Lumley. The script was written by Steven Moffat, later to be head writer and executive producer to the revived series.[17]

          -

          Since the return of Doctor Who in 2005, the franchise has produced two original "mini-episodes" to support Children in Need. The first, aired in November 2005, was an untitled seven-minute scene which introduced David Tennant as the Tenth Doctor. It was followed in November 2007 by "Time Crash", a 7-minute scene which featured the Tenth Doctor meeting the Fifth Doctor (played once again by Peter Davison).

          -

          A set of two mini-episodes, titled "Space" and "Time" respectively, were produced to support Comic Relief. They were aired during the Comic Relief 2011 event.[150]

          -

          During 2011 Children in Need, an exclusively-filmed segment showed the Doctor addressing the viewer, attempting to persuade them to purchase items of his clothing, which were going up for auction for Children in Need. The 2012 edition of CiN featured the mini-episode The Great Detective.

          -

          Spoofs and cultural references[edit]

          -
          Main article: Doctor Who spoofs
          -

          Doctor Who has been satirised and spoofed on many occasions by comedians including Spike Milligan (a Dalek invades his bathroom — Milligan, naked, hurls a soap sponge at it) and Lenny Henry. Jon Culshaw frequently impersonates the Fourth Doctor in the BBC Dead Ringers series.[151] Doctor Who fandom has also been lampooned on programs such as Saturday Night Live, The Chaser's War on Everything, Mystery Science Theater 3000, Family Guy, American Dad!, Futurama, South Park, Community as Inspector Spacetime, The Simpsons and The Big Bang Theory.

          -

          The Doctor in his fourth incarnation has been represented on several episodes of The Simpsons[152] and Matt Groening's other animated series Futurama.[153][154]

          -

          There have also been many references to Doctor Who in popular culture and other science fiction, including Star Trek: The Next Generation ("The Neutral Zone")[155] and Leverage. In the Channel 4 series Queer as Folk (created by later Doctor Who executive producer Russell T Davies), the character of Vince was portrayed as an avid Doctor Who fan, with references appearing many times throughout in the form of clips from the programme. In a similar manner, the character of Oliver on Coupling (created and written by current show runner Steven Moffat) is portrayed as a Doctor Who collector and enthusiast. References to Doctor Who have also appeared in the young adult fantasy novels Brisingr[156] and High Wizardry,[157] the video game Rock Band,[158] the soap opera EastEnders,[159] the Adult Swim comedy show Robot Chicken, the Family Guy episodes "Blue Harvest" and "420", and the game RuneScape.

          -

          Doctor Who has been a reference in several political cartoons, from a 1964 cartoon in the Daily Mail depicting Charles de Gaulle as a Dalek[160] to a 2008 edition of This Modern World by Tom Tomorrow in which the Tenth Doctor informs an incredulous character from 2003 that the Democratic Party will nominate an African-American as its presidential candidate.[161]

          -

          The word "TARDIS" is an entry in the Shorter Oxford English Dictionary[162] and the iOS dictionary.

          -

          As part of the 50th anniversary programmes, former Fifth Doctor Peter Davison created, wrote and co-starred in a parody The Five(ish) Doctors Reboot featuring cameos from several other former Doctors, companions and people involved in the programme.[163]

          -

          Museums and exhibitions[edit]

          - -

          There have been various exhibitions of Doctor Who in the United Kingdom, including the now closed exhibitions at:

          - -

          There is an exhibition open currently in Cardiff (the city where the series is filmed)[164]

          -

          Merchandise[edit]

          - -

          Since its beginnings, Doctor Who has generated hundreds of products related to the show, from toys and games to collectible picture cards and postage stamps. These include board games, card games, gamebooks, computer games, roleplaying games, action figures and a pinball game. Many games have been released that feature the Daleks, including Dalek computer games.

          -

          Audios[edit]

          -

          The Doctor has also appeared in webcasts and in audio plays; among the latter were those produced by Big Finish Productions, who were responsible for a range of audio plays released on CD, as well as 2006's eight-part BBC 7 series starring Paul McGann. Big Finish's productions began with the release of The Sirens of Time in July 1999. These audios feature Doctors 4–8. As well as this, Big Finish also release a range of other audio books read by both Doctors and Companions.

          -

          Books[edit]

          - -

          Doctor Who books have been published from the mid-sixties through to the present day. From 1965 to 1991 the books published were primarily novelised adaptations of broadcast episodes; beginning in 1991 an extensive line of original fiction was launched, the Virgin New Adventures and Virgin Missing Adventures. Since the relaunch of the programme in 2005, a new range of novels have been published by BBC Books. Numerous non-fiction books about the series, including guidebooks and critical studies, have also been published, and a dedicated Doctor Who Magazine with newsstand circulation has been published regularly since 1979. This is published by Panini, as is the Doctor Who Adventures magazine for younger fans.

          -

          See also:

          - -

          Video games[edit]

          - -

          Numerous Doctor Who video games have been created from the mid-80s through to the present day. One of the recent ones is a match-3 game released in November 2013 for iOS, Android, Amazon App Store and Facebook called Doctor Who: Legacy. It has been contstantly updated since its release and features all of the Doctors as playable characters as well as over 100 companions.[165]

          -

          Another video game installment is LEGO Dimensions - in which Doctor Who is one of the many "Level Packs" in the game. At the moment, the pack contains the Twelfth Doctor, K9, the TARDIS and a Victorian London adventure level area. The game and pack are due later in 2015. [166]

          -

          Chronology and canonicity[edit]

          -

          Since the creation of the Doctor Who character by BBC Television in the early 1960s, a myriad of stories have been published about Doctor Who, in different media: apart from the actual television episodes that continue to be produced by the BBC, there have also been novels, comics, short stories, audio books, radio plays, interactive video games, game books, webcasts, DVD extras, and even stage performances. In this respect it is noteworthy that the BBC takes no position on the canonicity of any of such stories, and recent producers of the show have expressed distaste for the idea.[167]

          -

          Awards[edit]

          - -

          The show has received recognition as one of Britain's finest television programmes, winning the 2006 British Academy Television Award for Best Drama Series and five consecutive (2005–2010) awards at the National Television Awards during Russell T Davies' tenure as executive producer.[168][169] In 2011, Matt Smith became the first Doctor to be nominated for a BAFTA Television Award for Best Actor. In 2013, the Peabody Awards honoured Doctor Who with an Institutional Peabody "for evolving with technology and the times like nothing else in the known television universe."[170] The programme is listed in Guinness World Records as the longest-running science fiction television show in the world,[171] the "most successful" science fiction series of all time—based on its over-all broadcast ratings, DVD and book sales, and iTunes traffic—[172] and for the largest ever simulcast of a TV drama with its 50th anniversary special.[173] During its original run, it was recognised for its imaginative stories, creative low-budget special effects, and pioneering use of electronic music (originally produced by the BBC Radiophonic Workshop).

          -

          In 1975, Season 11 of the series won a Writers' Guild of Great Britain award for Best Writing in a Children's Serial. In 1996, BBC television held the "Auntie Awards" as the culmination of their "TV60" series, celebrating 60 years of BBC television broadcasting, where Doctor Who was voted as the "Best Popular Drama" the corporation had ever produced, ahead of such ratings heavyweights as EastEnders and Casualty.[174] In 2000, Doctor Who was ranked third in a list of the 100 Greatest British Television Programmes of the 20th century, produced by the British Film Institute and voted on by industry professionals.[175] In 2005, the series came first in a survey by SFX magazine of "The Greatest UK Science Fiction and Fantasy Television Series Ever". Also, in the 100 Greatest Kids' TV shows (a Channel 4 countdown in 2001), the 1963–1989 run was placed at number eight.

          -

          The revived series has received recognition from critics and the public, across various awards ceremonies. It won five BAFTA TV Awards, including Best Drama Series, the highest-profile and most prestigious British television award for which the series has ever been nominated.[176] It was very popular at the BAFTA Cymru Awards, with 25 wins overall including Best Drama Series (twice), Best Screenplay/Screenwriter (thrice) and Best Actor.[177] It was also nominated for 7 Saturn Awards, winning the only Best International Series in the ceremony's history. In 2009, Doctor Who was voted the 3rd greatest show of the 2000s by Channel 4, behind Top Gear and The Apprentice.[178] The episode "Vincent and the Doctor" was shortlisted for a Mind Award at the 2010 Mind Mental Health Media Awards for its "touching" portrayal of Vincent van Gogh.[179]

          -

          It has won the Short Form of the Hugo Award for Best Dramatic Presentation, the oldest science fiction/fantasy award for films and series, six times (every year since 2006, except for 2009, 2013 and 2014). The winning episodes were "The Empty Child"/"The Doctor Dances" (2006), "The Girl in the Fireplace" (2007), "Blink" (2008), "The Waters of Mars" (2010), "The Pandorica Opens"/"The Big Bang" (2011), and "The Doctor's Wife" (2012).[180][181][182][183] Doctor Who star Matt Smith won Best Actor in the 2012 National Television awards alongside Karen Gillan who won Best Actress. Doctor Who has been nominated for over 200 awards and has won over a hundred of them.

          -

          As a British series, the majority of its nominations and awards have been for national competitions such as the BAFTAs, but it has occasionally received nominations in mainstream American awards, most notably a nomination for "Favorite Sci-Fi Show" in the 2008 People's Choice Awards and the series has been nominated multiple times in the Spike Scream Awards, with Smith winning Best Science Fiction Actor in 2011. The Canadian Constellation Awards have also recognised the series.

          -

          See also[edit]

          - - - - - - - - -

          Notes[edit]

          -
          -
            -
          1. ^ Newman is often given sole creator credit for the series. Some reference works such as The Complete Encyclopedia of Television Programs 1947–1979 by Vincent Terrace erroneously credit Terry Nation with creating Doctor Who, because of the way his name is credited in the two Peter Cushing films.[citation needed]
            -Newman and Lambert's role in originating the series was recognised in the 2007 episode "Human Nature", in which the Doctor, in disguise as a human named John Smith, gives his parents' names as Sydney and Verity.[citation needed]
          2. -
          3. ^ This is often emphasised in the accompanying making-of documentaries in the series Doctor Who Confidential, as well as in occasional flashbacks to images of earlier versions of the Doctor.
          4. -
          5. ^ The tapes, based on a 405-line broadcast standard, were rendered obsolete when UK television changed to a 625-line signal in preparation for the soon-to-begin colour transmissions.
          6. -
          7. ^ When it became an entry in the Oxford English Dictionary, the word "TARDIS" often came to be used to describe anything that appeared larger on the inside than its exterior implied.
          8. -
          9. ^ a b c d e f g Earlier incarnations of the Doctor have occasionally appeared with the then current incarnation in later plots. The First and Second Doctors appeared in the 1973 Third Doctor story, The Three Doctors; The First, Second, Third and Fourth appeared in the 1983 Fifth Doctor story, The Five Doctors; the Second appeared with the Sixth in the 1985 story, The Two Doctors; the Fifth appeared with the Tenth in the 2007 mini-episode, "Time Crash"; and the Tenth appeared with the Eleventh in "The Day of the Doctor". The Eighth Doctor also returned in the 2013 mini-episode "The Night of the Doctor".
          10. -
          11. ^ Often mistitled "I am the Doctor" on YouTube uploads. Originally released as a 7" vinyl single, plain sleeve, December 1972 on label Purple PUR III
          12. -
          -
          -

          References[edit]

          -
          -
            -
          1. ^ "Brian Minchin confirmed as New Executive Producer of Doctor Who". BBC. 30 April 2013. Retrieved 30 April 2013. 
          2. -
          3. ^ "The end of Olde Englande: A lament for Blighty". The Economist. 14 September 2006. Retrieved 18 September 2006. 
            -"ICONS. A Portrait of England". Retrieved 10 November 2007. 
          4. -
          5. ^ a b Moran, Caitlin (30 June 2007). "Doctor Who is simply masterful". The Times (London). Retrieved 1 July 2007. [Doctor Who] is as thrilling and as loved as Jolene, or bread and cheese, or honeysuckle, or Friday. It's quintessential to being British. 
          6. -
          7. ^ Do You Remember the First Time?. Doctor Who Confidential. 9 June 2007. Director and presenter: David Tennant 
          8. -
          9. ^ Gurudata, Andrew. "Rage Against the Machine". Enlightenment (147). 
          10. -
          11. ^ "Doctor Who: Peter Capaldi revealed as 12th Doctor". BBC News. 4 August 2013. 
          12. -
          13. ^ Howe, Stammers, Walker (1994), p. 54
          14. -
          15. ^ "An Unearthly Child". BBC. 16 August 2012. 
          16. -
          17. ^ Howe, Stammers, Walker (1994), pp. 157–230 ("Production Diary")
          18. -
          19. ^ Howe, Stammers, Walker (1992), p. 3.
          20. -
          21. ^ Steve Tribe, James Goss Dr Who: The Dalek Handbook BBC Books Random House 2011 ISBN 978-1-84990-232-8 Pg9
          22. -
          23. ^ Deans, Jason (21 June 2005). "Doctor Who makes the Grade". The Guardian (London). Retrieved 4 February 2007. But Mr Grade was not at the helm when Doctor Who was finally retired for good in 1989 — that decision fell to the then BBC1 controller, Jonathan Powell. 
          24. -
          25. ^ a b c Doctor Who Magazine Eighth Doctor Special, Panini Comics 2003
          26. -
          27. ^ Gibson, Owen (26 September 2003). "Doctor Who returns to BBC1 screens". The Guardian (London). Retrieved 20 January 2012. 
          28. -
          29. ^ "Doctor Who is Saturday night hit". BBC. Retrieved 24 October 2013. 
          30. -
          31. ^ Davies, Russell T; Cook, Benjamin (2010). Doctor Who: The Writer's Tale: The Final Chapter. London: BBC Books. p. 216. ISBN 978-1-84607-861-3. 
          32. -
          33. ^ a b "Doctor Who guru Davies steps down". BBC News. 20 May 2008. Retrieved 20 May 2008. 
          34. -
          35. ^ "Outpost Gallifrey: TV Series FAQ". gallifreyone.com. [dead link]
          36. -
          37. ^ Howe, David J.; Mark Stammers; Stephen James Walker (2003). The Television Companion: The Unofficial and Unauthorised Guide to DOCTOR WHO (2nd ed.). Surrey: Telos Publishing Ltd. ISBN 1-903889-51-0. 
          38. -
          39. ^ "Serial A: 100,000 BC (aka An Unearthly Child, The Tribe of Gum)". shannonsullivan.com. Retrieved 6 September 2013. 
          40. -
          41. ^ "DOCTOR WHO'S FIRST EPISODE: AN UNEARTHLY CHILD". televisionheaven.co.uk. Retrieved 6 September 2013. [dead link]
          42. -
          43. ^ Clark, Anthony. "Doctor Who (1963–89, 2005–)". Screenonline. Retrieved 21 March 2007. The science fiction adventure series Doctor Who (BBC, 1963–89) has created a phenomenon unlike any other British TV programme. 
          44. -
          45. ^ Tulloch, John. "Doctor Who". Museum of Broadcast Communications. Archived from the original on 11 February 2007. Retrieved 21 March 2007. The official fans have never amounted to more than a fraction of the audience. Doctor Who achieved the status of an institution as well as a cult. 
          46. -
          47. ^ "Voyage of the Damned – Cast and Crew". BBC. Retrieved 24 October 2013. 
          48. -
          49. ^ "Planet of the Dead – Credits". BBC. Retrieved 24 October 2013. 
          50. -
          51. ^ "Dinosaurs on a Spaceship – Credits". BBC. Retrieved 24 October 2013. 
          52. -
          53. ^ "The Name of the Doctor – Credits". BBC. Retrieved 24 October 2013. 
          54. -
          55. ^ "Biography of Mary Whitehouse". Internet Movie Database. Retrieved 6 July 2007. 
          56. -
          57. ^ "Doctor Who Producer Dies". BBC News. 3 May 2002. Retrieved 6 July 2007. 
          58. -
          59. ^ Leith, Sam (2008-07-04). "Worshipping Doctor Who from behind the sofa". The Daily Telegraph. Retrieved 2008-07-05. The cliché about Doctor Who — that it had us "hiding behind the sofa" — is more telling in its tone than its questionable factuality. It connotes nostalgia, and a pleasurable mixture of fright and fascination — but above all it connotes domesticity. It united fear and soft furnishings in the British mind. 
          60. -
          61. ^ If you weren't scared of Doctor Who as a child, you missed out on a crucial experience - IO9, by Charlie Jane Anders, 2012-12-25
          62. -
          63. ^ 'Doctor Who' named scariest TV show of all time: Your Top 10 revealed, Digital Spy, Catriona Wightman & Morgan Jeffery, 2011-10-31.
          64. -
          65. ^ "BBC – Doctor Who Classic Episode Guide – Terror of the Autons". BBC. Retrieved 25 October 2013. 
          66. -
          67. ^ "Doctor Who Classic Episode Guide – The Brain of Morbius". BBC. Retrieved 25 October 2013. 
          68. -
          69. ^ "BBC – Doctor Who Classic Episode Guide – The Deadly Assassin". BBC. Retrieved 25 October 2013. 
          70. -
          71. ^ a b Howard, Philip (29 January 1972). "Violence is not really Dr Who's cup of tea". The Times. p. 2. 
          72. -
          73. ^ "The Times Diary — Points of view". The Times. 27 January 1972. p. 16. 
          74. -
          75. ^ "Doctor Who fan in tardis replica plan for Herne Bay". BBC. Retrieved 31 July 2013. 
          76. -
          77. ^ "Case details for Trade Mark UK00002104259". UK Patent Office. Retrieved 27 October 2013. 
          78. -
          79. ^ "Trade mark decision". UK Patent Office website. Retrieved 17 January 2007. 
            -Knight, Mike. "In the matter of application No. 2104259 by The British Broadcasting Corporation to register a series of three marks in Classes 9, 16, 25 and 41 AND IN THE MATTER OF Opposition thereto under No. 48452 by The Metropolitan Police Authority" (PDF). UK Patent Office. Retrieved 17 January 2007. 
            -"BBC wins police Tardis case". BBC News. 23 October 2002. Retrieved 17 January 2007. 
          80. -
          81. ^ Leith, Sam (4 July 2008). "Worshipping Doctor Who from behind the sofa". The Daily Telegraph (London). Archived from the original on 6 July 2008. Retrieved 7 July 2008. 
          82. -
          83. ^ Robinson, James (18 March 2007). "Television's Lord of prime time awaits his next regeneration". The Observer (London). Retrieved 19 March 2007. 
          84. -
          85. ^ Pettie, Andrew (4 January 2009). "Casting Matt Smith shows that Doctor Who is a savvy multi-million pound brand". The Daily Telegraph (London). Retrieved 4 January 2009. 
          86. -
          87. ^ Dowell, Ben (23 August 2008). "Edinburgh TV Festival 2008: don't rule out Doctor Who feature film, says Steven Moffat". The Guardian (London). Retrieved 23 August 2008. 
          88. -
          89. ^ "New Doctor Who star to be unveiled". BBC. 2 August 2013. Retrieved 3 August 2013. 
          90. -
          91. ^ "From spin doctor to Doctor Who ... star's childhood dream comes true". The Herald. Glasgow. 5 August 2013. Retrieved 18 August 2013. 
          92. -
          93. ^ The Daleks' Master Plan. Writers Terry Nation and Dennis Spooner, Director Douglas Camfield, Producer John Wiles. Doctor Who. BBC. BBC One, London. 13 November 1965 – 29 January 1966.
          94. -
          95. ^ Writer Terry Nation, Director Derek Martinus, Producer Verity Lambert (9 October 1965). "Mission to the Unknown". Doctor Who. BBC. BBC One. 
          96. -
          97. ^ The War Games. Writers Malcolm Hulke and Terrance Dicks, Director David Maloney, Producer Derrick Sherwin. Doctor Who. BBC. BBC One, London. 19 April 1969 – 21 June 1969.
          98. -
          99. ^ The Trial of a Time Lord. Writers Robert Holmes, Philip Martin and Pip and Jane Baker, Directors Nicholas Mallett, Ron Jones and Chris Clough, Producer John Nathan-Turner. Doctor Who. BBC. BBC One, London. 6 September 1986 – 6 December 1986.
          100. -
          101. ^ "BBC – Doctor Who Classic Episode Guide – Season 8". BBC. Retrieved 25 October 2013. 
          102. -
          103. ^ "The Master – BBC". BBC. Retrieved 25 October 2013. 
          104. -
          105. ^ "BBC – Doctor Who Classic Episode Guide – Season 16". BBC. Retrieved 25 October 2013. 
          106. -
          107. ^ "BBC – Doctor Who Classic Episode Guide – Logopolis". BBC. Retrieved 25 October 2013. 
          108. -
          109. ^ "BBC – Season 20 – Episode guide". BBC. Retrieved 25 October 2013. 
          110. -
          111. ^ a b c d "10 things you didn't know about Doctor Who". Watch. Archived from the original on 16 January 2011. Retrieved 20 January 2012. 
          112. -
          113. ^ Black Orchid. Writer Terence Dudley, Director Ron Jones, Producer John Nathan-Turner. Doctor Who. BBC. BBC One, London. 1 March 1982 – 2 March 1982.
          114. -
          115. ^ a b "Doctor Who Episode List". BBC. Retrieved 26 October 2013. 
          116. -
          117. ^ Debnath, Neela (21 September 2013). "Review of Doctor Who 'The Talons of Weng-Chiang' (Series 14)". The Independent. Retrieved 26 October 2013. 
          118. -
          119. ^ "BBC Online – Cult – Hitchhiker's – Douglas Adams – Biography". BBC. Retrieved 26 October 2013. 
          120. -
          121. ^ "Shada, Douglas Adams's 'lost' Doctor Who story, to be novelised". The Guardian. 24 March 2011. Retrieved 26 October 2013. 
          122. -
          123. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Retrieved 5 February 2009. [dead link]
          124. -
          125. ^ "BBC announces Doctor Who 3D Special". BBC News. 11 February 2013. Retrieved 12 February 2013. 
          126. -
          127. ^ "Doctor Who: David Tennant returns for anniversary show". BBC News. 30 March 2013. Retrieved 2 April 2013. 
          128. -
          129. ^ McMillan, Graeme (12 February 2013). "'Doctor Who' goes 3D for its half-century edition". Digital Trends. Retrieved 2 April 2013. 
          130. -
          131. ^ "Doctor Who 'to remain on-screen until at least 2020'". BBC. 7 April 2015. Retrieved 8 April 2015. 
          132. -
          133. ^ Molesworth, Richard. "BBC Archive Holdings". Doctor Who Restoration Team. Retrieved 30 April 2007. A full set was held at least until early 1972, as 16 mm black and white film negatives (apart — of course — from 'Masterplan' 7). . 
          134. -
          135. ^ Molesworth, Richard. "BBC Archive Holdings". Doctor Who Restoration Team. Retrieved 30 April 2007. the videotapes began to be wiped, or re-used, until the formation of the BBC's Film and Videotape Library in 1978 put a stop to this particular practice. 
          136. -
          137. ^ "'Doctor Who': Restoring and Reconstructing Missing Episodes". BBC. Retrieved 20 January 2012. 
          138. -
          139. ^ Lewinski, John Scott (29 September 2008). "Fans Reconstruct Doctor Who's Trashed Past". Wired. Retrieved 20 January 2012. 
          140. -
          141. ^ Martin, Lara (20 February 2009). "Zimbabwe 'hoarding lost 'Who' episodes'". Digital Spy. Retrieved 20 January 2012. 
          142. -
          143. ^ Foster, Chuck (21 June 2011). "The Reign of Terror — animation update". Doctor Who News Page. 
          144. -
          145. ^ "Blue Peter — Missing Doctor Who tapes". BBC. April 2006. Archived from the original on 24 April 2006. Retrieved 24 April 2006. 
          146. -
          147. ^ Mulkern, Patrick (11 December 2011). "Doctor Who: two long-lost episodes uncovered". Radio Times. Retrieved 11 December 2011. 
          148. -
          149. ^ Christopher Allen (10 October 2013). "Two "Missing" Doctor Who Adventures Found". BBC Worldwide. Retrieved 11 October 2013. 
          150. -
          151. ^ Doctor Who Online (11 October 2013). "Nine Missing Doctor Who Episodes Recovered!". Doctor Who Online. Retrieved 11 October 2013. 
          152. -
          153. ^ "Doctor Who: Yeti classic among episodes found in Nigeria". BBC. Retrieved 25 October 2013. 
          154. -
          155. ^ "Full record for Tardis-like adj.". Science Fiction Citations. Retrieved 7 September 2007. 
          156. -
          157. ^ Berriman, Ian (26 October 2010). "Interview: Russell T Davies Talks About THAT Sarah Jane Adventures Line". SFX.co.uk. Retrieved 19 April 2012. 
          158. -
          159. ^ Darren Scott (26 November 2013). "Steven Moffat on ‘Doctor numbers’ and the regeneration limit". 
          160. -
          161. ^ "INTERVIEW Russell T Davies talks about THAT Sarah Jane Adventures line". http://www.sfx.co.uk/. Retrieved 5 August 2013. 
          162. -
          163. ^ Emily Barr (13 October 2010). "Doctor Who is now immortal, reveals the BBC". The Guardian. Retrieved 13 October 2010. 
          164. -
          165. ^ "Official episode guide". UK: BBC. 1 March 2008. Retrieved 31 March 2008. 
          166. -
          167. ^ "Episode Guide — Seventh Doctor Index". Doctor Who — Classic Series. UK: BBC. Retrieved 30 July 2011. 
          168. -
          169. ^ "TV Movie cast & crew". UK: BBC. Retrieved 15 April 2008. 
          170. -
          171. ^ a b Hogan, Michael (18 May 2013). "Doctor Who: The Name of the Doctor, BBC One, review". The Daily Telegraph. Retrieved 22 May 2013. 
          172. -
          173. ^ Rigby, Sam (24 November 2013). "'Doctor Who': Steven Moffat on regeneration limit". Digital Spy. Retrieved 25 November 2013. 
          174. -
          175. ^ Ted B. Kissell. "The depressing, disappointing maleness of Doctor Who 's new Time Lord", The Atlantic, August 5, 2013
          176. -
          177. ^ "Neil Gaiman hopes a non-white person will take Doctor Who role someday", Sunday World, August 8, 2013.
          178. -
          179. ^ Horne, Marc. "How Doctor Who nearly became the Time Lady". The Sunday Telegraph. Retrieved 10 October 2010. 
          180. -
          181. ^ "The Day of the Doctor". Doctor Who. 23 November 2013. 60 minutes in. BBC. BBC One. 
          182. -
          183. ^ "Doctor Who — Zagreus". Big Finish. 
          184. -
          185. ^ "Doctor Who — Project: Lazarus". Big Finish. 
          186. -
          187. ^ "Doctor Who: the TV movie". BBC. Retrieved 13 June 2008. 
          188. -
          189. ^ "Doctor Who — FAQ — Plot and Continuity". BBC. 28 March 2008. Retrieved 30 April 2010. 
          190. -
          191. ^ a b "Doctor Who (before the Tardis)". BBC News. 19 November 2008. Retrieved 22 May 2012. 
          192. -
          193. ^ Jones, Paul (19 April 2012). "Steven Moffat: the companion is the main character in Doctor Who, not the Doctor". Radio Times. BBC Magazines. Retrieved 28 November 2013. 
          194. -
          195. ^ Berkshire, Geoff (27 March 2013). "'Doctor Who' returns: Steven Moffat talks new companion Clara and Jenna-Louise Coleman". Zap2it. Retrieved 28 November 2013. 
          196. -
          197. ^ Orthia, Lindy A. (2010). ""Sociopathetic Abscess" or "Yawning Chasm"? The Absent Postcolonial Transition in Doctor Who". Journal of Commonwealth Literature 45 (2): 207–225. doi:10.1177/0021989410366891. 
          198. -
          199. ^ "Doctor Who (before the Tardis)". BBC Magazine. 19 November 2008. Retrieved 3 January 2009. 
          200. -
          201. ^ "Doctor Who series two secrets revealed". BBC. 19 June 2005. Retrieved 29 August 2013. 
          202. -
          203. ^ Monster Files: Cybermats. iTunes Store. 2011. 
          204. -
          205. ^ "The Dead Planet". Retrieved 30 June 2011. 
          206. -
          207. ^ "NATION, TERRY". Retrieved 19 May 2008. 
          208. -
          209. ^ "Doctor Who Dalek designer Ray Cusick dies after illness". BBC. 24 February 2013. Retrieved 27 October 2013. 
          210. -
          211. ^ "Every generation of The Daleks returning to 'Doctor Who'". BANG Showbiz (England). 2 April 2012. Retrieved 3 April 2012. 
          212. -
          213. ^ Doctor Who Magazine Special Edition No. 2, 5 September 2002, [subtitled The Complete Third Doctor], p. 14.
          214. -
          215. ^ John Simm Returns for the Finale!
          216. -
          217. ^ "Murray Gold Returns". Doctor Who News Page. 3 January 2010. 
          218. -
          219. ^ "Doctor Who: 'nasty' new theme tune angers fans". The Daily Telegraph. 18 April 2010. Retrieved 20 May 2010. 
          220. -
          221. ^ a b c Peel, Ian (7 July 2008). "Doctor Who: a musical force?". The Guardian (London: blog). Retrieved 7 July 2008. 
          222. -
          223. ^ "BBC Prom 27 July 2008". BBC. 27 July 2008. Retrieved 29 September 2008. 
          224. -
          225. ^ "Who soundtrack soon". BBC. 17 July 2006. Retrieved 4 August 2006. [dead link]
            -"Silva Screen announces Doctor Who CD release date". silvascreen.co.uk. 1 November 2006. Archived from the original on 12 December 2006. Retrieved 4 December 2006. 
          226. -
          227. ^ "DOCTOR WHO – SERIES 4 Murray Gold". Silva Screen Music. Retrieved 6 September 2013. 
          228. -
          229. ^ "DOCTOR WHO: SERIES 4-THE SPECIALS Murray Gold". Silva Screen Music. Retrieved 6 September 2013. 
          230. -
          231. ^ "Doctor Who Series 5 Original TV Soundtrack (Music CD)". BBC. Retrieved 6 September 2013. 
          232. -
          233. ^ "Doctor Who: A Christmas Carol (Soundtrack)". BBC. Retrieved 6 September 2013. 
          234. -
          235. ^ "Doctor Who: Series 6 (Soundtrack)". BBC. Retrieved 6 September 2013. 
          236. -
          237. ^ a b c d e Hilton, Matt (16 July 2008). "Doctor Who — Top Chart Placing – 1963–2008". Doctor Who News Page (Outpost Gallifrey). Retrieved 16 July 2008. [dead link];Hilton, Matt (11 January 2008). "Doctor Who Top Ratings: 1963–2007". Doctor Who News Page. Outpost Gallifrey. Archived from the original on 15 March 2008. Retrieved 17 July 2008. 
          238. -
          239. ^ Marlborough, Douglas (28 December 1964). "Dead, but they won't lie down" (REPRINT, HOSTED ON DOCTOR WHO CUTTINGS ARCHIVE). Daily Mail (London). Retrieved 16 July 2008. [dead link]
          240. -
          241. ^ "Weekly Viewing Summary: Terrestrial Top 30 – Week ending 6 July 2008". Broadcasters' Audience Research Board. 16 July 2008. Retrieved 16 July 2008. [dead link]
          242. -
          243. ^ Hilton, Matt (16 July 2008). "Journey's End: Officially Number One". Doctor Who News Page. Outpost Gallifrey. Retrieved 16 July 2008. [dead link]
          244. -
          245. ^ Wright, Mark (1 November 2007). "These sci-fi people vote". The Stage. Retrieved 9 April 2009. 
          246. -
          247. ^ Sweney, Mark (8 July 2008). "Profits grow at BBC Worldwide". The Guardian (London). Retrieved 8 July 2008. 
          248. -
          249. ^ O'Connor, Gavin (13 July 2008). "Daleks speak to all nations". Wales on Sunday. Archived from the original on 15 July 2008. Retrieved 13 July 2008. 
          250. -
          251. ^ "Canada: Runaway Bride and Series Three on CBC". Canadian Broadcasting Corporation. Retrieved 9 June 2007. [dead link]
          252. -
          253. ^ "Sci Fi on Air Schedule". Scifi.com. Archived from the original on 11 June 2007. 
          254. -
          255. ^ "'Doctor Who' series 4, 'Sarah Jane' Travel to Sci Fi". Zap2it. Retrieved 4 February 2008. [dead link]
          256. -
          257. ^ "Series Four Starts 19 September on CBC". dwin.org. Retrieved 22 May 2008. [dead link]
          258. -
          259. ^ "Doctor Who: The Next Doctor". Spacecast.com. Retrieved 5 March 2009. [dead link]
          260. -
          261. ^ "Turning Japanese". BBC. 30 June 2006. Archived from the original on 6 July 2007. Retrieved 27 October 2013. 
          262. -
          263. ^ Clements, Jonathan (March 2007). "Anime Pulse: Soundalikes". NEO (30). p. 20. 
          264. -
          265. ^ "BBC classic series laserdiscs @ The TARDIS Library (Doctor Who books, DVDs, videos & audios)". Timelash.com. Retrieved 30 July 2011. 
          266. -
          267. ^ "Matt Smith is the eleventh, and youngest, actor to play Doctor Who". News (London: The Daily Telegraph (online)). 5 January 2009. Retrieved 15 June 2011. 
          268. -
          269. ^ Dawtrey, Adam (14 November 2011). "Yates to direct bigscreen 'Doctor Who'". Variety. Retrieved 14 November 2011. 
          270. -
          271. ^ Sperling, Daniel (2 December 2011). "'Doctor Who' Movie Will Not Be A Reboot Says Moffat". Digital Spy. Retrieved 2 December 2011. 
          272. -
          273. ^ "Doctor Who movie will star Matt Smith if it gets made, says Steven Moffat". Metro. Retrieved 2 December 2011. 
          274. -
          275. ^ Lofficier, Jean-Marc (1997). The Nth Doctor. London: Virgin Publishing. p. 9. ISBN 0-426-20499-9. 
            -Bailey, Shaun (Producer); Kalangis, Johnny (Director) (2004). The Planet of the Doctor, Part 6: Doctor Who & Culture II (QUICKTIME OR WINDOWS MEDIA) (Documentary). Toronto: CBC Television. Retrieved 9 April 2009. [dead link]
            -"Planet of the Doctor". CBC Television. Archived from the original on 30 April 2008. Retrieved 9 April 2009. 
          276. -
          277. ^ Walker, Stephen James (2007). Inside the Hub. Tolworth, Surrey: Telos Publishing. p. 101. ISBN 978-1-84583-013-7. 
          278. -
          279. ^ "Doctor Who spin-off made in Wales". BBC News. 17 October 2005. Retrieved 24 April 2006. 
          280. -
          281. ^ "Team Torchwood". BBC. 24 February 2006. Archived from the original on 20 July 2007. Retrieved 24 April 2006. 
          282. -
          283. ^ "Russell T Davies creates new series for CBBC, starring Doctor Who's Sarah Jane Smith" (Press release). BBC. 14 September 2006. Retrieved 14 September 2006. 
          284. -
          285. ^ "Who's a Toon?". BBC Doctor Who website. 26 January 2007. Retrieved 26 January 2007. [dead link]
          286. -
          287. ^ "Wire star set for Dr Who cartoon". BBC News. 9 October 2009. Retrieved 6 January 2010. 
          288. -
          289. ^ "Doctor Who dog K9 gets spin-off". BBC News. 25 April 2006. Retrieved 26 July 2006. 
          290. -
          291. ^ "New Doctor Who Spin off ... Counter-Measures". Big Finish. 20 October 2011. Archived from the original on 22 October 2011. Retrieved 26 October 2013. 
          292. -
          293. ^ "The Five Doctors Serial 6K". drwhoguide.com. Retrieved 24 October 2013. 
          294. -
          295. ^ Shaun Lyon et al. (31 March 2007). "The Five Doctors". Outpost Gallifrey. Archived from the original on 3 May 2008. Retrieved 24 October 2013. 
          296. -
          297. ^ Sullivan, Shannon (7 August 2007). "The Five Doctors". A Brief History of Time Travel. Retrieved 24 October 2013. 
          298. -
          299. ^ "Doctor Who For Comic Relief – Exclusive". SFX. 2 March 2011. Retrieved 6 March 2011. 
          300. -
          301. ^ Mark Perry, Kevin Connelly and Phil Cornwell (2005). Dead Ringers meets Doctor Who – Comedy Greats – BBC. BBC. Event occurs at 0:00–1:30. 
          302. -
          303. ^ Sideshow Bob's Last Gleaming. 20th Century Fox Television. 26 November 1995. Event occurs at 11:29. 
          304. -
          305. ^ Möbius Dick. 20th Century Fox Television. 4 August 2011. Event occurs at 20:20. 
          306. -
          307. ^ All the Presidents' Heads. 20th Century Fox Television. 28 July 2011. Event occurs at 5:50. 
          308. -
          309. ^ "Random Doctor Who References in American TV Shows". An American View of British Science Fiction. 23 April 2012. Retrieved 27 August 2013. 
          310. -
          311. ^ Paolini, Christopher (20 September 2008). "Shadows of the Past". Brisingr (Hardcover) (1st ed.). New York: Alfred A. Knopf. pp. 204, 761. ISBN 0-375-82672-6. 'Bending over, Eragon read, Adrift upon the sea of time, the lonely god wanders from shore to distant shore, upholding the laws of the stars above.‍ '​ and in acknowledgments 'Also, for those who understood the reference to a 'lonely god' when Eragon and Arya sitting around the campfire, my only excuse is that the Doctor can travel everywhere, even alternate realities. Hey, I'm a fan too!' 
          312. -
          313. ^ "Man in the Bar, the". The Errantry Concordance. Diane Duane. 25 March 2005. Retrieved 5 July 2007. 
          314. -
          315. ^ "Doctor who Love in Rock Band". flickr. zerolives. 20 November 2007. Retrieved 24 December 2007. 
          316. -
          317. ^ Nathan, Sarah (4 December 2007). "From Square to eternity". The Sun (London). Retrieved 7 May 2009. 
          318. -
          319. ^ Illingsworth, Leslie Gilbert (25 November 1964). "The Degaullek (France's leader, General De Gaulle, is caricatured as a Dalek)" (REPRINT AT THE BRITISH CARTOON ARCHIVE). Daily Mail (London). Retrieved 15 March 2014. 
          320. -
          321. ^ "This Modern World". The Week that Was. Tom Tomorrow. 10 June 2008. Retrieved 15 March 2014. 
          322. -
          323. ^ "The essence of the Oxford English Dictionary". 5 September 2002. Retrieved 15 May 2009. 
          324. -
          325. ^ "The Five(ish) Doctors Reboot", BBC. Retrieved 23 November 2013
          326. -
          327. ^ "Doctor Who". Doctor Who. 
          328. -
          329. ^ 'Doctor Who: Legacy' Keeps Getting Updated as 10th Anniversary of 'Dr. Who' Show Approaches. Retrieved 26 February 2015.
          330. -
          331. ^ http://www.telegraph.co.uk/technology/video-games/video-game-news/11597598/Doctor-Who-revealed-for-Lego-Dimensions.html
          332. -
          333. ^ Davies, Russell T. (2005). Doctor Who Magazine (356):[page needed].  Missing or empty |title= (help)
          334. -
          335. ^ "Doctor Who scoops two TV awards". News (BBC). 21 January 2010. Retrieved 1 April 2010. 
          336. -
          337. ^ Sperling, Daniel (26 January 2011). "National Television Awards 2011 – Winners". Digital Spy. Retrieved 16 August 2012. 
          338. -
          339. ^ 72nd Annual Peabody Awards, May 2013.
          340. -
          341. ^ "Dr Who 'longest-running sci-fi'". BBC News. 28 September 2006. Retrieved 30 September 2006. 
          342. -
          343. ^ Miller, Liz Shannon (26 July 2009). "'Doctor Who' Honored by Guinness — Entertainment News, TV News, Media". Variety. Retrieved 23 November 2009. 
          344. -
          345. ^ "GUINNESS WORLD RECORD FOR THE DAY OF THE DOCTOR". Doctor Who website. 24 November 2013. Retrieved 24 November 2013. 
          346. -
          347. ^ Culf, Andrew (4 November 1996). "Viewers spurn TV's golden age in poll of small screen classics as the BBC fetes its 60th birthday". The Guardian. p. 4. 
          348. -
          349. ^ "Fawlty Towers tops TV hits". BBC News. 5 September 2000. Retrieved 18 March 2007. 
          350. -
          351. ^ "Doctor leads Bafta Cymru winners". BBC News. 22 April 2006. Retrieved 24 April 2006. 
          352. -
          353. ^ "Bafta glory for Channel 4's Boy A". BBC News. 12 May 2008. Retrieved 13 May 2008. 
          354. -
          355. ^ Cable, Simon (26 December 2009). "Top Gear takes decade's top show accolade". Daily Mail. Retrieved 6 February 2013. 
          356. -
          357. ^ "Winners announced". Mind. Retrieved 4 May 2011. Dr Who – "Vincent and the Doctor" (BBC One/BBC Wales). Richard Curtis writes this touching episode of Dr Who about the mental health experiences of the great artist Vincent van Gogh. [dead link]
          358. -
          359. ^ "Hugo and Campbell Awards Winners". Locus Online. 26 August 2006. Retrieved 27 August 2006. 
          360. -
          361. ^ "2007 Hugo Awards". World Science Fiction Society. 1 September 2007. Retrieved 1 September 2007. 
          362. -
          363. ^ "2008 Hugo Awards Announced". World Science Fiction Society. 9 August 2008. Retrieved 15 August 2007. 
          364. -
          365. ^ "2011 Hugo and Campbell Awards Nominees". Locus Magazine. 24 April 2011. Retrieved 24 April 2011. 
          366. -
          -
          -

          Cited texts[edit]

          -
          - -
          -

          Further reading[edit]

          -
            -
          • Matt Hills. Triumph of a Time Lord: Regenerating "Doctor Who" in the Twenty-First Century (I.B. Tauris, 2010) 261 pages. Discusses the revival of the BBC's Doctor Who in 2005 after it had been off the air as a regular series for more than 15 years; topics include the role of "fandom" in the sci-fi programme's return, and notions of "cult" and "mainstream" in television.
          • -
          • Tabloid Bintang Indonesia, Doctor Who Pengganti Chalkzone
          • -
          • Majalah GADIS, Kenalan Bareng Doctor Who, Ketemu Bareng 1st–11th Doctor
          • -
          -

          External links[edit]

          - - - - - - - - - - - - - - - - - - - -

          Official websites[edit]

          - - -

          Past official BBC websites[edit]

          - -

          Reference websites[edit]

          - - - - - - - - - - -
          Awards
          Preceded by
          -The Bill
          National Television Awards
          -Most Popular Drama

          -2005, 2006, 2007, 2008, 2010
          Succeeded by
          -Waterloo Road
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          -
          - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html b/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html deleted file mode 100644 index f7508d24c..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/doctor_who3.html +++ /dev/null @@ -1,7031 +0,0 @@ - - - - -List of Doctor Who serials - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - -
          -
          -
          - - -
          -
          - -
          Page semi-protected
          -
          -

          List of Doctor Who serials

          -
          -
          From Wikipedia, the free encyclopedia
          -
          -
          - Jump to: navigation, search -
          -

          Doctor Who is a British science fiction television programme produced by the BBC. As of 10 October 2015, 817 episodes of Doctor Who have aired. This includes one television movie, and encompasses 255 stories over 35 seasons. Additionally, four charity specials and two animated serials have also been aired. The show's high episode count resulted in Doctor Who holding the world record for the highest number of episodes for a science-fiction programme.[1]

          -

          Doctor Who ceased airing in 1989 and began again in 2005. Each story in the original series (1963–89) is a multi-episode serial, with two exceptions: the 1965 cutaway episode "Mission to the Unknown" and the 20th anniversary story The Five Doctors. The characters in the column after the serial titles indicate the code used by the production team to designate the serial, where applicable, and are followed either by the titles of the individual episodes where given or by the number of episodes otherwise. Unless otherwise noted, episodes in this period are 25 minutes long. During the early seasons of the programme most serials were linked together and one would usually lead directly into the next. Starting with the 2005 revival, the production team abandoned the traditional serial format for a largely self-contained episodic format with occasional multi-part stories and loose story arcs. Unless otherwise noted, the new episodes are 45 minutes long.

          -

          Due to the BBC's 1970s junking policy, 97 episodes from the 1960s are missing, with the result that 26 serials are incomplete, although all of these still exist as audio recordings, and some have been reconstructed. In the first two seasons and most of the third, each episode of a serial had an individual title; no serial had an overall on-screen title until The Savages. The serial titles given below are the most common title for the serials as a whole, used in sources such as the Doctor Who Reference Guide and the BBC's classic episode guide, and are generally those used for commercial release. The practice of individually titled episodes resurfaced with the show's 2005 revival, when Doctor Who‍‍ '​‍s serial nature was abandoned in favour of an episodic format.

          -

          The three-digit story numbers are not official designations but are merely to serve as a guide to where the story stands in the overall context of the programme. There is some dispute about, for example, whether to count Season 23's The Trial of a Time Lord as one or four serials,[2] and whether the uncompleted Shada should be included.[3] The numbering scheme used here reflects the current internal practice of describing "Planet of the Dead" (2009) as the 200th story, used in the official magazine's 407th issue.[4] Other sources, such as the Region 1 DVDs of classic Doctor Who serials, use different numbering schemes which diverge after the 108th story, The Horns of Nimon (1979/80).

          - -

          Overview

          -

          The following table dictates the season or series in question; singular specials are not included in episode counts or viewer totals.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Season/SeriesDoctor(s)SerialsEpisodesOriginally airedViewers (millions)
          First airedLast airedPremiereFinaleAverage
          Season 1First Doctor84223 November 196312 September 19644.46.47.96
          Season 293931 October 196424 July 19658.48.310.38
          Season 3104511 September 196516 July 19669.05.57.38
          Season 4 (c)First/Second Doctor94310 September 19661 July 19674.36.17.11
          Season 5Second Doctor7402 September 19671 June 19686.06.56.63
          Season 674410 August 196821 June 19696.15.06.57
          Season 7Third Doctor4253 January 197020 June 19708.45.57.18
          Season 85252 January 197119 June 19717.38.37.96
          Season 95261 January 197224 June 19729.87.68.48
          Season 1052630 December 197223 June 19739.67.08.98
          Season 1152615 December 19738 June 19748.78.98.78
          Season 12Fourth Doctor52028 December 197410 May 197510.19.010.14
          Season 1362630 August 19756 March 19767.510.910.08
          Season 146264 September 19762 April 19779.510.411.17
          Season 156263 September 197711 March 19788.410.58.91
          Season 16[note 1]6262 September 197824 February 19798.18.58.56
          Season 175[note 2]201 September 197912 January 198013.58.811.22
          Season 1872830 August 198021 March 19815.16.75.81
          Season 19Fifth Doctor7264 January 198230 March 19829.68.99.30
          Season 206224 January 198316 March 19837.27.557.00
          Season 21 (c)Fifth/Sixth Doctor7245 January 198430 March 19847.257.18.37
          Season 22Sixth Doctor6135 January 198530 March 19858.057.557.17
          Season 23[note 3]4146 September 19866 December 19864.355.04.83
          Season 24Seventh Doctor4147 September 19877 December 19874.635.074.98
          Season 254145 October 19884 January 19895.355.455.35
          Season 264146 September 19896 December 19893.654.94.19
          TV movieEighth Doctor1112 May 1996N/A9.089.089.08
          Series 1Ninth Doctor101326 March 200518 June 200510.816.917.31
          Series 2Tenth Doctor101315 April 20068 July 20068.628.227.64
          Series 391331 March 200730 June 20078.718.617.54
          Series 410135 April 20085 July 20089.1410.578.04
          Specials4525 December 20081 January 201013.1012.2711.50
          Series 5Eleventh Doctor10133 April 201026 June 201010.096.707.73
          Series 6111323 April 20111 October 20118.867.677.51
          Series 713131 September 201218 May 20138.337.457.44
          Specials2223 November 201325 December 201312.8011.1411.97
          Series 8Twelfth Doctor111223 August 20148 November 20149.177.607.26
          Series 9812[5]19 September 20155 December 2015[6]6.54TBDTBD
          -

          First Doctor

          -

          The first incarnation of the Doctor was portrayed by William Hartnell. During Hartnell's tenure, the episodes was a mixture of stories set on earth of the future with extraterrestrial influence, on alien planets and in historical events without extraterrestrial influence, such as Marco Polo, one of the lost episodes. In his last story, The Tenth Planet, the Doctor gradually grew weaker to the point of collapsing at the end of the fourth episode, leading to his regeneration.

          -

          Season 1 (1963–64)

          -
          Main article: Doctor Who (season 1)
          -

          Verity Lambert was producer with David Whitaker serving as script editor.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0011An Unearthly Child
          -"An Unearthly Child"
          -"The Cave of Skulls"
          -"The Forest of Fear"
          -"The Firemaker"
          Waris HusseinAnthony Coburn
          -23 November 1963
          -30 November 1963
          -7 December 1963
          -14 December 1963
          A
          -4.4
          -5.9
          -6.9
          -6.4

          -63
          -59
          -56
          -55
          0022The Daleks
          -"The Dead Planet"
          -"The Survivors"
          -"The Escape"
          -"The Ambush"
          -"The Expedition"
          -"The Ordeal"
          -"The Rescue"
          Richard Martin and Christopher BarryTerry Nation
          -21 December 1963
          -28 December 1963
          -4 January 1964
          -11 January 1964
          -18 January 1964
          -25 January 1964
          -1 February 1964
          B
          -6.9
          -6.4
          -8.9
          -9.9
          -9.9
          -10.4
          -10.4

          -59
          -58
          -63
          -63
          -63
          -63
          -65
          0033The Edge of Destruction
          -"The Edge of Destruction"
          -"The Brink of Disaster"
          Richard Martin
          -& Frank Cox
          David Whitaker
          -8 February 1964
          -15 February 1964
          C
          -10.4
          -9.9

          -61
          -60
          0044Marco Polo
          -"The Roof of the World"
          -"The Singing Sands"
          -"Five Hundred Eyes"
          -"The Wall of Lies"
          -"Rider from Shang-Tu"
          -"Mighty Kublai Khan"
          -"Assassin at Peking"
          Waris Hussein and John CrockettJohn Lucarotti
          -22 February 1964
          -29 February 1964
          -7 March 1964
          -14 March 1964
          -21 March 1964
          -28 March 1964
          -4 April 1964
          D
          -9.4
          -9.4
          -9.4
          -9.9
          -9.4
          -8.4
          -10.4

          -63
          -62
          -62
          -60
          -59
          -59
          -59
          0055The Keys of Marinus
          -"The Sea of Death"
          -"The Velvet Web"
          -"The Screaming Jungle"
          -"The Snows of Terror"
          -"Sentence of Death"
          -"The Keys of Marinus"
          John GorrieTerry Nation
          -11 April 1964
          -18 April 1964
          -25 April 1964
          -2 May 1964
          -9 May 1964
          -16 May 1964
          E
          -9.9
          -9.4
          -9.9
          -10.4
          -7.9
          -6.9

          -62
          -60
          -61
          -60
          -61
          -63
          0066The Aztecs
          -"The Temple of Evil"
          -"The Warriors of Death"
          -"The Bride of Sacrifice"
          -"The Day of Darkness"
          John CrockettJohn Lucarotti
          -23 May 1964
          -30 May 1964
          -6 June 1964
          -13 June 1964
          F
          -7.4
          -7.4
          -7.9
          -7.4

          -62
          -62
          -57
          -58
          0077The Sensorites
          -"Strangers in Space"
          -"The Unwilling Warriors"
          -"Hidden Danger"
          -"A Race Against Death"
          -"Kidnap"
          -"A Desperate Venture"
          Mervyn Pinfield and Frank CoxPeter R. Newman
          -20 June 1964
          -27 June 1964
          -11 July 1964
          -18 July 1964
          -25 July 1964
          -1 August 1964
          G
          -7.9
          -6.9
          -7.4
          -5.5
          -6.9
          -6.9

          -59
          -59
          -56
          -60
          -57
          -57
          0088The Reign of Terror
          -"A Land of Fear"
          -"Guests of Madame Guillotine"
          -"A Change of Identity"
          -"The Tyrant of France"
          -"A Bargain of Necessity"
          -"Prisoners of Conciergerie"
          Henric Hirsch and John GorrieDennis Spooner
          -8 August 1964
          -15 August 1964
          -22 August 1964
          -29 August 1964
          -5 September 1964
          -12 September 1964
          H
          -6.9
          -6.9
          -6.9
          -6.4
          -6.9
          -6.4

          -58
          -54
          -55
          -53
          -53
          -55
          -

          ^† Episodes are missing

          -

          Season 2 (1964–65)

          -
          Main article: Doctor Who (season 2)
          -

          Dennis Spooner replaced David Whitaker as script editor after The Dalek Invasion of Earth, and edited the remainder of the season apart from The Time Meddler, which was edited by Donald Tosh.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0091Planet of Giants
          -"Planet of Giants"
          -"Dangerous Journey"
          -"Crisis"
          Mervyn Pinfield and Douglas CamfieldLouis Marks
          -31 October 1964
          -7 November 1964
          -14 November 1964
          J
          -8.4
          -8.4
          -8.9

          -57
          -58
          -59
          0102The Dalek Invasion of Earth
          -"World's End"
          -"The Daleks"
          -"Day of Reckoning"
          -"The End of Tomorrow"
          -"The Waking Ally"
          -"Flashpoint"
          Richard MartinTerry Nation
          -21 November 1964
          -28 November 1964
          -5 December 1964
          -12 December 1964
          -19 December 1964
          -26 December 1964
          K
          -11.4
          -12.4
          -11.9
          -11.9
          -11.4
          -12.4

          -63
          -59
          -59
          -59
          -58
          -63
          0113The Rescue
          -"The Powerful Enemy"
          -"Desperate Measures"
          Christopher BarryDavid Whitaker
          -2 January 1965
          -9 January 1965
          L
          -12.0
          -13.0

          -57
          -59
          0124The Romans
          -"The Slave Traders"
          -"All Roads Lead to Rome"
          -"Conspiracy"
          -"Inferno"
          Christopher BarryDennis Spooner
          -16 January 1965
          -23 January 1965
          -30 January 1965
          -6 February 1965
          M
          -13.0
          -11.5
          -10.0
          -12.0

          -53
          -51
          -50
          -50
          0135The Web Planet
          -"The Web Planet"
          -"The Zarbi"
          -"Escape to Danger"
          -"Crater of Needles"
          -"Invasion"
          -"The Centre"
          Richard MartinBill Strutton
          -13 February 1965
          -20 February 1965
          -27 February 1965
          -6 March 1965
          -13 March 1965
          -20 March 1965
          N
          -13.5
          -12.5
          -12.5
          -13.0
          -12.0
          -11.5

          -56
          -53
          -53
          -49
          -48
          -42
          0146The Crusade
          -"The Lion"
          -"The Knight of Jaffa"
          -"The Wheel of Fortune"
          -"The Warlords"
          Douglas CamfieldDavid Whitaker
          -27 March 1965
          -3 April 1965
          -10 April 1965
          -17 April 1965
          P
          -10.5
          -8.5
          -9.0
          -9.5

          -51
          -50
          -49
          -48
          0157The Space Museum
          -"The Space Museum"
          -"The Dimensions of Time"
          -"The Search"
          -"The Final Phase"
          Mervyn PinfieldGlyn Jones
          -24 April 1965
          -1 May 1965
          -8 May 1965
          -15 May 1965
          Q
          -10.5
          -9.2
          -8.5
          -8.5

          -61
          -53
          -56
          -49
          0168The Chase
          -"The Executioners"
          -"The Death of Time"
          -"Flight Through Eternity"
          -"Journey into Terror"
          -"The Death of Doctor Who"
          -"The Planet of Decision"
          Richard Martin and Douglas CamfieldTerry Nation
          -22 May 1965
          -29 May 1965
          -5 June 1965
          -12 June 1965
          -19 June 1965
          -26 June 1965
          R
          -10.0
          -9.5
          -9.0
          -9.5
          -9.0
          -9.5

          -57
          -56
          -55
          -54
          -56
          -57
          0179The Time Meddler
          -"The Watcher"
          -"The Meddling Monk"
          -"A Battle of Wits"
          -"Checkmate"
          Douglas CamfieldDennis Spooner
          -3 July 1965
          -10 July 1965
          -17 July 1965
          -24 July 1965
          S
          -8.9
          -8.8
          -7.7
          -8.3

          -57
          -49
          -53
          -54
          -

          ^† Episodes are missing

          -

          Season 3 (1965–66)

          -
          Main article: Doctor Who (season 3)
          -

          John Wiles replaced Verity Lambert as producer after Mission to the Unknown. Innes Lloyd, in turn, replaced Wiles after The Ark. Donald Tosh continued as script editor until The Massacre of St Bartholomew's Eve, which was also script-edited by his replacement, Gerry Davis. The practice of giving each individual episode a different title was abandoned after The Gunfighters, near the end of the season.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0181Galaxy 4
          -"Four Hundred Dawns"
          -"Trap of Steel"
          -"Air Lock"
          -"The Exploding Planet"
          Derek Martinus and Mervyn PinfieldWilliam Emms
          -11 September 1965
          -18 September 1965
          -25 September 1965
          -2 October 1965
          T
          -9.0
          -9.5
          -11.3
          -9.9

          -56
          -55
          -54
          -53
          0192"Mission to the Unknown"Derek MartinusTerry Nation9 October 1965T/A8.354
          0203The Myth Makers
          -"Temple of Secrets"
          -"Small Prophet, Quick Return"
          -"Death of a Spy"
          -"Horse of Destruction"
          Michael Leeston-SmithDonald Cotton
          -16 October 1965
          -23 October 1965
          -30 October 1965
          -6 November 1965
          U
          -8.3
          -8.1
          -8.7
          -8.3

          -48
          -51
          -49
          -52
          0214The Daleks' Master Plan
          -"The Nightmare Begins"
          -"Day of Armageddon"
          -"Devil's Planet"
          -"The Traitors"
          -"Counter Plot"
          -"Coronas of the Sun"
          -"The Feast of Steven"
          -"Volcano"
          -"Golden Death"
          -"Escape Switch"
          -"The Abandoned Planet"
          -"Destruction of Time"
          Douglas CamfieldTerry Nation and Dennis Spooner
          -13 November 1965
          -20 November 1965
          -27 November 1965
          -4 December 1965
          -11 December 1965
          -18 December 1965
          -25 December 1965
          -1 January 1966
          -8 January 1966
          -15 January 1966
          -22 January 1966
          -29 January 1966
          V
          -9.1
          -9.8
          -10.3
          -9.5
          -9.9
          -9.1
          -7.9
          -9.6
          -9.2
          -9.5
          -9.8
          -8.6

          -54
          -52
          -52
          -51
          -53
          -56
          -39
          -49
          -52
          -50
          -49
          -57
          0225The Massacre of St Bartholomew's Eve
          -"War of God"
          -"The Sea Beggar"
          -"Priest of Death"
          -"Bell of Doom"
          Paddy RussellJohn Lucarotti and Donald Tosh
          -5 February 1966
          -12 February 1966
          -19 February 1966
          -26 February 1966
          W
          -8.0
          -6.0
          -5.9
          -5.8

          -52
          -52
          -49
          -53
          0236The Ark
          -"The Steel Sky"
          -"The Plague"
          -"The Return"
          -"The Bomb"
          Michael ImisonPaul Erickson and Lesley Scott
          -5 March 1966
          -12 March 1966
          -19 March 1966
          -26 March 1966
          X
          -5.5
          -6.9
          -6.2
          -7.3

          -55
          -56
          -51
          -50
          0247The Celestial Toymaker
          -"The Celestial Toyroom"
          -"The Hall of Dolls"
          -"The Dancing Floor"
          -"The Final Test"
          Bill SellarsBrian Hayles and Donald Tosh
          -2 April 1966
          -9 April 1966
          -16 April 1966
          -23 April 1966
          Y
          -8.0
          -8.0
          -9.4
          -7.8

          -48
          -49
          -44
          -43
          0258The Gunfighters
          -"A Holiday for the Doctor"
          -"Don't Shoot the Pianist"
          -"Johnny Ringo"
          -"The OK Corral"
          Rex TuckerDonald Cotton
          -30 April 1966
          -7 May 1966
          -14 May 1966
          -21 May 1966
          Z
          -6.5
          -6.6
          -6.2
          -5.7

          -45
          -39
          -36
          -30
          0269The Savages
          -(all episodes missing)
          Christopher BarryIan Stuart Black
          -28 May 1966
          -4 June 1966
          -11 June 1966
          -18 June 1966
          AA
          -4.8
          -5.6
          -5.0
          -4.5

          -48
          -49
          -48
          -48
          02710The War MachinesMichael FergusonIan Stuart Black and Kit Pedler
          -25 June 1966
          -2 July 1966
          -9 July 1966
          -16 July 1966
          BB
          -5.4
          -4.7
          -5.3
          -5.5

          -49
          -45
          -44
          -39
          -

          ^† : Episode is missing

          -

          Season 4 (1966–67)

          -
          Main article: Doctor Who (season 4)
          -

          The Smugglers and The Tenth Planet were the last serials to star the First Doctor, his regeneration to the Second occurring in the latter. Peter Bryant joined as associate producer for The Faceless Ones, and replaced Gerry Davis as script editor for the last four episodes of The Evil of the Daleks.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          StorySerialTitleDirected byWritten byOriginal air dateProduction
          -code
          UK viewers
          -(million) [7]
          AI [7]
          0281The Smugglers
          -(all episodes missing)
          Julia SmithBrian Hayles10 September 1966
          -17 September 1966
          -24 September 1966
          -1 October 1966
          CC4.3
          -4.9
          -4.2
          -4.5
          47
          -45
          -43
          -43
          0292The Tenth Planet
          -(episode 4 missing)
          Derek MartinusKit Pedler and Gerry Davis8 October 1966
          -15 October 1966
          -22 October 1966
          -29 October 1966
          DD5.5
          -6.4
          -7.6
          -7.5
          50
          -48
          -48
          -47
          -

          Second Doctor

          -

          The Second Doctor was portrayed by Patrick Troughton, whose serials were more action-oriented than those of his predecessor. Additionally, after The Highlanders, stories moved away from the purely historical ones that featured during William Hartnell's tenure; instead, any historical tales also included a science fiction element. Patrick Troughton retained the role until the last episode of The War Games when members of the Doctor's race, the Time Lords, put him on trial for breaking the laws of time and forced him to regenerate.

          -

          Season 4 (1966–67) continued

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          StorySerialTitleDirected byWritten byOriginal air dateProduction
          -code
          UK viewers
          -(million) [7]
          AI [7]
          0303The Power of the Daleks
          -(all episodes missing)
          Christopher BarryDavid Whitaker and Dennis Spooner5 November 1966
          -12 November 1966
          -19 November 1966
          -26 November 1966
          -3 December 1966
          -10 December 1966
          EE7.9
          -7.8
          -7.5
          -7.8
          -8.0
          -7.8
          43
          -45
          -44
          -47
          -48
          -47
          0314The Highlanders
          -(all episodes missing)
          Hugh DavidElwyn Jones and Gerry Davis17 December 1966
          -24 December 1966
          -31 December 1966
          -7 January 1967
          FF6.7
          -6.8
          -7.4
          -7.3
          47
          -46
          -47
          -47
          0325The Underwater Menace
          -(episodes 1 & 4 missing)
          Julia SmithGeoffrey Orme14 January 1967
          -21 January 1967
          -28 January 1967
          -4 February 1967
          GG8.3
          -7.5
          -7.1
          -7.0
          48
          -46
          -45
          -47
          0336The Moonbase
          -(episodes 1 & 3 missing)
          Morris BarryKit Pedler11 February 1967
          -18 February 1967
          -25 February 1967
          -4 March 1967
          HH8.1
          -8.9
          -8.2
          -8.1
          50
          -49
          -53
          -58
          0347The Macra Terror
          -(all episodes missing)
          John DaviesIan Stuart Black11 March 1967
          -18 March 1967
          -25 March 1967
          -1 April 1967
          JJ8.0
          -7.9
          -8.5
          -8.4
          50
          -48
          -52
          -49
          0358The Faceless Ones
          -(episodes 2, 4, 5 & 6 missing)
          Gerry MillDavid Ellis and Malcolm Hulke8 April 1967
          -15 April 1967
          -22 April 1967
          -29 April 1967
          -6 May 1967
          -13 May 1967
          KK8.0
          -6.4
          -7.9
          -6.9
          -7.1
          -8.0
          51
          -50
          -53
          -55
          -55
          -52
          0369The Evil of the Daleks
          -(episodes 1, 3 - 7 missing)
          Derek MartinusDavid Whitaker20 May 1967
          -27 May 1967
          -3 June 1967
          -10 June 1967
          -17 June 1967
          -24 June 1967
          -1 July 1967
          LL8.1
          -7.5
          -6.1
          -5.3
          -5.1
          -6.8
          -6.1
          51
          -51
          -52
          -51
          -53
          -49
          -56
          -

          Season 5 (1967–68)

          -
          Main article: Doctor Who (season 5)
          -

          Victor Pemberton was script editor for The Tomb of the Cybermen, with Peter Bryant as producer. After this, Bryant resumed the role of script editor, with Innes Lloyd returning as producer, until The Web of Fear when Bryant took over from Lloyd as producer. Derrick Sherwin replaced Bryant as script editor at the same time.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0371The Tomb of the CybermenMorris BarryKit Pedler and Gerry Davis2 September 1967
          -9 September 1967
          -16 September 1967
          -23 September 1967
          MM6.0
          -6.4
          -7.2
          -7.4
          53
          -52
          -49
          -50
          0382The Abominable Snowmen
          -(Episodes 1, 3, 4, 5 & 6 missing)
          Gerald BlakeMervyn Haisman
          -and Henry Lincoln
          30 September 1967
          -7 October 1967
          -14 October 1967
          -21 October 1967
          -28 October 1967
          -4 November 1967
          NN6.3
          -6.0
          -7.1
          -7.1
          -7.2
          -7.4
          50
          -52
          -51
          -50
          -51
          -52
          0393The Ice Warriors
          -(Episodes 2 & 3 missing)
          Derek MartinusBrian Hayles11 November 1967
          -18 November 1967
          -25 November 1967
          -2 December 1967
          -9 December 1967
          -16 December 1967
          OO6.7
          -7.1
          -7.4
          -7.3
          -8.0
          -7.5
          52
          -52
          -51
          -51
          -50
          -51
          0404The Enemy of the WorldBarry LettsDavid Whitaker23 December 1967
          -30 December 1967
          -6 January 1968
          -13 January 1968
          -20 January 1968
          -27 January 1968
          PP6.8
          -7.6
          -7.1
          -7.8
          -6.9
          -8.3
          50
          -49
          -48
          -49
          -49
          -52
          0415The Web of Fear
          -(Episode 3 missing)
          Douglas CamfieldMervyn Haisman and Henry Lincoln3 February 1968
          -10 February 1968
          -17 February 1968
          -24 February 1968
          -2 March 1968
          -9 March 1968
          QQ7.2
          -6.8
          -7.0
          -8.4
          -8.0
          -8.3
          54
          -53
          -51
          -53
          -55
          -55
          0426Fury from the Deep
          -(All episodes missing)
          Hugh DavidVictor Pemberton16 March 1968
          -23 March 1968
          -30 March 1968
          -6 April 1968
          -13 April 1968
          -20 April 1968
          RR8.2
          -7.9
          -7.7
          -6.6
          -5.9
          -6.9
          55
          -55
          -56
          -56
          -56
          -57
          0437The Wheel in Space
          -(Episodes 1, 2, 4 & 5 missing)
          Tristan DeVere ColeDavid Whitaker and Kit Pedler27 April 1968
          -4 May 1968
          -11 May 1968
          -18 May 1968
          -25 May 1968
          -1 June 1968
          SS7.2
          -6.9
          -7.5
          -8.6
          -6.8
          -6.5
          57
          -60
          -55
          -56
          -57
          -62
          -

          Season 6 (1968–69)

          -
          Main article: Doctor Who (season 6)
          -

          Terrance Dicks took over from Derrick Sherwin as script editor from The Invasion, with Sherwin resuming the role for The Space Pirates. Derrick Sherwin took over as producer from Peter Bryant for The War Games.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0441The DominatorsMorris BarryNorman Ashby (Mervyn Haisman and Henry Lincoln)10 August 1968
          -17 August 1968
          -24 August 1968
          -31 August 1968
          -7 September 1968
          TT6.1
          -5.9
          -5.4
          -7.5
          -5.9
          52
          -55
          -55
          -51
          -53
          0452The Mind RobberDavid MaloneyPeter Ling and Derrick Sherwin14 September 1968
          -21 September 1968
          -28 September 1968
          -5 October 1968
          -12 October 1968
          UU6.6
          -6.5
          -7.2
          -7.3
          -6.7
          51
          -49
          -53
          -56
          -49
          0463The Invasion
          -(Episodes 1 & 4 missing)
          Douglas CamfieldDerrick Sherwin and Kit Pedler2 November 1968
          -9 November 1968
          -16 November 1968
          -23 November 1968
          -30 November 1968
          -7 December 1968
          -14 December 1968
          -21 December 1968
          VV7.3
          -7.1
          -7.1
          -6.4
          -6.7
          -6.5
          -7.2
          -7.0
          55
          -53
          -54
          -51
          -52
          -56
          -55
          -53
          0474The KrotonsDavid MaloneyRobert Holmes28 December 1968
          -4 January 1969
          -11 January 1969
          -18 January 1969
          WW9.0
          -8.4
          -7.5
          -7.1
          59
          -57
          -56
          -55
          0485The Seeds of DeathMichael FergusonBrian Hayles and Terrance Dicks25 January 1969
          -1 February 1969
          -8 February 1969
          -15 February 1969
          -22 February 1969
          -1 March 1969
          XX6.6
          -6.8
          -7.5
          -7.1
          -7.6
          -7.7
          57
          -59
          -55
          -55
          -57
          -59
          0496The Space Pirates
          -(Episodes 1, 3, 4, 5 & 6 missing)
          Michael HartRobert Holmes8 March 1969
          -15 March 1969
          -22 March 1969
          -29 March 1969
          -5 April 1969
          -12 April 1969
          YY5.8
          -6.8
          -6.4
          -5.8
          -5.5
          -5.3
          57
          -52
          -55
          -53
          -56
          -52
          0507The War GamesDavid MaloneyTerrance Dicks and Malcolm Hulke19 April 1969
          -26 April 1969
          -3 May 1969
          -10 May 1969
          -17 May 1969
          -24 May 1969
          -31 May 1969
          -7 June 1969
          -14 June 1969
          -21 June 1969
          ZZ5.5
          -6.3
          -5.1
          -5.7
          -5.1
          -4.2
          -4.9
          -3.5
          -4.1
          -5.0
          55
          -54
          -53
          -50
          -53
          -53
          -53
          -53
          -57
          -58
          -

          Third Doctor

          -

          The Third Doctor was portrayed by Jon Pertwee. Sentenced to exile on Earth and forcibly regenerated at the end of The War Games, the Doctor spent his time working for UNIT. After The Three Doctors, the Time Lords repealed his exile; however, the Doctor still worked closely with UNIT from time to time. The Third Doctor regenerated into his fourth incarnation as a result of radiation poisoning in the last moments of Planet of the Spiders.

          -

          Season 7 (1970)

          -
          Main article: Doctor Who (season 7)
          -

          Barry Letts took over as producer from Derrick Sherwin after Spearhead from Space. From this season onwards the programme was produced in colour. To accommodate the new production methods the number of episodes in a season was cut: season 6 has 44 episodes; season 7 has 25 episodes. The seasons would continue to have between 20 and 28 episodes until season 22.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0511Spearhead from SpaceDerek MartinusRobert Holmes3 January 1970
          -10 January 1970
          -17 January 1970
          -24 January 1970
          AAA8.4
          -8.1
          -8.3
          -8.1
          54
          -—
          -—
          -57
          0522Doctor Who and the SiluriansTimothy CombeMalcolm Hulke31 January 1970
          -7 February 1970
          -14 February 1970
          -21 February 1970
          -28 February 1970
          -7 March 1970
          -14 March 1970
          BBB8.8
          -7.3
          -7.5
          -8.2
          -7.5
          -7.2
          -7.5
          58
          -58
          -57
          -60
          -58
          -57
          -58
          0533The Ambassadors of DeathMichael FergusonDavid Whitaker, Trevor Ray and Malcolm Hulke21 March 1970
          -28 March 1970
          -4 April 1970
          -11 April 1970
          -18 April 1970
          -25 April 1970
          -2 May 1970
          CCC7.1
          -7.6
          -8.0
          -9.3
          -7.1
          -6.9
          -6.4
          60
          -61
          -59
          -58
          -—
          -61
          -62
          0544InfernoDouglas Camfield and Barry LettsDon Houghton9 May 1970
          -16 May 1970
          -23 May 1970
          -30 May 1970
          -6 June 1970
          -13 June 1970
          -20 June 1970
          DDD5.7
          -5.9
          -4.8
          -6.0
          -5.4
          -6.7
          -5.5
          61
          -61
          -60
          -60
          -—
          -58
          -60
          -

          Season 8 (1971)

          -
          Main article: Doctor Who (season 8)
          -

          This season forms a loose arc with the introduction of the Master, the villain in each of the season's storylines, and introduces the companion Jo Grant.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0551Terror of the AutonsBarry LettsRobert Holmes2 January 1971
          -9 January 1971
          -16 January 1971
          -23 January 1971
          EEE7.3
          -8.0
          -8.1
          -8.4
          0562The Mind of EvilTimothy CombeDon Houghton30 January 1971
          -6 February 1971
          -13 February 1971
          -20 February 1971
          -27 February 1971
          -6 March 1971
          FFF6.1
          -8.8
          -7.5
          -7.4
          -7.6
          -7.3
          0573The Claws of AxosMichael FergusonBob Baker and Dave Martin13 March 1971
          -20 March 1971
          -27 March 1971
          -3 April 1971
          GGG7.3
          -8.0
          -6.4
          -7.8
          0584Colony in SpaceMichael E. BriantMalcolm Hulke10 April 1971
          -17 April 1971
          -24 April 1971
          -1 May 1971
          -8 May 1971
          -15 May 1971
          HHH7.6
          -8.5
          -9.5
          -8.1
          -8.8
          -8.7
          0595The DæmonsChristopher BarryGuy Leopold (Robert Sloman and Barry Letts)22 May 1971
          -29 May 1971
          -5 June 1971
          -12 June 1971
          -19 June 1971
          JJJ9.2
          -8.0
          -8.1
          -8.1
          -8.3
          -

          Season 9 (1972)

          -
          Main article: Doctor Who (season 9)
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0601Day of the DaleksPaul BernardLouis Marks1 January 1972
          -8 January 1972
          -15 January 1972
          -22 January 1972
          KKK9.8
          -10.4
          -9.1
          -9.1
          0612The Curse of PeladonLennie MayneBrian Hayles29 January 1972
          -5 February 1972
          -12 February 1972
          -19 February 1972
          MMM10.3
          -11.0
          -7.8
          -8.4
          0623The Sea DevilsMichael E. BriantMalcolm Hulke26 February 1972
          -4 March 1972
          -11 March 1972
          -18 March 1972
          -25 March 1972
          -1 April 1972
          LLL6.4
          -9.7
          -8.3
          -7.8
          -8.3
          -8.5
          0634The MutantsChristopher BarryBob Baker and Dave Martin8 April 1972
          -15 April 1972
          -22 April 1972
          -29 April 1972
          -6 May 1972
          -13 May 1972
          NNN9.1
          -7.8
          -7.9
          -7.5
          -7.9
          -6.5
          0645The Time MonsterPaul BernardRobert Sloman and Barry Letts20 May 1972
          -27 May 1972
          -3 June 1972
          -10 June 1972
          -17 June 1972
          -24 June 1972
          OOO7.6
          -7.4
          -8.1
          -7.6
          -6.0
          -7.6
          -

          Season 10 (1972–73)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0651The Three DoctorsLennie MayneBob Baker and Dave Martin30 December 1972
          -6 January 1973
          -13 January 1973
          -20 January 1973
          RRR9.6
          -10.8
          -8.8
          -11.9
          0662Carnival of MonstersBarry LettsRobert Holmes27 January 1973
          -3 February 1973
          -10 February 1973
          -17 February 1973
          PPP9.5
          -9.0
          -9.0
          -9.2
          0673Frontier in SpacePaul BernardMalcolm Hulke24 February 1973
          -3 March 1973
          -10 March 1973
          -17 March 1973
          -24 March 1973
          -31 March 1973
          QQQ9.1
          -7.8
          -7.5
          -7.1
          -7.7
          -8.9
          0684Planet of the DaleksDavid MaloneyTerry Nation7 April 1973
          -14 April 1973
          -21 April 1973
          -28 April 1973
          -5 May 1973
          -12 May 1973
          SSS11.0
          -10.7
          -10.1
          -8.3
          -9.7
          -8.5
          0695The Green DeathMichael E. BriantRobert Sloman and Barry Letts19 May 1973
          -26 May 1973
          -2 June 1973
          -9 June 1973
          -16 June 1973
          -23 June 1973
          TTT9.2
          -7.2
          -7.8
          -6.8
          -8.3
          -7.0
          -

          Season 11 (1973–74)

          - -

          This season introduces the companion Sarah Jane Smith.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0701The Time WarriorAlan BromlyRobert Holmes15 December 1973
          -22 December 1973
          -29 December 1973
          -5 January 1974
          UUU8.7
          -7.0
          -6.6
          -10.6
          59
          -—
          -—
          -60
          0712Invasion of the DinosaursPaddy RussellMalcolm Hulke12 January 1974
          -19 January 1974
          -26 January 1974
          -2 February 1974
          -9 February 1974
          -16 February 1974
          WWW11.0
          -10.1
          -11.0
          -9.0
          -9.0
          -7.5
          62
          -—
          -63
          -—
          -—
          -62
          0723Death to the DaleksMichael E. BriantTerry Nation23 February 1974
          -2 March 1974
          -9 March 1974
          -16 March 1974
          XXX8.1
          -9.5
          -10.5
          -9.5
          61
          -—
          -61
          -62
          0734The Monster of PeladonLennie MayneBrian Hayles23 March 1974
          -30 March 1974
          -6 April 1974
          -13 April 1974
          -20 April 1974
          -27 April 1974
          YYY9.2
          -6.8
          -7.4
          -7.2
          -7.5
          -8.1
          0745Planet of the SpidersBarry LettsRobert Sloman and Barry Letts4 May 1974
          -11 May 1974
          -18 May 1974
          -25 May 1974
          -1 June 1974
          -8 June 1974
          ZZZ10.1
          -8.9
          -8.8
          -8.2
          -9.2
          -8.9
          58
          -60
          -57
          -—
          -—
          -56
          -

          Fourth Doctor

          -

          The Fourth Doctor was portrayed by Tom Baker. He is, to date, the actor who has played the Doctor on television for the longest time,[8] having held the role for seven seasons.

          -

          Season 12 (1974–75)

          - -

          Barry Letts served as producer for Robot, after which he was succeeded by Philip Hinchcliffe. Robert Holmes took over from Terrance Dicks as script editor. All serials in this season continue directly one after the other, tracing one single problematic voyage of the TARDIS crew. Despite the continuity, each serial is considered its own standalone story. This season also introduced the character of Harry Sullivan as a companion; this character was intended to undertake action scenes, during the period prior to Tom Baker being cast, when it was unclear how old the actor playing the new Doctor would be.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0751RobotChristopher BarryTerrance Dicks28 December 1974
          -4 January 1975
          -11 January 1975
          -18 January 1975
          4A10.8
          -10.7
          -10.1
          -9.0
          53
          -53
          -—
          -51
          0762The Ark in SpaceRodney BennettRobert Holmes25 January 1975
          -1 February 1975
          -8 February 1975
          -15 February 1975
          4C9.4
          -13.6
          -11.2
          -10.2
          0773The Sontaran ExperimentRodney BennettBob Baker and Dave Martin22 February 1975
          -1 March 1975
          4B11.0
          -10.5

          -55
          0784Genesis of the DaleksDavid MaloneyTerry Nation8 March 1975
          -15 March 1975
          -22 March 1975
          -29 March 1975
          -5 April 1975
          -12 April 1975
          4E10.7
          -10.5
          -8.5
          -8.8
          -9.8
          -9.1

          -57
          -—
          -58
          -57
          -56
          0795Revenge of the CybermenMichael E. BriantGerry Davis19 April 1975
          -26 April 1975
          -3 May 1975
          -10 May 1975
          4D9.5
          -8.3
          -8.9
          -9.4
          57
          -—
          -—
          -58
          -

          Season 13 (1975–76)

          - -

          During this season, Ian Marter (Harry Sullivan) left after Terror of the Zygons, but returned for a guest appearance in The Android Invasion. Terror of the Zygons also saw the last semi-regular appearance of Nicholas Courtney (Brigadier Lethbridge-Stewart) who would not return until Season 20 in Mawdryn Undead.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0801Terror of the ZygonsDouglas CamfieldRobert Banks Stewart30 August 1975
          -6 September 1975
          -13 September 1975
          -20 September 1975
          4F8.4
          -6.1
          -8.2
          -7.2
          59
          -—
          -54
          -—
          0812Planet of EvilDavid MaloneyLouis Marks27 September 1975
          -4 October 1975
          -11 October 1975
          -18 October 1975
          4H10.4
          -9.9
          -9.1
          -10.1

          -56
          -57
          -54
          0823Pyramids of MarsPaddy RussellStephen Harris (Lewis Greifer and Robert Holmes)25 October 1975
          -1 November 1975
          -8 November 1975
          -15 November 1975
          4G10.5
          -11.3
          -9.4
          -11.7

          -—
          -—
          -60
          0834The Android InvasionBarry LettsTerry Nation22 November 1975
          -29 November 1975
          -6 December 1975
          -13 December 1975
          4J11.9
          -11.3
          -12.1
          -11.4
          58
          -—
          -—
          -—
          0845The Brain of MorbiusChristopher BarryRobin Bland (Terrance Dicks and Robert Holmes)3 January 1976
          -10 January 1976
          -17 January 1976
          -24 January 1976
          4K9.5
          -9.3
          -10.1
          -10.2

          -—
          -57
          -—
          0856The Seeds of DoomDouglas CamfieldRobert Banks Stewart31 January 1976
          -7 February 1976
          -14 February 1976
          -21 February 1976
          -28 February 1976
          -6 March 1976
          4L11.4
          -11.4
          -10.3
          -11.1
          -9.9
          -11.5
          59
          -—
          -—
          -—
          -—
          -—
          -

          Season 14 (1976–77)

          - -

          Elizabeth Sladen (Sarah Jane Smith) left the series this season and was replaced by Louise Jameson (Leela). The season also saw the first story in which the Doctor did not have a companion, The Deadly Assassin.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0861The Masque of MandragoraRodney BennettLouis Marks4 September 1976
          -11 September 1976
          -18 September 1976
          -25 September 1976
          4M8.3
          -9.8
          -9.2
          -10.6
          58
          -56
          -—
          -56
          0872The Hand of FearLennie MayneBob Baker and Dave Martin2 October 1976
          -9 October 1976
          -16 October 1976
          -23 October 1976
          4N10.5
          -10.2
          -11.1
          -12.0

          -—
          -62
          -—
          0883The Deadly AssassinDavid MaloneyRobert Holmes30 October 1976
          -6 November 1976
          -13 November 1976
          -20 November 1976
          4P11.8
          -12.1
          -13.0
          -11.8

          -59
          -—
          -61
          0894The Face of EvilPennant RobertsChris Boucher1 January 1977
          -8 January 1977
          -15 January 1977
          -22 January 1977
          4Q10.7
          -11.1
          -11.3
          -11.7
          61
          -—
          -59
          -60
          0905The Robots of DeathMichael E. BriantChris Boucher29 January 1977
          -5 February 1977
          -12 February 1977
          -19 February 1977
          4R12.8
          -12.4
          -13.1
          -12.6
          62
          -—
          -—
          -57
          0916The Talons of Weng-ChiangDavid MaloneyRobert Holmes26 February 1977
          -5 March 1977
          -12 March 1977
          -19 March 1977
          -26 March 1977
          -2 April 1977
          4S11.3
          -9.8
          -10.2
          -11.4
          -10.1
          -9.3

          -—
          -—
          -60
          -—
          -58
          -

          Season 15 (1977–78)

          - -

          Graham Williams took over as producer from Philip Hinchcliffe. Robert Holmes was replaced as script editor by Anthony Read during The Sun Makers.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0921Horror of Fang RockPaddy RussellTerrance Dicks3 September 1977
          -10 September 1977
          -17 September 1977
          -24 September 1977
          4V6.8
          -7.1
          -9.8
          -9.9
          58
          -—
          -60
          -57
          0932The Invisible EnemyDerrick GoodwinBob Baker and Dave Martin1 October 1977
          -8 October 1977
          -15 October 1977
          -22 October 1977
          4T8.6
          -7.3
          -7.5
          -8.3

          -—
          -—
          -60
          0943Image of the FendahlGeorge Spenton-FosterChris Boucher29 October 1977
          -5 November 1977
          -12 November 1977
          -19 November 1977
          4X6.7
          -7.5
          -7.9
          -9.1

          -—
          -—
          -61
          0954The Sun MakersPennant RobertsRobert Holmes26 November 1977
          -3 December 1977
          -10 December 1977
          -17 December 1977
          4W8.5
          -9.5
          -8.9
          -8.4

          -—
          -68
          -59
          0965UnderworldNorman StewartBob Baker and Dave Martin7 January 1978
          -14 January 1978
          -21 January 1978
          -28 January 1978
          4Y8.9
          -9.1
          -8.9
          -11.7
          65
          -—
          -—
          -—
          0976The Invasion of TimeGerald BlakeDavid Agnew
          -(Graham Williams and Anthony Read)
          4 February 1978
          -11 February 1978
          -18 February 1978
          -25 February 1978
          -4 March 1978
          -11 March 1978
          4Z11.2
          -11.4
          -9.5
          -10.9
          -10.3
          -9.8
          56
          -—
          -—
          -—
          -—
          -—
          -

          Season 16 (1978–79)

          - -

          Douglas Adams took over as script editor from Anthony Read for The Armageddon Factor. Season 16 consists of one long story arc encompassing six separate, linked stories. This season is referred to by the umbrella title The Key to Time and has been released on DVD under this title.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          0981The Ribos OperationGeorge Spenton-FosterRobert Holmes2 September 1978
          -9 September 1978
          -16 September 1978
          -23 September 1978
          5A8.3
          -8.1
          -7.9
          -8.2
          59
          -—
          -—
          -67
          0992The Pirate PlanetPennant RobertsDouglas Adams30 September 1978
          -7 October 1978
          -14 October 1978
          -21 October 1978
          5B9.1
          -7.4
          -8.2
          -8.4
          61
          -—
          -64
          -64
          1003The Stones of BloodDarrol BlakeDavid Fisher28 October 1978
          -4 November 1978
          -11 November 1978
          -18 November 1978
          5C8.6
          -6.6
          -9.3
          -7.6

          -—
          -—
          -67
          1014The Androids of TaraMichael HayesDavid Fisher25 November 1978
          -2 December 1978
          -9 December 1978
          -16 December 1978
          5D9.5
          -10.1
          -8.9
          -9.0

          -65
          -—
          -66
          1025The Power of KrollNorman StewartRobert Holmes23 December 1978
          -30 December 1978
          -6 January 1979
          -13 January 1979
          5E6.5
          -12.4
          -8.9
          -9.9

          -—
          -—
          -63
          1036The Armageddon FactorMichael HayesBob Baker and Dave Martin20 January 1979
          -27 January 1979
          -3 February 1979
          -10 February 1979
          -17 February 1979
          -24 February 1979
          5F7.5
          -8.8
          -7.8
          -8.6
          -8.6
          -9.6
          65
          -—
          -—
          -—
          -—
          -66
          -

          Season 17 (1979–80)

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1041Destiny of the DaleksKen GrieveTerry Nation1 September 1979
          -8 September 1979
          -15 September 1979
          -22 September 1979
          5J13.0
          -12.7
          -13.8
          -14.4
          67
          -—
          -63
          -64
          1052City of DeathMichael HayesDavid Agnew
          -(Douglas Adams, Graham Williams and David Fisher)
          29 September 1979
          -6 October 1979
          -13 October 1979
          -20 October 1979
          5H12.4
          -14.1
          -15.4
          -16.1

          -64
          -—
          -64
          1063The Creature from the PitChristopher BarryDavid Fisher27 October 1979
          -3 November 1979
          -10 November 1979
          -17 November 1979
          5G9.3
          -10.8
          -10.2
          -9.6

          -67
          -—
          -—
          1074Nightmare of EdenAlan BromlyBob Baker24 November 1979
          -1 December 1979
          -8 December 1979
          -15 December 1979
          5K8.7
          -9.6
          -9.6
          -9.4

          -—
          -—
          -65
          1085The Horns of NimonKenny McBainAnthony Read22 December 1979
          -29 December 1979
          -5 January 1980
          -12 January 1980
          5L6.0
          -8.8
          -9.8
          -10.4

          -—
          -—
          -67
          6ShadaPennant RobertsDouglas AdamsUnaired[note 2]5M
          -

          Season 18 (1980–81)

          - -

          John Nathan-Turner replaced Graham Williams as producer. Barry Letts returned, as executive producer, for just this season. Christopher H. Bidmead replaced Douglas Adams as script editor. In a return to the format of early seasons, virtually all serials from Seasons 18 through 20 are linked together, often running directly into each other.

          -

          Season 18 forms a loose story arc dealing with the theme of entropy. Full Circle, State of Decay, and Warriors' Gate trace the Doctor's adventures in E-Space; they were released in both VHS and DVD boxsets with the umbrella title The E-Space Trilogy.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1091The Leisure HiveLovett BickfordDavid Fisher30 August 1980
          -6 September 1980
          -13 September 1980
          -20 September 1980
          5N5.9
          -5.0
          -5.0
          -4.5

          -—
          -—
          -65
          1102MeglosTerence DudleyJohn Flanagan
          -& Andrew McCulloch
          27 September 1980
          -4 October 1980
          -11 October 1980
          -18 October 1980
          5Q5.0
          -4.2
          -4.7
          -4.7
          61
          -64
          -—
          -63
          1113Full CirclePeter GrimwadeAndrew Smith25 October 1980
          -1 November 1980
          -8 November 1980
          -15 November 1980
          5R5.9
          -3.7
          -5.9
          -5.4

          -—
          -—
          -65
          1124State of DecayPeter MoffattTerrance Dicks22 November 1980
          -29 November 1980
          -6 December 1980
          -13 December 1980
          5P5.8
          -5.3
          -4.4
          -5.4

          -—
          -—
          -69
          1135Warriors' GatePaul Joyce
          -& Graeme Harper
          Stephen Gallagher3 January 1981
          -10 January 1981
          -17 January 1981
          -24 January 1981
          5S7.1
          -6.7
          -8.3
          -7.8
          59
          -—
          -—
          -59
          1146The Keeper of TrakenJohn BlackJohnny Byrne31 January 1981
          -7 February 1981
          -14 February 1981
          -21 February 1981
          5T7.6
          -6.1
          -5.2
          -6.1

          -—
          -—
          -63
          1157LogopolisPeter GrimwadeChristopher H. Bidmead28 February 1981
          -7 March 1981
          -14 March 1981
          -21 March 1981
          5V7.7
          -7.7
          -5.8
          -6.1

          -61
          -—
          -65
          -

          Fifth Doctor

          -

          The Fifth Doctor was portrayed by Peter Davison.

          -

          Season 19 (1982)

          - -

          Antony Root took over from Bidmead as script editor for Four to Doomsday and The Visitation (the first stories produced for season 19), with Eric Saward assuming the role for the remainder of the season. The show moved from its traditional once-weekly Saturday broadcast to being broadcast twice-weekly primarily on Monday and Tuesday, although there were regional variations to the schedule.

          -

          Castrovalva, together with the previous two serials, The Keeper of Traken and Logopolis, form a trilogy involving the return of the Master. They were released on DVD under the banner title New Beginnings.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1161CastrovalvaFiona CummingChristopher H. Bidmead4 January 1982
          -5 January 1982
          -11 January 1982
          -12 January 1982
          5Z9.1
          -8.6
          -10.2
          -10.4
          1172Four to DoomsdayJohn BlackTerence Dudley18 January 1982
          -19 January 1982
          -25 January 1982
          -26 January 1982
          5W8.4
          -8.8
          -8.9
          -9.4
          1183KindaPeter GrimwadeChristopher Bailey1 February 1982
          -2 February 1982
          -8 February 1982
          -9 February 1982
          5Y8.4
          -9.4
          -8.5
          -8.9
          1194The VisitationPeter MoffattEric Saward15 February 1982
          -16 February 1982
          -22 February 1982
          -23 February 1982
          5X9.1
          -9.3
          -9.9
          -10.1
          1205Black OrchidRon JonesTerence Dudley1 March 1982
          -2 March 1982
          6A9.9
          -10.1
          1216EarthshockPeter GrimwadeEric Saward8 March 1982
          -9 March 1982
          -15 March 1982
          -16 March 1982
          6B9.1
          -8.8
          -9.8
          -9.6
          1227Time-FlightRon JonesPeter Grimwade23 March 1982
          -24 March 1982
          -30 March 1982
          -31 March 1982
          6C10.0
          -8.5
          -8.9
          -8.1
          -

          Season 20 (1983)

          - -

          To commemorate the twentieth season, the stories in this season involve the return of previous villains. Mawdryn Undead, Terminus and Enlightenment involve the Black Guardian's plot to kill the Doctor; they were released individually on VHS and as a set on DVD as parts of The Black Guardian Trilogy. This season was broadcast twice weekly on Tuesday and Wednesday evenings on BBC1.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1231Arc of InfinityRon JonesJohnny Byrne3 January 1983
          -5 January 1983
          -11 January 1983
          -12 January 1983
          6E7.2
          -7.3
          -6.9
          -7.2
          69
          -70
          -67
          -66
          1242SnakedanceFiona CummingChristopher Bailey18 January 1983
          -19 January 1983
          -25 January 1983
          -26 January 1983
          6D6.7
          -7.7
          -6.6
          -7.4
          65
          -66
          -67
          -67
          1253Mawdryn UndeadPeter MoffattPeter Grimwade1 February 1983
          -2 February 1983
          -8 February 1983
          -9 February 1983
          6F6.5
          -7.5
          -7.4
          -7.7
          67
          -70
          -67
          -68
          1264TerminusMary RidgeStephen Gallagher15 February 1983
          -16 February 1983
          -22 February 1983
          -23 February 1983
          6G6.8
          -7.5
          -6.5
          -7.4
          65
          -67
          -64
          -67
          1275EnlightenmentFiona CummingBarbara Clegg1 March 1983
          -2 March 1983
          -8 March 1983
          -9 March 1983
          6H6.6
          -7.2
          -6.2
          -7.3
          67
          -65
          -68
          -70
          1286The King's DemonsTony VirgoTerence Dudley15 March 1983
          -16 March 1983
          6J5.8
          -7.2
          65
          -63
          129The Five DoctorsPeter MoffattTerrance Dicks25 November 1983[9]6K7.775
          -

          Season 21 (1984)

          - -

          Episodes were broadcast twice weekly on Thursday and Friday evenings, with Resurrection of the Daleks broadcast on two consecutive Wednesday nights. The Caves of Androzani saw the regeneration of the Fifth Doctor, and the season finale The Twin Dilemma was the first story of the Sixth Doctor.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          StorySerialTitleDirected byWritten byOriginal air dateProduction
          -code
          UK viewers
          -(million) [7]
          AI [7]
          1301Warriors of the DeepPennant RobertsJohnny Byrne5 January 1984
          -6 January 1984
          -12 January 1984
          -13 January 1984
          6L7.6
          -7.5
          -7.3
          -6.6
          65
          -64
          -62
          -65
          1312The AwakeningMichael Owen MorrisEric Pringle19 January 1984
          -20 January 1984
          6M7.9
          -6.6
          65
          -63
          1323FrontiosRon JonesChristopher H. Bidmead26 January 1984
          -27 January 1984
          -2 February 1984
          -3 February 1984
          6N8.0
          -5.8
          -7.8
          -5.6
          66
          -69
          -65
          -65
          1334Resurrection of the DaleksMatthew RobinsonEric Saward8 February 1984
          -15 February 1984
          6P7.3
          -8.0
          69
          -65
          1345Planet of FireFiona CummingPeter Grimwade23 February 1984
          -24 February 1984
          -1 March 1984
          -2 March 1984
          6Q7.4
          -6.1
          -7.4
          -7.0
          1356The Caves of AndrozaniGraeme HarperRobert Holmes8 March 1984
          -9 March 1984
          -15 March 1984
          -16 March 1984
          6R6.9
          -6.6
          -7.8
          -7.8
          65
          -—
          -65
          -68
          -

          Sixth Doctor

          -

          The Sixth Doctor was portrayed by Colin Baker.

          -

          Season 21 (1984) continued

          - - - - - - - - - - - - - - - - - - - - - - - -
          StorySerialTitleDirected byWritten byOriginal air dateProduction
          -code
          UK viewers
          -(million) [7]
          AI [7]
          1367The Twin DilemmaPeter MoffattAnthony Steven22 March 1984
          -23 March 1984
          -29 March 1984
          -30 March 1984
          6S7.6
          -7.4
          -7.0
          -6.3
          61
          -66
          -59
          -67
          -

          Season 22 (1985)

          - -

          The series moved back to once-weekly Saturday broadcasts. All episodes were 45 minutes long, though they also exist in 25-minute versions. Although there were now only 13 episodes in the season, the total running time remained approximately the same as in previous seasons since the episodes were almost twice as long.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1371Attack of the CybermenMatthew RobinsonPaula Moore5 January 1985
          -12 January 1985
          6T8.9
          -7.2
          61
          -65
          1382Vengeance on VarosRon JonesPhilip Martin19 January 1985
          -26 January 1985
          6V7.2
          -7.0
          63
          -65
          1393The Mark of the RaniSarah HellingsPip and Jane Baker2 February 1985
          -9 February 1985
          6X6.3
          -7.3
          64
          -64
          1404The Two DoctorsPeter MoffattRobert Holmes16 February 1985
          -23 February 1985
          -2 March 1985
          6W6.6
          -6.0
          -6.9
          65
          -62
          -65
          1415TimelashPennant RobertsGlen McCoy9 March 1985
          -16 March 1985
          6Y6.7
          -7.4
          66
          -64
          1426Revelation of the DaleksGraeme HarperEric Saward23 March 1985
          -30 March 1985
          6Z7.4
          -7.7
          67
          -65
          -

          Season 23 (1986)

          - -

          After an 18-month production hiatus, the series returned. Eric Saward was script editor up to part eight, when Nathan-Turner unofficially took over script editing the remainder of the season because of Saward's departure. The whole season is titled as The Trial of a Time Lord, and is split into four segments. The segments are commonly referred to by their working titles[10] (listed below) but the season was broadcast as one fourteen-part story and the working titles did not appear on screen. Episode length returned to 25 minutes, but with only fourteen episodes in the season, making the total running time of this season (and subsequent seasons) just over half of the previous seasons, going back to season 7.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          143a1The Mysterious PlanetNicholas MallettRobert Holmes6 September 1986
          -13 September 1986
          -20 September 1986
          -27 September 1986
          7A4.9
          -4.9
          -3.9
          -3.7
          72
          -69
          -70
          -72
          143b2MindwarpRon JonesPhilip Martin4 October 1986
          -11 October 1986
          -18 October 1986
          -25 October 1986
          7B4.8
          -4.6
          -5.1
          -5.0
          71
          -69
          -66
          -72
          143c3Terror of the VervoidsChris CloughPip and Jane Baker1 November 1986
          -8 November 1986
          -15 November 1986
          -22 November 1986
          7C5.2
          -4.6
          -5.3
          -5.3
          66
          -69
          -69
          -69
          143d4The Ultimate FoeChris CloughRobert Holmes
          -Pip and Jane Baker
          29 November 1986
          -6 December 1986
          7C4.4
          -5.6
          69
          -69
          -

          Seventh Doctor

          -

          The Seventh Doctor was portrayed by Sylvester McCoy.

          -

          Season 24 (1987)

          - -

          Andrew Cartmel took over as script editor. This season was moved to a Monday schedule.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1441Time and the RaniAndrew MorganPip and Jane Baker7 September 1987
          -14 September 1987
          -21 September 1987
          -28 September 1987
          7D5.1
          -4.2
          -4.3
          -4.9
          58
          -63
          -57
          -59
          1452Paradise TowersNicholas MallettStephen Wyatt5 October 1987
          -12 October 1987
          -19 October 1987
          -26 October 1987
          7E4.5
          -5.2
          -5.0
          -5.0
          61
          -58
          -58
          -57
          1463Delta and the BannermenChris CloughMalcolm Kohll2 November 1987
          -9 November 1987
          -16 November 1987
          7F5.3
          -5.1
          -5.4
          63
          -60
          -60
          1474DragonfireChris CloughIan Briggs23 November 1987
          -30 November 1987
          -7 December 1987
          7G5.5
          -5.0
          -4.7
          61
          -61
          -64
          -

          Season 25 (1988–89)

          - -

          The series was moved to Wednesdays.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1481Remembrance of the DaleksAndrew MorganBen Aaronovitch5 October 1988
          -12 October 1988
          -19 October 1988
          -26 October 1988
          7H5.5
          -5.8
          -5.1
          -5.0
          68
          -69
          -70
          -72
          1492The Happiness PatrolChris CloughGraeme Curry2 November 1988
          -9 November 1988
          -16 November 1988
          7L5.3
          -4.6
          -5.3
          67
          -65
          -65
          1503Silver NemesisChris CloughKevin Clarke23 November 1988
          -30 November 1988
          -7 December 1988[12]
          7K6.1
          -5.2
          -5.2
          71
          -70
          -70
          1514The Greatest Show in the GalaxyAlan WareingStephen Wyatt14 December 1988
          -21 December 1988
          -28 December 1988
          -4 January 1989
          7J5.0
          -5.3
          -4.8
          -6.6
          68
          -66
          -69
          -64
          -

          Season 26 (1989)

          - -

          The final season continued to push the series towards a darker approach, focusing this time more on Ace's personal life as well as The Doctor's past and manipulations. This season set the tone for the Virgin New Adventures novels that followed.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Serial Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1521BattlefieldMichael KerriganBen Aaronovitch6 September 1989
          -13 September 1989
          -20 September 1989
          -27 September 1989
          7N3.1
          -3.9
          -3.6
          -4.0
          69
          -68
          -67
          -65
          1532Ghost LightAlan WareingMarc Platt4 October 1989
          -11 October 1989
          -18 October 1989
          7Q4.2
          -4.0
          -4.0
          68
          -68
          -64
          1543The Curse of FenricNicholas MallettIan Briggs25 October 1989
          -1 November 1989
          -8 November 1989
          -15 November 1989
          7M4.3
          -4.0
          -4.0
          -4.2
          67
          -68
          -68
          -68
          1554SurvivalAlan WareingRona Munro22 November 1989
          -29 November 1989
          -6 December 1989
          7P5.0
          -4.8
          -5.0
          69
          -69
          -71
          -

          Eighth Doctor

          -

          The Eighth Doctor was portrayed by Paul McGann. The movie is the only television appearance of this Doctor during his tenure. The only production title held by this story was Doctor Who. However, producer Philip Segal later suggested Enemy Within as an alternative title. Lacking any other specific name, many fans have adopted this to refer to the movie. Fan groups have also used other informal titles. The DVD release is titled Doctor Who: The Movie. In 2013, Paul McGann returned for the second television appearance of the Eighth Doctor in the minisode titled "The Night of the Doctor".

          -

          Television movie (1996)

          -
          Main article: Doctor Who (film)
          - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          156Doctor WhoGeoffrey SaxMatthew Jacobs12 May 1996 (Canada)
          -14 May 1996 (USA)
          -27 May 1996 (UK)
          TVM[note 4]9.0875
          -

          Ninth Doctor

          -

          In 2005, the BBC relaunched Doctor Who after a 16-year absence from episodic television, with Russell T Davies, Julie Gardner and Mal Young as executive producers, Phil Collinson as producer, and Christopher Eccleston taking the lead role of the Ninth Doctor.

          -

          The revival adheres to the original continuity. The new series is formatted to a 16:9 widescreen display ratio, and a standard episode length of 45 minutes. For the first time since the 1965/66 season each episode has an individual title, although most stories do not span more than one episode. The show also returned to its traditional Saturday evening slot.

          -

          Series 1 (2005)

          -
          Main article: Doctor Who (series 1)
          -

          The 2005 series constitutes a loose story arc, dealing with the consequences of the Time War and the mysterious Bad Wolf.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1571"Rose"Keith BoakRussell T Davies26 March 2005 (2005-03-26)1.110.8181
          1582"The End of the World"Euros LynRussell T Davies2 April 2005 (2005-04-02)1.27.9779
          1593"The Unquiet Dead"Euros LynMark Gatiss9 April 2005 (2005-04-09)1.38.8680
          1604"Aliens of London"Keith BoakRussell T Davies16 April 2005 (2005-04-16)1.47.6381
          5"World War Three"Keith BoakRussell T Davies23 April 2005 (2005-04-23)1.57.9882
          1616"Dalek"Joe AhearneRobert Shearman30 April 2005 (2005-04-30)1.68.6384
          1627"The Long Game"Brian GrantRussell T Davies7 May 2005 (2005-05-07)1.78.0181
          1638"Father's Day"Joe AhearnePaul Cornell14 May 2005 (2005-05-14)1.88.0683
          1649"The Empty Child"James HawesSteven Moffat21 May 2005 (2005-05-21)1.97.1184
          10"The Doctor Dances"James HawesSteven Moffat28 May 2005 (2005-05-28)1.106.8685
          16511"Boom Town"Joe AhearneRussell T Davies4 June 2005 (2005-06-04)1.117.6882
          16612"Bad Wolf"Joe AhearneRussell T Davies11 June 2005 (2005-06-11)1.126.8185
          13"The Parting of the Ways"Joe AhearneRussell T Davies18 June 2005 (2005-06-18)1.136.9189
          -

          Tenth Doctor

          -

          The Tenth Doctor was portrayed by David Tennant, who was cast before the first series aired.[16] Mal Young vacated his position as executive producer when he departed the BBC after Series 1. He was not replaced in that capacity.

          -

          Series 2 (2006)

          -
          Main article: Doctor Who (series 2)
          -

          The back-story for the spin-off series Torchwood is "seeded" in various episodes in the 2006 series. Each episode also has an accompanying online Tardisode.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          167"The Christmas Invasion"James HawesRussell T Davies25 December 2005 (2005-12-25)2X9.8484
          1681"New Earth"James HawesRussell T Davies15 April 2006 (2006-04-15)2.18.6285
          1692"Tooth and Claw"Euros LynRussell T Davies22 April 2006 (2006-04-22)2.29.2483
          1703"School Reunion"James HawesToby Whithouse29 April 2006 (2006-04-29)2.38.3185
          1714"The Girl in the Fireplace"Euros LynSteven Moffat6 May 2006 (2006-05-06)2.47.9084
          1725"Rise of the Cybermen"Graeme HarperTom MacRae13 May 2006 (2006-05-13)2.59.2286
          6"The Age of Steel"Graeme HarperTom MacRae20 May 2006 (2006-05-20)2.67.6386
          1737"The Idiot's Lantern"Euros LynMark Gatiss27 May 2006 (2006-05-27)2.76.7684
          1748"The Impossible Planet"James StrongMatt Jones3 June 2006 (2006-06-03)2.86.3285
          9"The Satan Pit"James StrongMatt Jones10 June 2006 (2006-06-10)2.96.0886
          17510"Love & Monsters"Dan ZeffRussell T Davies17 June 2006 (2006-06-17)2.106.6676
          17611"Fear Her"Euros LynMatthew Graham24 June 2006 (2006-06-24)2.117.1483
          17712"Army of Ghosts"Graeme HarperRussell T Davies1 July 2006 (2006-07-01)2.128.1986
          13"Doomsday"Graeme HarperRussell T Davies8 July 2006 (2006-07-08)2.138.2289
          -

          Series 3 (2007)

          -
          Main article: Doctor Who (series 3)
          -

          This series introduces Martha Jones and deals with the Face of Boe's final message, the mysterious Mr. Saxon, and the Doctor dealing with the loss of Rose Tyler. Susie Liggat was the producer for "Human Nature" and "The Family of Blood", with Phil Collinson credited as executive producer for those episodes.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          178"The Runaway Bride"Euros LynRussell T Davies25 December 2006 (2006-12-25)3X9.3584
          1791"Smith and Jones"Charles PalmerRussell T Davies31 March 2007 (2007-03-31)3.18.7188
          1802"The Shakespeare Code"Charles PalmerGareth Roberts7 April 2007 (2007-04-07)3.27.2387
          1813"Gridlock"Richard ClarkRussell T Davies14 April 2007 (2007-04-14)3.38.4185
          1824"Daleks in Manhattan"James StrongHelen Raynor21 April 2007 (2007-04-21)3.46.6986
          5"Evolution of the Daleks"James StrongHelen Raynor28 April 2007 (2007-04-28)3.56.9785
          1836"The Lazarus Experiment"Richard ClarkStephen Greenhorn5 May 2007 (2007-05-05)3.67.1986
          1847"42"Graeme HarperChris Chibnall19 May 2007 (2007-05-19)3.77.4185
          1858"Human Nature"Charles PalmerPaul Cornell26 May 2007 (2007-05-26)3.87.7486
          9"The Family of Blood"Charles PalmerPaul Cornell2 June 2007 (2007-06-02)3.97.2186
          18610"Blink"Hettie MacDonaldSteven Moffat9 June 2007 (2007-06-09)3.106.6287
          18711"Utopia"Graeme HarperRussell T Davies16 June 2007 (2007-06-16)3.117.8487
          12"The Sound of Drums"Colin TeagueRussell T Davies23 June 2007 (2007-06-23)3.127.5187
          13"Last of the Time Lords"Colin TeagueRussell T Davies30 June 2007 (2007-06-30)3.138.6188
          -

          Series 4 (2008)

          -
          Main article: Doctor Who (series 4)
          -

          This series explores the coincidences binding the Doctor and Donna together. Susie Liggat was the producer for "Planet of the Ood", "The Sontaran Stratagem", "The Poison Sky", "The Unicorn and the Wasp" and "Turn Left", with Phil Collinson credited as executive producer for those episodes. Phil Collinson left the position of producer at the end of the series.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          188"Voyage of the Damned"James StrongRussell T Davies25 December 2007 (2007-12-25)4X13.3186
          1891"Partners in Crime"James StrongRussell T Davies5 April 2008 (2008-04-05)4.19.1488
          1902"The Fires of Pompeii"Colin TeagueJames Moran12 April 2008 (2008-04-12)4.39.0487
          1913"Planet of the Ood"Graeme HarperKeith Temple19 April 2008 (2008-04-19)4.27.5087
          1924"The Sontaran Stratagem"Douglas MackinnonHelen Raynor26 April 2008 (2008-04-26)4.47.0687
          5"The Poison Sky"Douglas MackinnonHelen Raynor3 May 2008 (2008-05-03)4.56.5388
          1936"The Doctor's Daughter"Alice TroughtonStephen Greenhorn10 May 2008 (2008-05-10)4.67.3388
          1947"The Unicorn and the Wasp"Graeme HarperGareth Roberts17 May 2008 (2008-05-17)4.78.4186
          1958"Silence in the Library"Euros LynSteven Moffat31 May 2008 (2008-05-31)4.96.2789
          9"Forest of the Dead"Euros LynSteven Moffat7 June 2008 (2008-06-07)4.107.8489
          19610"Midnight"Alice TroughtonRussell T Davies14 June 2008 (2008-06-14)4.88.0586
          19711"Turn Left"Graeme HarperRussell T Davies21 June 2008 (2008-06-21)4.118.0988
          19812"The Stolen Earth"Graeme HarperRussell T Davies28 June 2008 (2008-06-28)4.128.7891
          13"Journey's End"Graeme HarperRussell T Davies5 July 2008 (2008-07-05)4.1310.5791
          -

          Specials (2008–10)

          - -

          From "Planet of the Dead", episodes were filmed in HD.[17] Susie Liggat produced "The Next Doctor", while Nikki Wilson produced "The Waters of Mars" and Tracie Simpson produced "Planet of the Dead" and The End of Time. For practical reasons, these specials continued to use Series 4 production codes.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          1991"The Next Doctor"Andy GoddardRussell T Davies25 December 2008 (2008-12-25)4.1413.1086
          2002"Planet of the Dead"James StrongRussell T Davies & Gareth Roberts11 April 2009 (2009-04-11)4.159.7588
          2013"The Waters of Mars"Graeme HarperRussell T Davies & Phil Ford15 November 2009 (2009-11-15)4.1610.3288
          2024–5The End of TimeEuros LynRussell T Davies25 December 2009 (2009-12-25)
          -1 January 2010 (2010-01-01)
          4.17
          -4.18
          12.04
          -12.27
          87
          -89
          -

          Eleventh Doctor

          -

          The Eleventh Doctor was portrayed by Matt Smith. Steven Moffat took over as head writer and executive producer after Russell T Davies stepped down. Julie Gardner also stepped down as executive producer and was replaced by Piers Wenger and Beth Willis.

          -

          Series 5 (2010)

          -
          Main article: Doctor Who (series 5)
          -

          Tracie Simpson and Peter Bennett shared producer duties for this series only, with Patrick Schweitzer co-producing with Simpson for "The Vampires of Venice" and "Vincent and the Doctor".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          2031"The Eleventh Hour"Adam SmithSteven Moffat3 April 2010 (2010-04-03)1.110.0986
          2042"The Beast Below"Andrew GunnSteven Moffat10 April 2010 (2010-04-10)1.28.4286
          2053"Victory of the Daleks"Andrew GunnMark Gatiss17 April 2010 (2010-04-17)1.38.2184
          2064"The Time of Angels"Adam SmithSteven Moffat24 April 2010 (2010-04-24)1.48.5987
          5"Flesh and Stone"Adam SmithSteven Moffat1 May 2010 (2010-05-01)1.58.5086
          2076"The Vampires of Venice"Jonny CampbellToby Whithouse8 May 2010 (2010-05-08)1.67.6886
          2087"Amy's Choice"Catherine MorsheadSimon Nye15 May 2010 (2010-05-15)1.77.5584
          2098"The Hungry Earth"Ashley WayChris Chibnall22 May 2010 (2010-05-22)1.86.4986
          9"Cold Blood"Ashley WayChris Chibnall29 May 2010 (2010-05-29)1.97.4985
          21010"Vincent and the Doctor"Jonny CampbellRichard Curtis5 June 2010 (2010-06-05)1.106.7686
          21111"The Lodger"Catherine MorsheadGareth Roberts12 June 2010 (2010-06-12)1.116.4487
          21212"The Pandorica Opens"Toby HaynesSteven Moffat19 June 2010 (2010-06-19)1.127.5788
          13"The Big Bang"Toby HaynesSteven Moffat26 June 2010 (2010-06-26)1.136.7089
          -

          Series 6 (2011)

          -
          Main article: Doctor Who (series 6)
          -

          The original transmission of series 6 was split into two parts, with the first seven episodes airing April to June 2011 and the final six from late August to October 2011. Sanne Wohlenberg continued as producer for the first block of filming, consisting of "The Doctor's Wife" and "Night Terrors". Marcus Wilson then took over as series producer, with Denise Paul producing "Closing Time".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date Production
          -code 
          UK viewers
          -(millions) [7]
          AI [7]
          213"A Christmas Carol"Toby HaynesSteven Moffat25 December 2010 (2010-12-25)2.X12.1183
          2141"The Impossible Astronaut"Toby HaynesSteven Moffat23 April 2011 (2011-04-23)2.18.8688
          2"Day of the Moon"Toby HaynesSteven Moffat30 April 2011 (2011-04-30)2.27.3087
          2153"The Curse of the Black Spot"Jeremy WebbStephen Thompson7 May 2011 (2011-05-07)2.97.8586
          2164"The Doctor's Wife"Richard ClarkNeil Gaiman14 May 2011 (2011-05-14)2.37.9787
          2175"The Rebel Flesh"Julian SimpsonMatthew Graham21 May 2011 (2011-05-21)2.57.3585
          6"The Almost People"Julian SimpsonMatthew Graham28 May 2011 (2011-05-28)2.66.7286
          2187"A Good Man Goes to War"Peter HoarSteven Moffat4 June 2011 (2011-06-04)2.77.5188
          2198"Let's Kill Hitler"Richard SeniorSteven Moffat27 August 2011 (2011-08-27)2.88.1085
          2209"Night Terrors"Richard ClarkMark Gatiss3 September 2011 (2011-09-03)2.47.0786
          22110"The Girl Who Waited"Nick HurranTom MacRae10 September 2011 (2011-09-10)2.107.6085
          22211"The God Complex"Nick HurranToby Whithouse17 September 2011 (2011-09-17)2.116.7786
          22312"Closing Time"Steve HughesGareth Roberts24 September 2011 (2011-09-24)2.126.9386
          22413"The Wedding of River Song"Jeremy WebbSteven Moffat1 October 2011 (2011-10-01)2.137.6786
          -

          Series 7 (2012–13)

          -
          Main article: Doctor Who (series 7)
          -

          Series 7 started with five episodes in late 2012, followed by a Christmas special and eight episodes in 2013. From this series on, the use of production codes were abandoned. The Christmas special had Steven Moffat, Wenger and Caroline Skinner as executive producers.[18] Beth Willis left the BBC and stepped down as executive producer after series 6[19] and Wenger also departed following the Christmas special, leaving Moffat and Skinner as executive producers for series 7.[20] Denise Paul produced "The Bells of Saint John", "The Rings of Akhaten", "Nightmare in Silver" and "The Name of the Doctor" with Marcus Wilson credited as series producer on those episodes.[citation needed]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date UK viewers
          -(millions) [7]
          AI [7]
          225"The Doctor, the Widow and the Wardrobe"Farren BlackburnSteven Moffat25 December 2011 (2011-12-25)10.7784
          2261"Asylum of the Daleks"Nick HurranSteven Moffat1 September 2012 (2012-09-01)8.3389
          2272"Dinosaurs on a Spaceship"Saul MetzsteinChris Chibnall8 September 2012 (2012-09-08)7.5787
          2283"A Town Called Mercy"Saul MetzsteinToby Whithouse15 September 2012 (2012-09-15)8.4285
          2294"The Power of Three"Douglas MackinnonChris Chibnall22 September 2012 (2012-09-22)7.6787
          2305"The Angels Take Manhattan"Nick HurranSteven Moffat29 September 2012 (2012-09-29)7.8288
          231"The Snowmen"Saul MetzsteinSteven Moffat25 December 20129.8787
          2326"The Bells of Saint John"Colm McCarthySteven Moffat30 March 2013 (2013-03-30)8.4487
          2337"The Rings of Akhaten"Farren BlackburnNeil Cross6 April 2013 (2013-04-06)7.4584
          2348"Cold War"Douglas MackinnonMark Gatiss13 April 2013 (2013-04-13)7.3784
          2359"Hide"Jamie PayneNeil Cross20 April 2013 (2013-04-20)6.6185
          23610"Journey to the Centre of the TARDIS"Mat KingStephen Thompson27 April 2013 (2013-04-27)6.5085
          23711"The Crimson Horror"Saul MetzsteinMark Gatiss4 May 2013 (2013-05-04)6.4785
          23812"Nightmare in Silver"Stephen WoolfendenNeil Gaiman11 May 2013 (2013-05-11)6.6484
          23913"The Name of the Doctor"Saul MetzsteinSteven Moffat18 May 2013 (2013-05-18)7.4588
          -

          Specials (2013)

          - -

          Following Caroline Skinner's departure, BBC Wales' Head of Drama, Faith Penhale, served as Executive Producer with Moffat for the 50th anniversary special;[21] Brian Minchin, previously a script editor in series 5, took over the role thereafter.[22] Marcus Wilson left the position of producer following the Christmas special.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date UK viewers
          -(millions) [7]
          AI [7]
          2401"The Day of the Doctor"Nick HurranSteven Moffat23 November 2013 (2013-11-23)12.8088
          2412"The Time of the Doctor"Jamie PayneSteven Moffat25 December 2013 (2013-12-25)11.1483
          -

          Twelfth Doctor

          -

          The Twelfth Doctor is portrayed by Peter Capaldi.

          -

          Series 8 (2014)

          -
          Main article: Doctor Who (series 8)
          -

          Nikki Wilson and Peter Bennett returned as producers, with Paul Frift producing "In the Forest of the Night".

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date UK viewers
          -(millions) [7]
          AI [7]
          2421"Deep Breath"Ben WheatleySteven Moffat23 August 2014 (2014-08-23)9.1782
          2432"Into the Dalek"Ben WheatleyPhil Ford & Steven Moffat30 August 2014 (2014-08-30)7.2984
          2443"Robot of Sherwood"Paul MurphyMark Gatiss6 September 2014 (2014-09-06)7.2882
          2454"Listen"Douglas MackinnonSteven Moffat13 September 2014 (2014-09-13)7.0182
          2465"Time Heist"Douglas MackinnonStephen Thompson & Steven Moffat20 September 2014 (2014-09-20)6.9984
          2476"The Caretaker"Paul MurphyGareth Roberts & Steven Moffat27 September 2014 (2014-09-27)6.8283
          2487"Kill the Moon"Paul WilmshurstPeter Harness4 October 2014 (2014-10-04)6.9182
          2498"Mummy on the Orient Express"Paul WilmshurstJamie Mathieson11 October 2014 (2014-10-11)7.1185
          2509"Flatline"Douglas MackinnonJamie Mathieson18 October 2014 (2014-10-18)6.7185
          25110"In the Forest of the Night"Sheree FolksonFrank Cottrell Boyce25 October 2014 (2014-10-25)6.9283
          25211"Dark Water"Rachel TalalaySteven Moffat1 November 2014 (2014-11-01)7.3485
          12"Death in Heaven"Rachel TalalaySteven Moffat8 November 2014 (2014-11-08)7.6083
          -

          Series 9 (2015)

          -
          Main article: Doctor Who (series 9)
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title [23]Directed by [23]Written by [23]Original air date [6][24]UK viewers
          -(millions) [7]
          AI [7]
          253"Last Christmas"Paul WilmshurstSteven Moffat25 December 2014 (2014-12-25)8.2882
          2541"The Magician's Apprentice"Hettie MacDonaldSteven Moffat19 September 2015 (2015-09-19)6.5484
          2"The Witch's Familiar"Hettie MacDonaldSteven Moffat26 September 2015 (2015-09-26)5.7183
          2553"Under the Lake"Daniel O'HaraToby Whithouse3 October 2015 (2015-10-03)TBD84
          4"Before the Flood"Daniel O'HaraToby Whithouse10 October 2015 (2015-10-10)TBDTBD
          2565"The Girl Who Died"Ed BazalgetteJamie Mathieson and Steven Moffat17 October 2015 (2015-10-17)TBDTBD
          2576"The Woman Who Lived"Ed BazalgetteCatherine Tregenna24 October 2015 (2015-10-24)TBDTBD
          2587"The Zygon Invasion"Daniel NettheimPeter Harness31 October 2015 (2015-10-31)TBDTBD
          8"The Zygon Inversion"Daniel NettheimPeter Harness and Steven Moffat7 November 2015 (2015-11-07)TBDTBD
          2599"Sleep No More"Justin MolotnikovMark Gatiss14 November 2015 (2015-11-14)TBDTBD
          26010"Face the Raven"Justin MolotnikovSarah Dollard21 November 2015 (2015-11-21)TBDTBD
          26111"Heaven Sent"Rachel TalalaySteven Moffat28 November 2015 (2015-11-28)TBDTBD
          12"Hell Bent"Rachel TalalaySteven Moffat5 December 2015 (2015-12-05)TBDTBD
          -

          2015 Christmas Special

          -

          The 2015 Christmas Special will be produced by Nikki Wilson, and will mark the reappearance of Alex Kingston as River Song. The special began filming on 10 September 2015.[25][26]

          - - - - - - - - - - - - - - - - - - - - - -
          Story Episode Title Directed by Written by Original air date UK viewers
          -(millions) 
          AI 
          262TBADouglas Mackinnon[25]Steven Moffat[25]25 December 2015 (2015-12-25)[25]TBDTBD
          -

          Series 10

          -

          On 14 July 2015, BBC Worldwide's Annual Review revealed that it had invested in a tenth series.[27]

          -

          See also

          - - - - - - -
          - - - - - - - - - -
          Portal iconDoctor Who portal
          Portal iconBBC portal
          -
          - -

          Footnotes

          -
          -
            -
          1. ^ Although technically the sixteenth season, the season was known by its subtitle, The Key to Time.
          2. -
          3. ^ a b Shada was left unfinished due to a strike. Its recorded footage was later released on home video using linking narration by Tom Baker to complete the story. It is not included in the episode or story counts as it was not broadcast.
          4. -
          5. ^ Although technically the twenty-third season, the season was known by its subtitle, The Trial of a Time Lord.
          6. -
          7. ^ "TVM" is used in the BBC's online episode guide.[13] The actual code used during production is 50/LDX071Y/01X.[14] Doctor Who Magazine‍ '​s "Complete Eighth Doctor Special" gives the production code as #83705.[15] Big Finish Productions uses the code 8A, and numbers its subsequent Eighth Doctor stories correspondingly.
          8. -
          -
          -

          References

          -
          -
            -
          1. ^ "Dr Who 'longest-running sci-fi'". BBC. 28 September 2006. Retrieved 15 December 2007. 
          2. -
          3. ^ Howe, David J.; Walker, Stephen James (2003) [1998]. "The Trial of a Time Lord: 1–4 : Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 27 October 2007. 
          4. -
          5. ^ Cornell, Paul; Day, Martin; Topping, Keith (1995). "The Five Doctors: Details". Doctor Who: The Discontinuity Guide. BBC Doctor Who website. Retrieved 27 October 2007. 
          6. -
          7. ^ Spilsbury, Tom (22 April 2009). "The Mighty 200!". Doctor Who Magazine (Royal Tunbridge Wells, Kent: Panini Comics) (407): 26–29. 
          8. -
          9. ^ "Blogtor Who: Doctor Who Series 9 to have 12 eps". Blogtor Who. 30 April 2015. Retrieved 30 April 2015. 
          10. -
          11. ^ a b "Every Saturday evening from 19 September!". Twitter. Doctor Who Magazine. Retrieved 18 August 2015. 
          12. -
          13. ^ a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb "Ratings Guide". Doctor Who News. Retrieved 27 December 2014. 
          14. -
          15. ^ "Tom Baker". BBC Doctor Who website. 12 August 2004. Archived from the original on 29 December 2008. Retrieved 23 April 2013. 
          16. -
          17. ^ The Five Doctors was first broadcast in the United States on 23 November 1983, the actual date of the programme's 20th anniversary.
          18. -
          19. ^ "Doctor Who – Classic Series – Episode Guide – Second Doctor Index". BBC. Retrieved 18 May 2011. 
          20. -
          21. ^ Sullivan, Shannon (7 August 2007). "Silver Nemesis". A Brief History of Time Travel. Retrieved 30 August 2008. 
          22. -
          23. ^ Parts Two and Three of Silver Nemesis were first broadcast in New Zealand on 25 November 1988 as part of a compilation broadcast before their UK transmission.[11]
          24. -
          25. ^ Howe, David J.; Walker, Stephen James. "The TV Movie: Details". Doctor Who: The Television Companion. BBC Doctor Who website. Retrieved 26 July 2007. 
          26. -
          27. ^ Segal, Philip; Russell, Gary (2000). Doctor Who: Regeneration. HarperCollinsEntertainment. ISBN 0-00-710591-6. 
          28. -
          29. ^ "The DWM Archive: Doctor Who (1996) – In Production". Doctor Who Magazine Special Edition (5). 3 September 2003. p. 69. ISSN 0957-9818. 
          30. -
          31. ^ "Bad Wolf" / "The Parting of the Ways" at Doctor Who: A Brief History Of Time (Travel) Retrieved 28 November 2007.
          32. -
          33. ^ "Doctor Who to be filmed in HD". Doctor Who Online. 4 February 2009. Archived from the original on 10 February 2010. Retrieved 22 April 2010. 
          34. -
          35. ^ "Steven Moffat on the New Exec". BBC. Retrieved 21 July 2011. 
          36. -
          37. ^ "BBC – Doctor Who – Beth Willis On Leaving Doctor Who – News & Features". Bbc.co.uk. Retrieved 22 August 2012. 
          38. -
          39. ^ "Doctor Who executive Piers Wenger leaves BBC for Film4". BBC News. 26 May 2011. Retrieved 9 June 2011. 
          40. -
          41. ^ "Caroline Skinner steps down as Executive Producer of Doctor Who". Media Centre. BBC. 13 March 2013. Retrieved 14 March 2013. 
          42. -
          43. ^ "BBC - Brian Minchin confirmed as new Executive Producer of Doctor Who - Media centre". bbc.co.uk. 
          44. -
          45. ^ a b c "Doctor Who season 9: Steven Moffat's episode guide". Radio Times. 15 September 2015. Retrieved 15 September 2015. 
          46. -
          47. ^ "Doctor Who: Episode Guide". Zap2It. Retrieved September 23, 2015. 
          48. -
          49. ^ a b c d "The Doctor and River Song Reunite For A Spectacular Christmas". BBC. The Doctor Who Team. 2 September 2015. Retrieved 2 September 2015. 
          50. -
          51. ^ Mackinnon, Douglas (10 September 2015). "Let it snow! #DoctorWho". Twitter. Retrieved 10 September 2015. 
          52. -
          53. ^ "Doctor Who Series 10 Confirmed". Doctor Who News. 14 July 2015. Retrieved 15 July 2015. 
          54. -
          -
          -

          Sources

          -
          - -
          -

          External links

          - - - - - - - - - - - - - -
          -
          -
          -
          - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm b/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm deleted file mode 100644 index 7c5997971..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/ebay_cars.htm +++ /dev/null @@ -1,6078 +0,0 @@ - - - - - - - - - Cars in Car Type:Standard Car | eBay - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          -
          - -
          - - - - - - -
          eBay - - -
          - - - - - - - -
          -
          -
          -
          -
          -
          -
          - -
          -
          -
          - -
          - - - - - -
          - -
          -   -
          -
          -
          - -
          -
          -
          -

          Search refinements

          - -
          -
          -
          - -
          - -
          - -
          -
          -
          -
          -
          -
          -
          -
          -
          - -
          -
          - -
          -

          - 108,377 - results in Cars -

          - - - - - - - - -
          -
          - -
          - - - -
          - - - - - - - -
          -
          -
          -
          -
          -
          - -
          -
          -
          - -
          - - -
          - -

          Standard Car

          -
          - -
          - in Cars: Standard Car Standard Car - -
          - -   -
          -
          - - - -
          -
          - - -
          - -
          -

           
          - - - -
          -

          Items in search results

          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          - -
          -
          -
          - - -
          Low milage
          -
          - -
          - Reg. Date: 2006 -
          -
          - Mileage: 54,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £1,950.00
          -
          -
          21 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          - -
          -
          -
          - - -
          You Can Afford This £25,000 car & 62mpg
          -
          - -
          - Mileage: 0 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          £299.00
          -
          -
          Classified Ad
          -
          -
          -
          - - Collection only: Free - -
          -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 17,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £395.00
          -
          -
          14 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2003 -
          -
          - Mileage: 100,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £560.00
          -
          -
          8 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2005 -
          -
          - Mileage: 83,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £950.00
          -
          -
          0 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 1997 -
          -
          - Mileage: 78,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £628.89
          -
          -
          21 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          - -
          -
          -
          - - -
          - -
          - Reg. Date: 2003 -
          -
          - Mileage: 132,700 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £970.00
          -
          -
          23 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          - -
          -
          -
          - - -
          - -
          - Mileage: 174,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £4,400.00
          -
          -
          13 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Mileage: 99,441 -
          -
          -
          -
          -
          - - Time left: - - - -
          £350.00
          -
          -
          1 bid
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Mileage: 96,401 -
          -
          -
          -
          -
          - - -
          -
          - £300.00 -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2012 -
          -
          - Mileage: 9,998 -
          -
          -
          -
          -
          - - Time left: - - - -
          £3,700.00
          -
          -
          16 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - rover 75 cdti 2.0 auto - -
          -
          -
          -
          - - -
          - -
          - Mileage: 87,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £850.00
          -
          -
          12 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2008 FORD FIESTA 1.25 STYLE 3DR PANTHER BLACK /BLACK & BLUE INTERIOR FSH NEW MOT - -
          - -
          -
          -
          - - -
          DELIVERY AVAILABLE * CARDS ACCEPTED * LOW MILES 50K FSH
          -
          - -
          - Reg. Date: 2008 -
          -
          - Mileage: 50,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £2,550.00
          -
          -
          13 bids
          -
          -
          -
          -
          - £3,850.00 -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Vauxhall Corsa Gls Di 2002 3 Door Black Diesel 98K Spares or Repair Salvage - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 97,850 -
          -
          -
          -
          -
          - - Time left: - - - -
          £195.00
          -
          -
          13 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - BMW E46 02 316i SUPERB CAR MUST SEE ,JUST SERVICED, crank wont start, REPAIR - -
          - -
          -
          -
          - - -
          - -
          - Mileage: 93,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £1,000.00
          -
          -
          1 bid
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - BMW 520 Auto - -
          - -
          -
          -
          -
          -

          - BMW 520 Auto -

          -
          - -
          - -
          - Mileage: 163,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £500.00
          -
          -
          0 bids
          -
          -
          -
          -
          - £600.00 -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - rover 25 1.4 tax and mot spares and repairs drive it away no reserve - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2001 -
          -
          - Mileage: 65,300 -
          -
          -
          -
          -
          - - Time left: - - - -
          £215.00
          -
          -
          36 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Volkswagen Bora se 1.9 tdi 2001,   ***OFFERS*** - -
          - -
          -
          -
          - - -
          - -
          - Mileage: 150,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          - £999.00 -
          -
          - - -
          -
          -
          - - Postage not specified
          -
          -
          -
          - 32 Watchers -
          - -
          or Best Offer
          -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - VW BORA 1.9 TDI S - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 94,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £720.00
          -
          -
          12 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Ford fiesta freestyle 5door  spares or repair - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 73,803 -
          -
          -
          -
          -
          - - Time left: - - - -
          £150.00
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Renault Clio Billabong 1.2 petrol 16 V - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2003 -
          -
          - Mileage: 69,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £805.00
          -
          -
          5 bids
          -
          -
          -
          -
          - £1,100.00 -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - CITROEN C4 VTR PLUS 2,0 PETROL   SPARE REPAIR - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2006 -
          -
          - Mileage: 82,709 -
          -
          -
          -
          -
          - - Time left: - - - -
          £565.00
          -
          -
          25 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2004 ford ka - -
          -
          -
          -
          -
          -

          - 2004 ford ka -

          -
          - -
          - -
          - Mileage: 106,085 -
          -
          -
          -
          -
          - - Time left: - - - -
          £193.23
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Vauxhall Omega 2.5 CD V6 - -
          -
          -
          -
          - - -
          12 months MOT, taxed until 31/08/14
          -
          - -
          - Reg. Date: 1998 -
          -
          - Mileage: 164,266 -
          -
          -
          -
          -
          - - Time left: - - - -
          £410.00
          -
          -
          5 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - BF02 XOS - -
          - -
          -
          -
          -
          -

          - BF02 XOS -

          -
          - -
          PEUGEOT 607 2.2 HDI AUTO
          -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 120 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £495.00
          -
          -
          0 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Volkswagen Polo mk2 fox, cheap road car, classic, Bread van, Breadvan, dub? - -
          - -
          -
          -
          - - -
          - -
          - Reg. Date: 1989 -
          -
          - Mileage: 76,654 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £336.78
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - ford mondeo 2.0 tdci 130 - -
          -
          -
          -
          - - -
          - -
          - Mileage: 138,000 -
          -
          -
          -
          -
          - - -
          -
          £400.00
          -
          -
          Classified Ad with Best Offer
          -
          -
          -
          - - Collection only: Free - -
          -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Volkswagen Golf GTi 2.0 16v mk3 - -
          - -
          -
          -
          - - -
          - -
          - Mileage: 170,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £175.00
          -
          -
          21 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - vw polo 14cc match 80 - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2008 -
          -
          - Mileage: 83,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £2,562.00
          -
          -
          15 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Mercedes Benz E270 CDI Avantgarde - -
          -
          -
          -
          - - -
          - -
          - Mileage: 108,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £3,800.00
          -
          -
          2 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2004 (54) VOLKSWAGEN BORA 1.9 TDI PD 130 SPORT. FULL VW MAIN DEALER HISTORY - -
          - -
          -
          -
          - - -
          6 SPEED GEARBOX. LONG TAX AND MOT. 2 KEYS. 2 OWNERS
          -
          - -
          - Reg. Date: 2004 -
          -
          - Mileage: 98,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £1,550.00
          -
          -
          25 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - CITROEN C2 VTR 1.4HDI - -
          - -
          -
          -
          - - -
          Nice Example - Full Citroen History
          -
          - -
          - Reg. Date: 2008 -
          -
          - Mileage: 60,998 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £2,939.00
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 1987 VAUXHALL NOVA L SALOON - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 1987 -
          -
          - Mileage: 93,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £205.53
          -
          -
          2 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - BMW 735I V8 FULL BMW SERVICE HISTORY SPARES OR REPAIRS PROJECT NO RESERVE LOOK!! - -
          - -
          -
          -
          - - -
          STARTS RUNS AND DRIVES AS IT SHOULD!!
          -
          - -
          - Mileage: 103,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £510.00
          -
          -
          15 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Ford Fiesta 1.4TDCi 2007.25MY Zetec Blue - -
          - -
          -
          -
          - - -
          FINANCE ONLY
          -
          - -
          - Reg. Date: 2008 -
          -
          - Mileage: 95,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          £495.00
          -
          -
          Classified Ad
          -
          -
          -
          - - Collection only: Free - -
          -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - VW Golf GT TDI - -
          -
          -
          -
          -
          -

          - VW Golf GT TDI -

          -
          - -
          - -
          - Mileage: 180,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £750.00
          -
          -
          0 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2007 CITROEN XSARA PICASSO VTX 1.6 16V - -
          - -
          -
          -
          - - -
          Cheap Family Car
          -
          - -
          - Reg. Date: 2007 -
          -
          - Mileage: 80,188 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £775.99
          -
          -
          3 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Vauxhall Vectra 2003 2.2 liter 16v silver MOT and Taxed - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2003 -
          -
          - Mileage: 167,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £300.00
          -
          -
          18 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - BMW 750i 1990 Black - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 1990 -
          -
          - Mileage: 136,593 -
          -
          -
          -
          -
          - - Time left: - - - -
          £1,020.00
          -
          -
          9 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - AUDI A3 1.9tdi SPORTBACK S - -
          - -
          -
          -
          - - -
          - -
          - Reg. Date: 2008 -
          -
          - Mileage: 58,500 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £6,600.00
          -
          -
          3 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Ford Mondeo 1.8LX Silver Mot and tax needs slight attention - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 148,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £310.00
          -
          -
          14 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2002 Renault clio 1.4L 55k miles - -
          - -
          -
          -
          - - -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 55,031 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £769.00
          -
          -
          22 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Ford Fiesta 1.4 2007.25MY Zetec Climate - -
          - -
          -
          -
          - - -
          £995 deposit CCJ No Problem
          -
          - -
          - Reg. Date: 2007 -
          -
          - Mileage: 68,000 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          £995.00
          -
          -
          Classified Ad
          -
          -
          -
          - - Collection only: Free - -
          -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - AUDI A4 1.8 PETROL model 1A - -
          - -
          -
          -
          - - -
          MOT till Jan 2015 and drives well
          -
          - -
          - Mileage: 131,922 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £205.00
          -
          -
          3 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - VAUXHALL CORSA LIMITED EDITION 1.2VVT - -
          - -
          -
          -
          - - -
          - -
          - Reg. Date: 2012 -
          -
          - Mileage: 26,500 -
          -
          -
          -
          -
          -
          -
          -
          -
          - - Time left: - - - -
          £5,300.00
          -
          -
          20 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - Peugeot 206 XSI 2002 - -
          -
          -
          -
          - - -
          - -
          - Mileage: 108,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £371.00
          -
          -
          15 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2003 Renault Megane 1.6 petrol flame red - taxed and tested - FSH 78k - -
          -
          -
          -
          - - -
          - -
          - Mileage: 78,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £600.00
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Collection only: Free - -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2001 AUDI A4 SILVER,DRIVES FINE.!!!!!!!!!! - -
          -
          -
          -
          - - -
          ***CLEAN AND TIDY - TAX AND MOT***
          -
          - -
          - Reg. Date: 2001 -
          -
          - Mileage: 125,703 -
          -
          -
          -
          -
          - - Time left: - - - -
          £510.00
          -
          -
          9 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2001 JAGUAR S TYPE 4.0 V8 GREEN - -
          -
          -
          -
          - - -
          - -
          - Reg. Date: 2001 -
          -
          - Mileage: 121,000 -
          -
          -
          -
          -
          - - Time left: - - - -
          £620.00
          -
          -
          6 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          - - - - - - - - - - - - -
          -
          -
          -
          - - - - 2002 ROVER 75,CLUB SE.A NICE ONE.!!!!!!!!. - -
          -
          -
          -
          - - -
          NICE CAR DRIVES WELL.!!!!!!!!!
          -
          - -
          - Reg. Date: 2002 -
          -
          - Mileage: 70,464 -
          -
          -
          -
          -
          - - Time left: - - - -
          £420.00
          -
          -
          18 bids
          -
          -
          -
          -
          -
          -
          - - Postage not specified
          -
          -
          - -
          -
          -
          -
          -
          -
          - -
          eBay Premium Service
          -
            -
          • Excellent customer service as rated by buyers
          • -
          • 14-day returns
          • -
          • A free delivery option
          • -
          • A fast delivery option
          • -
          Learn more
          -
          eBay Premium Service
          -
            -
          • Excellent customer service as rated by buyers
          • -
          • 14-day returns
          • -
          • A free delivery option
          • -
          • A fast delivery option
          • -
          Learn more
          -
          -
          -
          -
          -
          -
          - Tell us what you think
          -
          -
          - -
          - - - - - - -
          - - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - -
          - -
          - -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          - -
          - -
          - - -
          -
          - - - - - - - - - -
          - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv b/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv deleted file mode 100644 index c6d6f520b..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/emptyMissingValue.csv +++ /dev/null @@ -1,3 +0,0 @@ -row,c1,c2,c3 -1,,5, -2,4,6, diff --git a/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml b/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml deleted file mode 100644 index b987a726c..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/emptyValue.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv b/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv deleted file mode 100644 index 7c06f3cde..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/file with spaces.csv +++ /dev/null @@ -1,4 +0,0 @@ -Distance (metre),Time (second) -50,3.7 -100,5.2 -150,6.4 diff --git a/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml b/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml deleted file mode 100644 index 17322d2a9..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/heterogeneous.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/homonim.xsd b/tests/FSharp.Data.Core.Tests/Data/homonim.xsd deleted file mode 100644 index a1c6c028e..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/homonim.xsd +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm b/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm deleted file mode 100644 index b21e310d3..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/imdb_chart.htm +++ /dev/null @@ -1,13481 +0,0 @@ - - - - - - - - - - - - - - - - - IMDb Top 250 - IMDb - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - - - -
          - -
          - -
          - - - -
          - - -
          - -
          - -
          - - - -
          -
          -
          -

          IMDb Charts

          -

          Top 250

          - -
          -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Rank & TitleIMDb RatingYour Rating
          - - - - - 1. - The Shawshank Redemption - (1994) - - 9.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 2. - The Godfather - (1972) - - 9.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 3. - The Godfather: Part II - (1974) - - 9.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 4. - The Dark Knight - (2008) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 5. - Pulp Fiction - (1994) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 6. - The Good, the Bad and the Ugly - (1966) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 7. - Schindler's List - (1993) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 8. - 12 Angry Men - (1957) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 9. - The Lord of the Rings: The Return of the King - (2003) - - 8.9 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 10. - Fight Club - (1999) - - 8.8 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 11. - The Lord of the Rings: The Fellowship of the Ring - (2001) - - 8.8 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.9/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 12. - Star Wars: Episode V - The Empire Strikes Back - (1980) - - 8.8 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 13. - Inception - (2010) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 14. - Forrest Gump - (1994) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 15. - One Flew Over the Cuckoo's Nest - (1975) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 16. - Goodfellas - (1990) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 17. - The Lord of the Rings: The Two Towers - (2002) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 18. - Star Wars: Episode IV - A New Hope - (1977) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 19. - The Matrix - (1999) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 20. - Seven Samurai - (1954) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 21. - City of God - (2002) - - 8.7 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 22. - Se7en - (1995) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 23. - The Usual Suspects - (1995) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 24. - The Silence of the Lambs - (1991) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 25. - Once Upon a Time in the West - (1968) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 26. - It's a Wonderful Life - (1946) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 27. - Léon: The Professional - (1994) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 28. - Casablanca - (1942) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 29. - Life Is Beautiful - (1997) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 30. - Raiders of the Lost Ark - (1981) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 31. - Rear Window - (1954) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 32. - Psycho - (1960) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 33. - American History X - (1998) - - 8.6 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 34. - City Lights - (1931) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.7/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 35. - Saving Private Ryan - (1998) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 36. - Spirited Away - (2001) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 37. - The Intouchables - (2011) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 38. - Memento - (2000) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 39. - Terminator 2: Judgment Day - (1991) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 40. - Modern Times - (1936) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 41. - Sunset Blvd. - (1950) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 42. - Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb - (1964) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 43. - Apocalypse Now - (1979) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 44. - The Pianist - (2002) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 45. - The Green Mile - (1999) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 46. - The Departed - (2006) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 47. - Gladiator - (2000) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 48. - Back to the Future - (1985) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 49. - The Dark Knight Rises - (2012) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 50. - Alien - (1979) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 51. - Django Unchained - (2012) - - 8.5 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 52. - The Lives of Others - (2006) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 53. - The Prestige - (2006) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 54. - The Great Dictator - (1940) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 55. - The Shining - (1980) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 56. - Cinema Paradiso - (1988) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 57. - Paths of Glory - (1957) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 58. - American Beauty - (1999) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 59. - The Lion King - (1994) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 60. - WALL·E - (2008) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 61. - North by Northwest - (1959) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 62. - Amélie - (2001) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 63. - Citizen Kane - (1941) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 64. - Aliens - (1986) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 65. - Toy Story 3 - (2010) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 66. - Vertigo - (1958) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 67. - M - (1931) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 68. - Das Boot - (1981) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 69. - Taxi Driver - (1976) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 70. - A Clockwork Orange - (1971) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 71. - Double Indemnity - (1944) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 72. - Oldboy - (2003) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 73. - To Kill a Mockingbird - (1962) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 74. - Princess Mononoke - (1997) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 75. - Reservoir Dogs - (1992) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 76. - Requiem for a Dream - (2000) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 77. - Once Upon a Time in America - (1984) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 78. - Star Wars: Episode VI - Return of the Jedi - (1983) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 79. - Braveheart - (1995) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 80. - Lawrence of Arabia - (1962) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 81. - Grave of the Fireflies - (1988) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 82. - Eternal Sunshine of the Spotless Mind - (2004) - - 8.4 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 83. - Witness for the Prosecution - (1957) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 84. - Full Metal Jacket - (1987) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 85. - Singin' in the Rain - (1952) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 86. - The Sting - (1973) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 87. - Bicycle Thieves - (1948) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 88. - Monty Python and the Holy Grail - (1975) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 89. - Amadeus - (1984) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 90. - All About Eve - (1950) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 91. - The Wolf of Wall Street - (2013) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 92. - Rashomon - (1950) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 93. - Snatch. - (2000) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 94. - The Treasure of the Sierra Madre - (1948) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 95. - L.A. Confidential - (1997) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 96. - The Apartment - (1960) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 97. - Some Like It Hot - (1959) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 98. - The Third Man - (1949) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 99. - For a Few Dollars More - (1965) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 100. - A Separation - (2011) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 101. - Indiana Jones and the Last Crusade - (1989) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 102. - Inglourious Basterds - (2009) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 103. - Yojimbo - (1961) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 104. - Batman Begins - (2005) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 105. - The Kid - (1921) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 106. - 2001: A Space Odyssey - (1968) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 107. - Unforgiven - (1992) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 108. - Metropolis - (1927) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 109. - Raging Bull - (1980) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 110. - Chinatown - (1974) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 111. - Toy Story - (1995) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 112. - Scarface - (1983) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 113. - Up - (2009) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 114. - Die Hard - (1988) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 115. - Downfall - (2004) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 116. - Mr. Smith Goes to Washington - (1939) - - 8.3 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 117. - The Great Escape - (1963) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 118. - Pan's Labyrinth - (2006) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 119. - On the Waterfront - (1954) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 120. - Like Stars on Earth - (2007) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 121. - The Bridge on the River Kwai - (1957) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 122. - Heat - (1995) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 123. - The Hunt - (2012) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 124. - The Seventh Seal - (1957) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 125. - 3 Idiots - (2009) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 126. - Wild Strawberries - (1957) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 127. - The Elephant Man - (1980) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 128. - Ran - (1985) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 129. - Ikiru - (1952) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 130. - The General - (1926) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 131. - The Gold Rush - (1925) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 132. - Blade Runner - (1982) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 133. - My Neighbor Totoro - (1988) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 134. - 12 Years a Slave - (2013) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 135. - Lock, Stock and Two Smoking Barrels - (1998) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 136. - Gran Torino - (2008) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 137. - Good Will Hunting - (1997) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 138. - Rebecca - (1940) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 139. - The Big Lebowski - (1998) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 140. - The Secret in Their Eyes - (2009) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 141. - It Happened One Night - (1934) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 142. - Rush - (2013) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 143. - Rang De Basanti - (2006) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.6/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 144. - Warrior - (2011) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 145. - Casino - (1995) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 146. - Cool Hand Luke - (1967) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 147. - V for Vendetta - (2005) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 148. - The Grand Budapest Hotel - (2014) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.4/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 149. - Her - (2013) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 150. - The Deer Hunter - (1978) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 151. - The Maltese Falcon - (1941) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 152. - Fargo - (1996) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 153. - Gone with the Wind - (1939) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 154. - Trainspotting - (1996) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 155. - Into the Wild - (2007) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 156. - Howl's Moving Castle - (2004) - - 8.2 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 157. - How to Train Your Dragon - (2010) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 158. - Hotel Rwanda - (2004) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 159. - Judgment at Nuremberg - (1961) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 160. - The Sixth Sense - (1999) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 161. - Butch Cassidy and the Sundance Kid - (1969) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 162. - The Thing - (1982) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 163. - Annie Hall - (1977) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 164. - Dial M for Murder - (1954) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 165. - Platoon - (1986) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 166. - A Beautiful Mind - (2001) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 167. - Kill Bill: Vol. 1 - (2003) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 168. - No Country for Old Men - (2007) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 169. - Sin City - (2005) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 170. - Touch of Evil - (1958) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 171. - Mary and Max - (2009) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 172. - Finding Nemo - (2003) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 173. - Diabolique - (1955) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 174. - Life of Brian - (1979) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 175. - Network - (1976) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 176. - The Princess Bride - (1987) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 177. - Amores Perros - (2000) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 178. - The Wizard of Oz - (1939) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 179. - Stand by Me - (1986) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 180. - The Avengers - (2012) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 181. - Captain America: The Winter Soldier - (2014) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 182. - The Grapes of Wrath - (1940) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 183. - Ben-Hur - (1959) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 184. - The Lego Movie - (2014) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 185. - The Best Years of Our Lives - (1946) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 186. - Incendies - (2010) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 187. - There Will Be Blood - (2007) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 188. - The 400 Blows - (1959) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 189. - Million Dollar Baby - (2004) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 190. - Hachi: A Dog's Tale - (2009) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 191. - - (1963) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 192. - Donnie Darko - (2001) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 193. - Strangers on a Train - (1951) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 194. - The Bourne Ultimatum - (2007) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 195. - In the Name of the Father - (1993) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 196. - High Noon - (1952) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 197. - Gravity - (2013) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 198. - Gandhi - (1982) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 199. - Persona - (1966) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 200. - Notorious - (1946) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 201. - The King's Speech - (2010) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 202. - Infernal Affairs - (2002) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 203. - Jaws - (1975) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 204. - Nausicaä of the Valley of the Wind - (1984) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 205. - Lagaan: Once Upon a Time in India - (2001) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.3/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 206. - Twelve Monkeys - (1995) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 207. - Fanny and Alexander - (1982) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 208. - La Strada - (1954) - - 8.1 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 209. - The Terminator - (1984) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 210. - The Night of the Hunter - (1955) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 211. - Ip Man - (2008) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 212. - Stalker - (1979) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 213. - Who's Afraid of Virginia Woolf? - (1966) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 214. - Groundhog Day - (1993) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 215. - The Big Sleep - (1946) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 216. - Dog Day Afternoon - (1975) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 217. - Rocky - (1976) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 218. - Harry Potter and the Deathly Hallows: Part 2 - (2011) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 219. - The Battle of Algiers - (1966) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 220. - La Haine - (1995) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 221. - Barry Lyndon - (1975) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 222. - Pirates of the Caribbean: The Curse of the Black Pearl - (2003) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 223. - Before Sunrise - (1995) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 224. - Shutter Island - (2010) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 225. - The Graduate - (1967) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 226. - Swades - (2004) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.5/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 227. - The Celebration - (1998) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 228. - The Hustler - (1961) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 229. - Monsters, Inc. - (2001) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 230. - Castle in the Sky - (1986) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 231. - A Christmas Story - (1983) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 232. - Memories of Murder - (2003) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 233. - Roman Holiday - (1953) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 234. - Underground - (1995) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.2/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 235. - Stalag 17 - (1953) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 236. - In the Mood for Love - (2000) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 237. - A Fistful of Dollars - (1964) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 238. - The Help - (2011) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 239. - Slumdog Millionaire - (2008) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 240. - The Hobbit: The Desolation of Smaug - (2013) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 241. - The Killing - (1956) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 242. - Elite Squad: The Enemy Within - (2010) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 243. - Rope - (1948) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 244. - Black Swan - (2010) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 245. - The Truman Show - (1998) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 246. - The Diving Bell and the Butterfly - (2007) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 247. - Three Colors: Red - (1994) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 248. - Beauty and the Beast - (1991) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 249. - La Dolce Vita - (1960) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8.1/10 - X -   -
          -
          -
          -
          -
          -
          - - - - - 250. - Jurassic Park - (1993) - - 8.0 - -
          - - RATE - -
          -
          - - - -   -   - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - - 8/10 - X -   -
          -
          -
          -
          -
          -
          -
          -
          -

          The formula for calculating the Top Rated 250 Titles gives a true Bayesian estimate:

          -
          weighted rating (WR) = (v ÷ (v+m)) × R + (m ÷ (v+m)) × C
          -

          Where:

          -
            -
          • R = average for the movie (mean) = (Rating)
          • -
          • v = number of votes for the movie = (votes)
          • -
          • m = minimum votes required to be listed in the Top 250 (currently 25000)
          • -
          • C = the mean vote across the whole report (currently 7.0)
          • -
          -

          For the Top 250, only votes from regular voters are considered.

          -
          -
          - -
          - -
          -
          - - - -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html deleted file mode 100644 index fc8c5b2f2..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/list_of_counties_wikipedia.html +++ /dev/null @@ -1,1306 +0,0 @@ - - - - -List of urban areas in the United Kingdom - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          - - -
          -

          List of urban areas in the United Kingdom

          -
          -
          From Wikipedia, the free encyclopedia
          -
          -
          - Jump to: navigation, search -
          -

          List of urban areas in the United Kingdom is a list of the most populous urban areas in 2011, as defined by the Office for National Statistics (ONS).

          -

          The detailed methodology of the process used by ONS in 2011 is set out in 2011 Built-up Areas - Methodology and Guidance, published in June 2013. In reporting the results of the 2011 UK census, ONS use the term "built-up area" rather than the term "urban area" used for previous censuses. However, it states that the criteria used to define "built-up area" are the same as those used previously, as follows:[1]

          -
          -

          "..the definition follows a ‘bricks and mortar’ approach, with areas defined as built-up land with a minimum area of 20 hectares (200,000 m2), while settlements within 200 metres of each other are linked. Built-up area sub-divisions are also identified to provide greater detail in the data, especially in the larger conurbations."

          -
          -

          In reporting the 2001 census, ONS gave a clearer definition of the term "built-up" as follows:

          -
          -

          "This comprises permanent structures and the land on which they are situated, including land enclosed by or closely associated with such structures; transportation corridors such as roads, railways and canals which have built up land on one or both sides, or which link built-up sites which are less than 200 metres apart; transportation features such as airports and operational airfields, railway yards, motorway service areas and car parks; mine buildings, excluding mineral workings and quarries; and any area completely surrounded by builtup sites. Areas such as playing fields and golf courses are excluded unless completely surrounded by builtup sites..."[2]

          -
          -

          A conurbation is formed when cities and towns expand sufficiently that their urban areas join up with each other. This process has happened many times in the United Kingdom. In many cases, there are differences of interpretation as to the limits of a conurbation - where it begins and ends. For the purposes of consistency, the list on this page uses the Office for National Statistics definition of built-up areas (previously defined as urban areas).

          -

          - -

          -

          List of most populous built-up areas in England and Wales[edit]

          -

          The list below shows the most populous Built-up areas in England and Wales as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 100,000 at the 2011 census.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          RankBuilt-up area[3]Population -

          (2011 Census)[3]

          -
          Area (m²)[3]Density (People/km²)[3]Major subdivisions[3]Metropolitan Area[4]Notable changes between 2001 and 2011 censuses [5]
          1Greater London Built-up area9,787,4261,737.95,630London Boroughs, Hemel Hempstead, Watford, Woking, Harlow, St Albans, BracknellLondonThe addition of Guildford, Harlow, Bracknell and St Albans
          2Greater Manchester Built-up area2,553,379630.34,051Manchester, Salford, Bolton, Stockport, Oldham, Rochdale, Bury, Trafford, TamesideManchesterThe addition of Golborne, Glossop and Newton-le-Willows
          3West Midlands Built-up area2,440,986598.94,076Birmingham, Wolverhampton, West Bromwich, Dudley, Walsall, SolihullBirmingham
          4West Yorkshire Built-up area1,777,934487.83,645Leeds, Bradford, Wakefield, Huddersfield, Dewsbury, Keighley, HalifaxLeeds-BradfordThe addition of Halifax
          5Liverpool Built-up area864,122199.64,329Liverpool, Bootle, Litherland, Crosby, Prescot, St. Helens, Ashton-in-MakerfieldLiverpoolThe addition of Ashton-in-Makerfield
          6South Hampshire Built-up area855,569192.04,455Southampton, Portsmouth, Eastleigh, Gosport, Fareham, Havant, HorndeanSouthampton-PortsmouthPortsmouth Urban Area and Southampton Urban Area combined into one. -

          The addition of Hedge End, Locks Heath, Bursledon and Whiteley. Stubbington and Lee-on-the-Solent are no longer part of the built-up area.

          -
          7Tyneside Built-up area774,891180.54,292Newcastle upon Tyne, Gateshead, South Shields, Tynemouth, Wallsend, Whitley Bay, JarrowNewcastle-SunderlandWashington, Chester-Le-Street, Hetton-le-Hole and Houghton-le-Spring are no longer part of the built-up area.
          8Nottingham Built-up area729,977176.44,139Nottingham, Beeston, Carlton, West Bridgford, Ilkeston, HucknallNottingham-Derby
          9Sheffield Built-up area685,368167.54,092Sheffield, Rotherham, RawmarshSheffield
          10Bristol Built-up area617,280144.44,274Bristol, Filton, Pill, Frampton Cotterell, WinterbourneBristol
          11Leicester Built-up area508,916109.44,653Leicester, Syston, Whetstone, Birstall, Narborough, EnderbyLeicesterRatby no longer part of the built-up area. -

          Addition of Narborough and Enderby

          -
          12Brighton and Hove Built-up area474,48589.45,304Brighton and Hove, Worthing, Littlehampton, Shoreham-by-SeaBrightonRottingdean, Saltdean and Findon are no longer part of the built-up area.
          13Bournemouth/Poole Built-up area466,266131.03,559Bournemouth, Poole, Christchurch, Ferndown, New Milton, Wimborne MinsterBournemouth/PooleFerndown and Wimborne Minster now part of the built-up area.
          14Cardiff Built-up area447,287102.34,370Cardiff, Caerphilly, Penarth, PontypriddCardiff-NewportCaerphilly and Pontypridd now part of the built-up area.
          15Teesside Built-up area376,633108.23,482Middlesbrough, Stockton-On-Tees, Billingham, RedcarMiddlesbroughEston & Southbank now part of Middlesbrough sub-division, no longer counted as separate sub-division
          16Stoke-on-Trent Built-up area372,775103.93,588Stoke-on-Trent, Newcastle-under-Lyme, KidsgroveStoke-on-Trent
          17Coventry Built-up area359,26281.34,420Coventry, BedworthBirmingham
          18Sunderland Built-up area335,41583.54,018Sunderland, Washington, Chester-Le-Street, Hetton-le-Hole, Houghton-le-SpringNewcastle-SunderlandAddition of Washington, Chester-Le-Street, Hetton-le-Hole and Houghton-le-Spring
          19Birkenhead Built-up area325,26488.23,687Birkenhead, Wallasey, Ellesmere Port, BebingtonLiverpool
          20Reading Built-up area318,01483.73,800Reading, Wokingham, Woodley, CrowthorneLondonBracknell no longer part of the built-up area.
          21Kingston upon Hull Built-up area314,01882.63,802Kingston upon Hull, Cottingham, HessleHull
          22Preston Built-up area313,32282.43,802Preston, Bamber Bridge, Chorley, Fulwood, LeylandPrestonThe addition of Longton and Adlington to the built-up area.
          23Newport Built-up area306,84484.23,643Newport, Pontypool, Cwmbran, Blackwood, Risca, Ystrad MynachCardiff-NewportPontypool, Cwmbran and Blackwood added to the built-up area.
          24Swansea Built-up area300,35287.63,431Swansea, Neath, Port Talbot, Ystradgynlais, PontardaweSwansea/Neath/Port TalbotYstradgynlais now part of the built-up area.
          25Southend-on-Sea Built-up area295,31071.84,111Southend-on-Sea, Hullbridge, Rayleigh, RochfordLondonHullbridge now part of the built-up area.
          26Derby Built-up area270,46864.14,219Derby, Borrowash, DuffieldNottingham-Derby
          27Plymouth Built-up area260,20359.74,356Plymouth, PlymstockPlymouth
          28Luton Built-up area258,01850.75,088Luton, Dunstable, Houghton RegisLondon
          29Farnborough/Aldershot Built-up area252,39778.53,217Farnborough, Aldershot, Camberley, Farnham, Frimley, Sandhurst, YateleyLondon
          30Medway Towns Built-up area243,93152.24,677Gillingham, Chatham, RochesterLondon
          31Blackpool Built-up area239,40961.33,908Blackpool, Lytham St Annes, Poulton-le-Fylde, Thornton, CleveleysBlackpoolFleetwood no longer forms part of the built-up area.
          32Milton Keynes Built-up area229,94162.53,678'Milton Keynes',[6] Bletchley, Newport Pagnell, Woburn SandsMilton KeynesThe addition of Woburn Sands.
          33Barnsley/Dearne Valley Built-up area223,28159.73,739Barnsley, Wath upon Dearne, Wombwell, HoylandSheffield
          34Northampton Built-up area215,96357.93,731Northampton, CollingtreeNorthampton
          35Norwich Built-up area213,16661.93,444Norwich, Taverham, Costessey, Cringleford, HellesdonNorwich
          36Swindon Built-up area185,60947.13,945Swindon, Broad Blunsdon, Blunsdon St AndrewSwindon
          37Crawley Built-up area180,50858.13,107Crawley, Horley, East Grinstead, Copthorne, Crawley DownLondonThe addition of East Grinstead, Copthorne and Crawley Down. -

          Reigate and Redhill no longer part of the built-up area.

          -
          38Ipswich Built-up area178,83549.13,639Ipswich, Kesgrave, WoodbridgeIpswichThe addition of Woodbridge.
          39Wigan Built-up area175,40543.84,009Wigan, Skelmersdale, Standish, Ince-in-MakerfieldLiverpool
          40Mansfield Built-up area171,95848.43,556Mansfield, Sutton-in-Ashfield, Kirkby-in-Ashfield, Mansfield WoodhouseNottingham-Derby
          41Oxford Built-up area171,38037.44,585Oxford, Kennington, WheatleyOxfordThe addition of Kennington and Wheatley.
          42Warrington Built-up area165,45644.93,686WarringtonLiverpool
          43Slough Built-up area163,77734.14,797Slough, Stoke Poges, PoyleLondon
          44Peterborough Built-up area163,37944.23,693Peterborough, FarcetPeterborough
          45Cambridge Built-up area158,43442.13,760Cambridge, Fen Ditton, Girton, HistonCambridgeAddition of Histon and Impington and Fen Ditton
          46Doncaster Built-up area158,14143.53,634Doncaster, Bentley, Armthorpe, SprotbroughSheffieldAddition of Bessacarr
          47York Built-up area153,71734.04,518York, EarswickYork
          48Gloucester Built-up area150,05340.43,718Gloucester, InnsworthGloucester-Cheltenham
          49Burnley Built-up area149,42235.74,183Burnley, Colne, NelsonBlackburn-Burnley
          50Telford Built-up area147,98047.73,103Telford, BroseleyTelford
          51Blackburn Built-up area146,52135.64,115Blackburn, DarwenBlackburn-Burnley
          52Basildon Built-up area144,85937.13,902Basildon, Wickford, Ramsden Heath, North BenfleetLondonThe addition of Wickford to the urban area.
          53Grimsby Built-up area134,16035.33,804Grimsby, Cleethorpes, WalthamGrimsbyNew Waltham is no longer part of the Built-up area.
          54Hastings Built-up area133,42233.24,019Hastings, BexhillHastings
          55High Wycombe Built-up area133,20439.23,398High Wycombe, Cookham, Hughenden ValleyLondon
          56Thanet Built-up area125,37027.94,495Margate, Ramsgate, BroadstairsThanet
          57Accrington/Rossendale Built-up area125,05930.04,168Accrington, Rawtenstall, Bacup, Great Harwood, Haslingden, OswaldtwistleBlackburn-BurnleyAccrington Urban Area and Rossendale Urban Area combined.
          58Burton-upon-Trent Built-up area122,19935.03,487Burton-upon-Trent, SwadlincoteBurton-upon-TrentThe addition of Swadlincote, Stapenhill and Winshill[7]
          59Colchester Built-up area121,85932.73,732Colchester, Marks TeyColchester
          60Eastbourne Built-up area118,21925.14,705Eastbourne, PolegateBrighton
          61Exeter Built-up area117,76328.54,133Exeter, TopshamExeter
          62Cheltenham Built-up area116,44728.94,034Cheltenham,Gloucester-Cheltenham
          63Paignton/Torquay Built-up area115,41031.53,667Paignton, Torquay, MarldonTorbay
          64Lincoln Built-up area114,87932.73,518Lincoln, North HykehamLincoln
          65Chesterfield Built-up area113,05734.63,263Chesterfield, Staveley, Wingerworth, HolymoorsideSheffieldAddition of Wingerworth to the Built-up area.
          66Chelmsford Built-up area111,51126.24,259Chelmsford, Little WalthamLondon
          67Basingstoke Built-up area107,64229.43,662BasingstokeLondon
          68Maidstone Built-up area107,62725.44,229MaidstoneLondon
          69Bedford Built-up area106,94024.84,309Bedford, KempstonBedford
          70Worcester Built-up area101,65924.74,121Worcester, NortonWorcester
          -

          List of most populous urban areas in Scotland[edit]

          -

          The list below shows the most populous Built-up areas in Scotland as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 50,000 at the 2011 census.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          RankUrban Area[8]Population -

          (2001 Census)

          -
          Area (km²)Density (People/km²)Major subdivisionsMetropolitan Area[4]
          1Greater Glasgow976,970267.463,653Glasgow, Paisley, ClydebankGlasgow
          2Edinburgh488,610122.973,973Edinburgh, MusselburghEdinburgh
          3Aberdeen209,46065.073,219Aberdeen, Cove Bay, DyceAberdeen
          4Dundee157,69049.703,173DundeeDundee
          5Motherwell and Bellshill124,53044.482,800Motherwell, Bellshill, WishawGlasgow
          6Falkirk100,48043.392,316Falkirk, Grangemouth, Carron, Polmont, StenhousemuirFalkirk
          6Coatbridge and Airdrie90,33023.503,844Airdrie, Bargeddie, CoatbridgeGlasgow
          7Hamilton82,31027.193,028Blantyre, HamiltonGlasgow
          8East Kilbride74,74024.293,077East KilbrideGlasgow
          9Dunfermline71,82027.902,574Dunfermline, Rosyth, InverkeithingDunfermline
          10Greenock69,45020.523,384Greenock, Gourock, Port GlasgowGlasgow
          11Ayr62,87026.412,280Ayr, PrestwickAyr
          12Livingston60,03027.092,216Livingston, East Calder, Mid CalderEdinburgh
          13Cumbernauld51,61021.062,451CumbernauldGlasgow
          14Kilmarnock51,15016.643,075KilmarnockKilmarnock
          -

          List of most populous urban areas in Northern Ireland[edit]

          -

          The list below shows the most populous Built-up areas in Northern Ireland as defined by the Office for National Statistics (ONS), showing all those with a population in excess of 50,000 at the 2001 census.

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          RankUrban Area[9]Population -

          (2001 Census)

          -
          Area (km²)Density (People/km²)Major subdivisionsMetropolitan Area[4]
          1Belfast Metropolitan Urban Area579,554161.672,990.2Belfast, Castlereagh, Newtownabbey, Lisburn, BangorBelfast
          2Derry Urban Area90,73637.182,440Derry, Culmore, Strathfoyle, Newbuildings, CregganLondonderry
          3Craigavon57,68537.701,530Craigavon, Lurgan, Portadown, BlearyCraigavon
          -

          Commentary[edit]

          -

          There is a spectrum that can be drawn between the conurbations that have a clear 'head' (such as Bristol and Leicester) to those that do not, known as multi-centred conurbations (such as Bournemouth/Poole and Teesside), via ones that are more borderline (West Midlands). In the case of the West Midlands, for example, the largest city, Birmingham, expanded massively and is now considered to include areas that were formerly independent towns, such as Sutton Coldfield. However, here it stopped, with the Black Country and Wolverhampton retaining strong identities.[citation needed]

          -

          There are also various large areas in which the amount of development is substantial, although not contiguous. Heavily built up areas of this type include:

          - -

          See also[edit]

          - -

          References and Notes[edit]

          -
          -
            -
          1. ^ Office for National Statistics, 2011 Built-up Areas - Methodology and Guidance, p.3
          2. -
          3. ^ ONS definition of urban areas[dead link]
          4. -
          5. ^ a b c d e "2011 Census - Built-up areas". ONS. Retrieved 1 July 2013. 
          6. -
          7. ^ a b c d e http://www.espon.eu/export/sites/default/Documents/Projects/ESPON2006Projects/StudiesScientificSupportProjects/UrbanFunctions/fr-1.4.3_April2007-final.pdf#page=122
          8. -
          9. ^ Some of the names of subdivisions and the areas they represent have changed between the two censuses. So it may look as though an area has become part of a built-up area between the two censuses but it may have already been part of the 2001 urban area but was included under a different subdivision.
          10. -
          11. ^ The urban sub-area that the ONS has called 'Milton Keynes' is actually just the northern 80% (approx) of Milton Keynes proper. The ONS has separated out Bletchley (which is about 20% of MK) for reasons that are not explained.
          12. -
          13. ^ Stapenhill and Winshill were treated as a separate urban area in the 2001 census but in the 2011 census they were treated as part of the Burton-upon-Trent subdivision
          14. -
          15. ^ Mid-2012 Population Estimates for Settlements and Localities in Scotland General Register Office for Scotland
          16. -
          17. ^ "NISRA - Northern Ireland Statistics and Research Agency". Nisranew.nisra.gov.uk. Retrieved 2012-11-15. 
          18. -
          19. ^ "Shrinking cities and growing regions – emerging trends of new rural-urban relationships in the UK and Germany (Manchester eScholar - The University of Manchester)". Escholar.manchester.ac.uk. Retrieved 2012-11-15. 
          20. -
          21. ^ Martin Wainwright (2006-10-23). "Seeking peace and quiet? Here's where to find it | UK news". The Guardian. Retrieved 2012-11-15. 
          22. -
          -
          - - - - - - - - - - -
          -
          -
          -
          -
          -

          Navigation menu

          - -
          - -
          - - -
          -
          - - - -
          -
          - -
          - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml b/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml deleted file mode 100644 index b84928ddd..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/missingInnerValue.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals.json b/tests/FSharp.Data.Core.Tests/Data/optionals.json deleted file mode 100644 index 3d6ed8d07..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/optionals.json +++ /dev/null @@ -1,23 +0,0 @@ -{ "recordProperty" : { "stringProperty": "foo", - "intProperty": 2, - "int64Property": 2222222222, - "decimalProperty" : 2.5, - "floatProperty": 222222222222222222222222222222222222222222, - "boolProperty" : false, - "dateProperty" : "2005/5/5", - "guidProperty" : "{312B0D64-B27C-4ED2-B2A6-89EA6DD299F5}" }, - "nullProperty" : null, - "emptyStringProperty": "", - "emptyArrayProperty" : [], - "oneElementArrayProperty" : [2], - "multipleElementsArrayProperty" : [2,4,5,6], - "arrayOfObjects" : [ { "heterogeneousArrayProperty": [1,2,false,"foo"], "heterogeneousProperty": 2, "heterogeneousOptionalProperty": 2 }, - { "heterogeneousArrayProperty": [1,2,false], "heterogeneousProperty": true, "heterogeneousOptionalProperty": false }, - { "heterogeneousArrayProperty": [false], "heterogeneousProperty": "2005/5/5" } ], - "optionalPrimitives" : [ { "optionalBecauseMissing" : 1, "optionalBecauseNull" : 2, "optionalBecauseEmptyString" : 3, "notOptional" : 4, "nullNotOptional" : null }, - { "optionalBecauseNull" : null, "optionalBecauseEmptyString" : "", "notOptional" : "5" } ], - "optionalRecords" : [ { "optionalBecauseMissing" : {"a":1}, "optionalBecauseNull" : {"a":1}, "optionalBecauseEmptyString" : {"a":2}, "notOptional" : {"a":3} }, - { "optionalBecauseNull" : null, "optionalBecauseEmptyString" : "", "notOptional" : {"a":4} } ], - "heterogeneousArray" : [ { "a" : 1 }, 2, false, [5, 6, 7], [8, false, { "a": 3 }] ], - "heterogeneousRecords" : [ { "b" : { "a" : 1 }}, { "b" : 2}, { "b" : false}, { "b" : [5, 6, 7]}, { "b" : [8, false, { "a": 3 }] } ] -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals1.xml b/tests/FSharp.Data.Core.Tests/Data/optionals1.xml deleted file mode 100644 index ed9a766c2..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/optionals1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - A - B - - - C - - - D - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals2.xml b/tests/FSharp.Data.Core.Tests/Data/optionals2.xml deleted file mode 100644 index 617dc761b..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/optionals2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - A - - - - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/optionals3.xml b/tests/FSharp.Data.Core.Tests/Data/optionals3.xml deleted file mode 100644 index 9aec329c5..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/optionals3.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - A - - - - - - - - - - - B - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/po.xsd b/tests/FSharp.Data.Core.Tests/Data/po.xsd deleted file mode 100644 index bdb0a75a7..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/po.xsd +++ /dev/null @@ -1,76 +0,0 @@ - - - - Purchase order schema for Example.com. - Copyright 2000 Example.com. All rights reserved. - - - - - - - - - - - - - - - - - - - - - Purchase order schema for Example.Microsoft.com. - Copyright 2001 Example.Microsoft.com. All rights reserved. - - - Application info. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/projects.json b/tests/FSharp.Data.Core.Tests/Data/projects.json deleted file mode 100644 index 899a13a8e..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/projects.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ordercontainer": { - "backgrounds": { - "background": { "title": { "text": "purple stars" } } - }, - "project": { "title": { "text": "Avery" } } - } -} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/projects.xml b/tests/FSharp.Data.Core.Tests/Data/projects.xml deleted file mode 100644 index 77f3dadaf..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/projects.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - purple stars - - - - Avery - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/reddit.json b/tests/FSharp.Data.Core.Tests/Data/reddit.json deleted file mode 100644 index 0b32cbbe7..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/reddit.json +++ /dev/null @@ -1 +0,0 @@ -{"kind": "Listing", "data": {"modhash": "", "children": [{"kind": "t1", "data": {"subreddit_id": "t5_2u479", "link_title": "I'm fundraising for another billboard, this one outside the FCC offices, to help save net neutrality.", "banned_by": null, "subreddit": "Stand", "link_author": "kn0thing", "likes": null, "replies": null, "saved": false, "id": "ch2xdud", "gilded": 0, "author": "kn0thing", "parent_id": "t1_ch2weca", "approved_by": null, "body": "I love what YOU'RE DOING. Thanks a ton.", "edited": false, "author_flair_css_class": null, "downs": 0, "body_html": "<div class=\"md\"><p>I love what YOU&#39;RE DOING. Thanks a ton.</p>\n</div>", "link_id": "t3_2424px", "score_hidden": false, "name": "t1_ch2xdud", "created": 1398586311.0, "author_flair_text": null, "link_url": "https://www.crowdtilt.com/campaigns/save-net-neutrality-billboard-in-fccs-backyard", "created_utc": 1398557511.0, "ups": 3, "num_reports": null, "distinguished": null}}], "after": "t1_ch2xdud", "before": null}} \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html b/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html deleted file mode 100644 index b8d154a26..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/rottentomatoes.html +++ /dev/null @@ -1,20023 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - -
          - - - -
          - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Movies

          - - - - -
          -
          - - - - -

          Opening

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 85% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Mystery Road29/8
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 40% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Quiet Ones11/4
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 56% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -L'�trange couleur des larmes de ton corps (The Strange Colour of Your Body's Tears)11/4
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 95% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Lunchbox11/4
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 18% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Last Days On Mars11/4
          -
          - Show More -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - -
          - - - - - -

          Weekend's Widest Releases

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 71% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Rio 2 - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 89% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Captain America: The Winter Soldier - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 40% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Divergent - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 79% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Muppets Most Wanted - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 76% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Noah - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 96% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Lego Movie - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 92% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Grand Budapest Hotel - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 59% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Non-Stop - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 23% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Need For Speed - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 88% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Double - - -
          -
          - Show More -
          - -

          Coming Soon

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 24% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Pompeii02/5
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 32% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -3 Days To Kill20/6
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 88% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Wind Rises09/5
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Oculus13/6
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - —— - - - - - - - - - - - - - - - - - - - - - - - - - - -Heaven Is for Real09/5
          -
          - Show More -
          - - - - - - - -

          Top Rentals

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 89% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Hunger Games: Catching Fire -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 65% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Thor: The Dark World -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 89% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Frozen -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 75% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Hobbit: The Desolation Of Sm... -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 70% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Cloudy with a Chance of Meatball... -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 93% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Captain Phillips -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 78% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -42 -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 80% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Saving Mr. Banks -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 61% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Ender's Game -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 99% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Godfather, Part II -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 67% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Turbo -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 82% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Prisoners -
          - - - - - - - - -
          - -
          - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Showtimes & Tickets

          - - - - -
          -
          - - -
          - - - - -
          - - - - -
          - -
          - - - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Movie & TV News

          - - - - -
          -
          - -
          Comments
          -

          Featured on RT

          -
            - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Game of Thrones Premiere Reviews Are In! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mickey Rooney: 1920-2014 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 21 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Box Office: Record Opening for Captain America - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 41 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Video: Captain America's Red White and Blue Carpet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Weekly Ketchup: The Fantastic Four Reboot Casts Its Doctor Doom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 52 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Five Favorite Films with Sean Astin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 7 - - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Video: Captain America Isn't Getting Any - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 5 - - - - -
          • - -
          - - -

          Top Headlines

          -
            - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Universal Planning Battlestar Galactica Movie Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Breck Eisner Directing Karate Kid Sequel Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Studios File New Lawsuit Against Megaupload New York Times in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Star Wars: Episode VII Has Already Started Shooting Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Goonies Sequel May Finally Happen Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Game of Thrones Premiere Crashes HBO Go Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Chiwetel Ejiofor Wanted for Bond 24 Variety in new window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - - - -
          • - -
          - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          - - - - - - - - - - - - - - - - - - - -Celebrities

          - - - -
          - - - - - - - - - - - - - - - - - - - -View All
          -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Irfan Khan -
          -

          - - - - - - - - - - - - - - - - - - - - - - -Irfan Khan

          - -

          Highest Rated:

          - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Gunday
          - -

          Lowest Rated:

          - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 35% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -New York, I Love You
          - -

          Filmography

          - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 95% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Lunchbox
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Gunday
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 87% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Life of Pi
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - —— - - - - - - - - - - - - - - - - - - - - - - - - - - -The Amazing Spider-Man 2
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 94% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Slumdog Millionaire
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 68% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -The Darjeeling Limited
          -
          - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Around the Community

          - - - - -
          -
          - - - - - - - - -

          Today's Hot List Entries

          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Raiders of the Lost Ark - - - -
          -
            - -
          1. - - - - - - - - - - - - - - - - - - - - - - - - -Raiders of the Lost Ark (1981)
          2. - -
          3. - - - - - - - - - - - - - - - - - - - - - - - - -Inception (2010)
          4. - -
          5. - - - - - - - - - - - - - - - - - - - - - - - - -The Hunger Games: Catching Fire (2013)
          6. - -
          7. - - - - - - - - - - - - - - - - - - - - - - - - -Harry Potter and the Sorcerer's Stone (2001)
          8. - -
          9. - - - - - - - - - - - - - - - - - - - - - - - - -Captain America: The Winter Soldier (2014)
          10. - -
          -
          -
          - -

          Contributors' Hub

          - - -
          - -
          - - - - - - - - - - - -
          - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Featured Trailers & Clips

          - - - - -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Son Of God -
          -
          Son Of God
          -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - -

          Picture Galleries

          - - - - -
          -
          - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Emma Watson -
          -
          Emma Watson
          -
          -
          - - - - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Jennifer Connelly -
          -
          Jennifer Connelly
          -
          -
          - - - - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Douglas Booth -
          -
          Douglas Booth
          -
          -
          - - - - - - -
          - - - - -
          - -
          - - - - - - - - - - - - - - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - -
          - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          -
          - - - - -
          - - - - - -
          - - - - -
          - Find us on:      -     -     -     -
          - - -
          - -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/search.atom.xml b/tests/FSharp.Data.Core.Tests/Data/search.atom.xml deleted file mode 100644 index 70e642dac..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/search.atom.xml +++ /dev/null @@ -1,297 +0,0 @@ - - - tag:search.twitter.com,2005:search/Windows8 - - - Windows8 - Twitter Search - - - 2013-04-02T20:06:39Z - 15 - - - tag:search.twitter.com,2005:319179090185818113 - 2013-04-02T20:06:39Z - - J'AI plus de personnes pour le défis flash !! #windows8 #acer #tryandlikeit - J'AI plus de personnes pour le défis flash !! #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:06:39Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - MOURETTEDelph (MOURETTE) - http://twitter.com/MOURETTEDelph - - - - tag:search.twitter.com,2005:319179088025763841 - 2013-04-02T20:06:39Z - - bcp de mes camarades sont intéressent à la tablette #windows8 #acer #tryandlikeit - bcp de mes camarades sont intéressent à la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:06:39Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319179081969180673 - 2013-04-02T20:06:37Z - - Après celui de la VivoTab RT, FraWin vous propose le Test de l’Acer Iconia W510, un nouvel hybride ordinateur #windows8 #acer #tryandlikeit - Après celui de la VivoTab RT, FraWin vous propose le Test de l’Acer Iconia W510, un nouvel hybride ordinateur #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:06:37Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - AnnaSicily (chO colat ) - http://twitter.com/AnnaSicily - - - - tag:search.twitter.com,2005:319178892155944960 - 2013-04-02T20:05:52Z - - regarde le film avec la tablette est super agreable #windows8 #acer #tryandlikeit - regarde le film avec la tablette est super agreable #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:05:52Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319178777039097857 - 2013-04-02T20:05:25Z - - The #Windows8 productivity apps get more productive http://t.co/Ov1lY8VAM4 - The #<em>Windows8</em> productivity apps get more productive <a href="http://t.co/Ov1lY8VAM4">http://t.co/Ov1lY8VAM4</a> - 2013-04-02T20:05:25Z - - - - recent - - <a href="http://www.hootsuite.com">HootSuite</a> - en - - ConverterTech (Shawn Allaway) - http://twitter.com/ConverterTech - - - - tag:search.twitter.com,2005:319178745753792512 - 2013-04-02T20:05:17Z - - ecoute la musique avec la tablette est super cool, #windows8 #acer #tryandlikeit - ecoute la musique avec la tablette est super cool, #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:05:17Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319178625767317504 - 2013-04-02T20:04:49Z - - Step-By-Step: Deploying Windows 8 w/ System Center 2012 SP1 http://t.co/vm9VNzUdpA #CANITPRO #ITPRO #myITForum #SysCtr #Windows8 #ConfigMgr - Step-By-Step: Deploying Windows 8 w/ System Center 2012 SP1 <a href="http://t.co/vm9VNzUdpA">http://t.co/vm9VNzUdpA</a> <a href="http://search.twitter.com/search?q=%23CANITPRO" title="#CANITPRO" class=" ">#CANITPRO</a> <a href="http://search.twitter.com/search?q=%23ITPRO" title="#ITPRO" class=" ">#ITPRO</a> <a href="http://search.twitter.com/search?q=%23myITForum" title="#myITForum" class=" ">#myITForum</a> <a href="http://search.twitter.com/search?q=%23SysCtr" title="#SysCtr" class=" ">#SysCtr</a> #<em>Windows8</em> <a href="http://search.twitter.com/search?q=%23ConfigMgr" title="#ConfigMgr" class=" ">#ConfigMgr</a> - 2013-04-02T20:04:49Z - - - - recent - - <a href="http://www.tweetdeck.com">TweetDeck</a> - en - - WirelessLife (Anthony Bartolo) - http://twitter.com/WirelessLife - - - - tag:search.twitter.com,2005:319178494506586112 - 2013-04-02T20:04:17Z - - ecoute la musique avec la tablette est super cool #windows8 #acer #tryandlikeit - ecoute la musique avec la tablette est super cool #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:04:17Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319178479600013312 - 2013-04-02T20:04:14Z - - Messi n'est plus sur la pelouse... #windows8 #acer #tryandlikeit - Messi n'est plus sur la pelouse... #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:04:14Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Geek_Erick (Erick Péchereau) - http://twitter.com/Geek_Erick - - - - tag:search.twitter.com,2005:319178376592117760 - 2013-04-02T20:03:49Z - - No alcanzaron ni a vender el #Windows8 y sale el 8.1 - No alcanzaron ni a vender el #<em>Windows8</em> y sale el 8.1 - 2013-04-02T20:03:49Z - - - - recent - - <a href="http://twitter.com/download/android">Twitter for Android</a> - es - - ppanchaa (pancha♡) - http://twitter.com/ppanchaa - - - - tag:search.twitter.com,2005:319178076124753920 - 2013-04-02T20:02:38Z - - Playing Resident Evil 6 #Windows8; 1 and 2 great when they first came out, loved 5, now see what 6 has to offer,graphics great so far. - Playing Resident Evil 6 #<em>Windows8</em>; 1 and 2 great when they first came out, loved 5, now see what 6 has to offer,graphics great so far. - 2013-04-02T20:02:38Z - - - - recent - - <a href="http://twitter.com/download/iphone">Twitter for iPhone</a> - en - - SteBar1 (Steve Bartlett) - http://twitter.com/SteBar1 - - - - tag:search.twitter.com,2005:319178055564271616 - 2013-04-02T20:02:33Z - - RT @pierreroman: Step-By-Step: Deploying Windows 8 with System Center 2012 Service Pack 1 : http://t.co/CvlkQ02SFq # CanITPro #SysCtr # ... - RT @<a class=" " href="https://twitter.com/pierreroman">pierreroman</a>: Step-By-Step: Deploying Windows 8 with System Center 2012 Service Pack 1 : <a href="http://t.co/CvlkQ02SFq">http://t.co/CvlkQ02SFq</a> # CanITPro <a href="http://search.twitter.com/search?q=%23SysCtr" title="#SysCtr" class=" ">#SysCtr</a> # ... - 2013-04-02T20:02:33Z - - - - recent - - <a href="http://www.tweetdeck.com">TweetDeck</a> - en - - DamirB (DamirB) - http://twitter.com/DamirB - - - - tag:search.twitter.com,2005:319177851528171520 - 2013-04-02T20:01:44Z - - je me sens très très bien utiliser la tablette #windows8 #acer #tryandlikeit - je me sens très très bien utiliser la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:01:44Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319177690483671041 - 2013-04-02T20:01:06Z - - je bien profit la tablette #windows8 #acer #tryandlikeit - je bien profit la tablette #<em>windows8</em> <a href="http://search.twitter.com/search?q=%23acer" title="#acer" class=" ">#acer</a> <a href="http://search.twitter.com/search?q=%23tryandlikeit" title="#tryandlikeit" class=" ">#tryandlikeit</a> - 2013-04-02T20:01:06Z - - - - recent - - <a href="https://application.tryandlikeit.fr">Try and Like It - L'application</a> - fr - - Flavieli1 (Flavie li) - http://twitter.com/Flavieli1 - - - - tag:search.twitter.com,2005:319177470978961409 - 2013-04-02T20:00:13Z - - News: How to keep the #Windows8 Display ON during audio/video playback? http://t.co/ba4ecWzSp2 via @kunal2383 #win8dev #winrt - News: How to keep the #<em>Windows8</em> Display ON during audio/video playback? <a href="http://t.co/ba4ecWzSp2">http://t.co/ba4ecWzSp2</a> via @<a class=" " href="https://twitter.com/kunal2383">kunal2383</a> <a href="http://search.twitter.com/search?q=%23win8dev" title="#win8dev" class=" ">#win8dev</a> <a href="http://search.twitter.com/search?q=%23winrt" title="#winrt" class=" ">#winrt</a> - 2013-04-02T20:00:13Z - - - - recent - - <a href="http://bufferapp.com">Buffer</a> - en - - silverlightshow (silverlightshow) - http://twitter.com/silverlightshow - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv b/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv deleted file mode 100644 index bdcdea7e7..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/tendulkarHistoryWithGameNumber.csv +++ /dev/null @@ -1,201 +0,0 @@ -Game,Bat1,Bat2,Runs,Wkts,Conceded,Caught,Stumped,,Opposition,Ground,StartDate -1,15,DNB,15,0,25,0,0,,v Pakistan,Karachi,11/15/1989 -2,59,8,67,-,-,1,0,,v Pakistan,Faisalabad,11/23/1989 -3,41,-,41,-,-,0,0,,v Pakistan,Lahore,12/1/89 -4,35,57,92,-,-,0,0,,v Pakistan,Sialkot,12/9/89 -5,0,24,24,-,-,0,0,,v New Zealand,Christchurch,2/2/90 -6,88,-,88,-,-,0,0,,v New Zealand,Napier,2/9/90 -7,5,DNB,5,-,-,1,0,,v New Zealand,Auckland,2/22/1990 -8,10,27,37,-,-,1,0,,v England,Lord's,7/26/1990 -9,68,119*,187,-,-,2,0,,v England,Manchester,8/9/90 -10,21,-,21,-,-,0,0,,v England,The Oval,8/23/1990 -11,11,-,11,-,-,0,0,,v Sri Lanka,Chandigarh,11/23/1990 -12,16,7,23,0,13,0,0,,v Australia,Brisbane,11/29/1991 -13,15,40,55,0,16,2,0,,v Australia,Melbourne,12/26/1991 -14,148*,-,148,1,2,1,0,,v Australia,Sydney,1/2/92 -15,6,17,23,2,54,1,0,,v Australia,Adelaide,1/25/1992 -16,114,5,119,0,9,1,0,,v Australia,Perth,2/1/92 -17,0,-,0,0,8,0,0,,v Zimbabwe,Harare,10/18/1992 -18,11,-,11,0,3,2,0,,v South Africa,Durban,11/13/1992 -19,111,1,112,0,2,1,0,,v South Africa,Johannesburg,11/26/1992 -20,6,0,6,1,9,0,0,,v South Africa,Port Elizabeth,12/26/1992 -21,73,DNB,73,-,-,1,0,,v South Africa,Cape Town,1/2/93 -22,50,9*,59,-,-,1,0,,v England,Kolkata,1/29/1993 -23,165,-,165,0,9,2,0,,v England,Chennai,2/11/93 -24,78,-,78,-,-,1,0,,v England,Mumbai,2/19/1993 -25,62,-,62,0,11,0,0,,v Zimbabwe,Delhi,3/13/1993 -26,TDNB,-,-,-,-,0,0,,v Sri Lanka,Kandy,7/17/1993 -27,28,104*,132,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/27/1993 -28,71,-,71,0,4,3,0,,v Sri Lanka,Colombo (PSS),8/4/93 -29,142,-,142,-,-,0,0,,v Sri Lanka,Lucknow,1/18/1994 -30,96,-,96,-,-,2,0,,v Sri Lanka,Bangalore,1/26/1994 -31,6,-,6,0,7,0,0,,v Sri Lanka,Ahmedabad,2/8/94 -32,43,11*,54,-,-,0,0,,v New Zealand,Hamilton,3/19/1994 -33,34,85,119,0,9,3,0,,v West Indies,Mumbai,11/18/1994 -34,179,54,233,-,-,2,0,,v West Indies,Nagpur,12/1/94 -35,40,10,50,0,10,0,0,,v West Indies,Mohali,12/10/1994 -36,4,0*,4,-,-,3,0,,v New Zealand,Bangalore,10/18/1995 -37,52*,-,52,-,-,-,-,,v New Zealand,Chennai,10/25/1995 -38,2,-,2,-,-,0,0,,v New Zealand,Cuttack,11/8/95 -39,24,122,146,-,-,0,0,,v England,Birmingham,6/6/96 -40,31,-,31,0,1,2,0,,v England,Lord's,6/20/1996 -41,177,74,251,0,28,0,0,,v England,Nottingham,7/4/96 -42,10,0,10,-,-,0,0,,v Australia,Delhi,10/10/1996 -43,42,7,49,-,-,0,0,,v South Africa,Ahmedabad,11/20/1996 -44,18,2,20,-,-,0,0,,v South Africa,Kolkata,11/27/1996 -45,61,36,97,-,-,1,0,,v South Africa,Kanpur,12/8/96 -46,15,4,19,0,0,2,0,,v South Africa,Durban,12/26/1996 -47,169,9,178,-,-,1,0,,v South Africa,Cape Town,1/2/97 -48,35,9,44,0,18,0,0,,v South Africa,Johannesburg,1/16/1997 -49,7,15*,22,0,9,1,0,,v West Indies,Kingston,3/6/97 -50,88,-,88,-,-,0,0,,v West Indies,Port of Spain,3/14/1997 -51,92,4,96,-,-,3,0,,v West Indies,Bridgetown,3/27/1997 -52,DNB,-,-,-,-,1,0,,v West Indies,St John's,4/4/97 -53,83,-,83,-,-,0,0,,v West Indies,Georgetown,4/17/1997 -54,143,-,143,0,2,0,0,,v Sri Lanka,Colombo (RPS),8/2/97 -55,139,8,147,-,-,1,0,,v Sri Lanka,Colombo (SSC),8/9/97 -56,23,-,23,-,-,1,0,,v Sri Lanka,Mohali,11/19/1997 -57,15,-,15,-,-,-,-,,v Sri Lanka,Nagpur,11/26/1997 -58,148,13,161,0,0,1,0,,v Sri Lanka,Mumbai,12/3/97 -59,4,155*,159,-,-,1,0,,v Australia,Chennai,3/6/98 -60,79,-,79,0,6,0,0,,v Australia,Kolkata,3/18/1998 -61,177,31,208,1,41,1,0,,v Australia,Bangalore,3/25/1998 -62,34,7,41,-,-,0,0,,v Zimbabwe,Harare,10/7/98 -63,47,113,160,2,15,1,0,,v New Zealand,Wellington,12/26/1998 -64,67,DNB,67,2,53,0,0,,v New Zealand,Hamilton,1/2/99 -65,0,136,136,3,45,0,0,,v Pakistan,Chennai,1/28/1999 -66,6,29,35,-,-,0,0,,v Pakistan,Delhi,2/4/99 -67,0,9,9,1,18,0,0,,v Pakistan,Kolkata,2/16/1999 -68,53,124*,177,0,16,0,0,,v Sri Lanka,Colombo (SSC),2/24/1999 -69,18,126*,144,0,11,0,0,,v New Zealand,Mohali,10/10/1999 -70,15,44*,59,-,-,2,0,,v New Zealand,Kanpur,10/22/1999 -71,217,15,232,0,19,0,0,,v New Zealand,Ahmedabad,10/29/1999 -72,61,0,61,0,12,0,0,,v Australia,Adelaide,12/10/1999 -73,116,52,168,-,-,0,0,,v Australia,Melbourne,12/26/1999 -74,45,4,49,1,34,0,0,,v Australia,Sydney,1/2/00 -75,97,8,105,3,14,0,0,,v South Africa,Mumbai,2/24/2000 -76,21,20,41,0,33,2,0,,v South Africa,Bangalore,3/2/00 -77,18,DNB,18,1,34,0,0,,v Bangladesh,Dhaka,11/10/2000 -78,122,39,161,1,61,1,0,,v Zimbabwe,Delhi,11/18/2000 -79,201*,-,201,0,26,2,0,,v Zimbabwe,Nagpur,11/25/2000 -80,76,65,141,0,35,1,0,,v Australia,Mumbai,2/27/2001 -81,10,10,20,3,38,0,0,,v Australia,Kolkata,3/11/01 -82,126,17,143,0,78,0,0,,v Australia,Chennai,3/18/2001 -83,74,36*,110,0,23,0,0,,v Zimbabwe,Bulawayo,6/7/01 -84,20,69,89,1,26,0,0,,v Zimbabwe,Harare,6/15/2001 -85,155,15,170,0,27,0,0,,v South Africa,Bloemfontein,11/3/01 -86,1,22*,23,1,32,0,0,,v South Africa,Port Elizabeth,11/16/2001 -87,88,DNB,88,0,4,0,0,,v England,Mohali,12/3/01 -88,103,26,129,1,27,3,0,,v England,Ahmedabad,12/11/2001 -89,90,-,90,0,19,1,0,,v England,Bangalore,12/19/2001 -90,176,-,176,0,11,1,0,,v Zimbabwe,Nagpur,2/21/2002 -91,36,42,78,0,6,1,0,,v Zimbabwe,Delhi,2/28/2002 -92,79,-,79,0,18,0,0,,v West Indies,Georgetown,4/11/02 -93,117,0,117,0,6,1,0,,v West Indies,Port of Spain,4/19/2002 -94,0,8,8,0,8,1,0,,v West Indies,Bridgetown,5/2/02 -95,0,-,0,2,107,0,0,,v West Indies,St John's,5/10/02 -96,41,86,127,-,-,0,0,,v West Indies,Kingston,5/18/2002 -97,16,12,28,0,14,1,0,,v England,Lord's,7/25/2002 -98,34,92,126,0,15,0,0,,v England,Nottingham,8/8/02 -99,193,-,193,-,-,0,0,,v England,Leeds,8/22/2002 -100,54,-,54,0,4,0,0,,v England,The Oval,9/5/02 -101,35,-,35,0,2,1,0,,v West Indies,Mumbai,10/9/02 -102,43,16*,59,-,-,1,0,,v West Indies,Chennai,10/17/2002 -103,36,176,212,0,33,0,0,,v West Indies,Kolkata,10/30/2002 -104,8,51,59,-,-,0,0,,v New Zealand,Wellington,12/12/2002 -105,9,32,41,-,-,1,0,,v New Zealand,Hamilton,12/19/2002 -106,8,7,15,0,45,0,0,,v New Zealand,Ahmedabad,10/8/03 -107,55,1,56,1,55,0,0,,v New Zealand,Mohali,10/16/2003 -108,0,DNB,0,0,9,0,0,,v Australia,Brisbane,12/4/03 -109,1,37,38,2,39,0,0,,v Australia,Adelaide,12/12/2003 -110,0,44,44,1,57,2,0,,v Australia,Melbourne,12/26/2003 -111,241*,60*,301,0,36,1,0,,v Australia,Sydney,1/2/04 -112,194*,-,194,2,59,1,0,,v Pakistan,Multan,3/28/2004 -113,2,8,10,1,38,0,0,,v Pakistan,Lahore,4/5/04 -114,1,-,1,1,1,0,0,,v Pakistan,Rawalpindi,4/13/2004 -115,8,2,10,0,41,0,0,,v Australia,Nagpur,10/26/2004 -116,5,55,60,-,-,1,0,,v Australia,Mumbai,11/3/04 -117,3,-,3,0,54,0,0,,v South Africa,Kanpur,11/20/2004 -118,20,32*,52,0,8,0,0,,v South Africa,Kolkata,11/28/2004 -119,248*,-,248,-,-,2,0,,v Bangladesh,Dhaka,12/10/2004 -120,36,-,36,1,39,0,0,,v Bangladesh,Chittagong,12/17/2004 -121,94,DNB,94,0,30,0,0,,v Pakistan,Mohali,3/8/05 -122,52,52,104,-,-,2,0,,v Pakistan,Kolkata,3/16/2005 -123,41,16,57,1,76,0,0,,v Pakistan,Bangalore,3/24/2005 -124,22,-,22,-,-,0,0,,v Sri Lanka,Chennai,12/2/05 -125,109,16,125,0,6,0,0,,v Sri Lanka,Delhi,12/10/2005 -126,23,19,42,0,13,0,0,,v Sri Lanka,Ahmedabad,12/18/2005 -127,DNB,-,-,0,16,0,0,,v Pakistan,Lahore,1/13/2006 -128,14,DNB,14,-,-,1,0,,v Pakistan,Faisalabad,1/21/2006 -129,23,26,49,0,40,3,0,,v Pakistan,Karachi,1/29/2006 -130,16,28*,44,0,11,0,0,,v England,Nagpur,3/1/06 -131,4,DNB,4,-,-,0,0,,v England,Mohali,3/9/06 -132,1,34,35,-,-,1,0,,v England,Mumbai,3/18/2006 -133,44,14,58,-,-,1,0,,v South Africa,Johannesburg,12/15/2006 -134,63,0,63,-,-,2,0,,v South Africa,Durban,12/26/2006 -135,64,14,78,1,33,0,0,,v South Africa,Cape Town,1/2/07 -136,101,31,132,1,22,2,0,,v Bangladesh,Chittagong,5/18/2007 -137,122*,-,122,2,35,2,0,,v Bangladesh,Dhaka,5/25/2007 -138,37,16,53,0,10,1,0,,v England,Lord's,7/19/2007 -139,91,1,92,0,38,2,0,,v England,Nottingham,7/27/2007 -140,82,1,83,1,104,1,0,,v England,The Oval,8/9/07 -141,1,56*,57,0,8,0,0,,v Pakistan,Delhi,11/22/2007 -142,82,DNB,82,0,39,0,0,,v Pakistan,Kolkata,11/30/2007 -143,62,15,77,0,4,2,0,,v Australia,Melbourne,12/26/2007 -144,154*,12,166,0,20,3,0,,v Australia,Sydney,1/2/08 -145,71,13,84,-,-,0,0,,v Australia,Perth,1/16/2008 -146,153,13,166,0,6,0,0,,v Australia,Adelaide,1/24/2008 -147,0,-,0,-,-,0,0,,v South Africa,Chennai,3/26/2008 -148,27,12,39,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/23/2008 -149,5,31,36,-,-,0,0,,v Sri Lanka,Galle,7/31/2008 -150,6,14,20,-,-,0,0,,v Sri Lanka,Colombo (PSS),8/8/08 -151,13,49,62,-,-,0,0,,v Australia,Bangalore,10/9/08 -152,88,10*,98,-,-,1,0,,v Australia,Mohali,10/17/2008 -153,68,47,115,0,2,0,0,,v Australia,Delhi,10/29/2008 -154,109,12,121,0,13,1,0,,v Australia,Nagpur,11/6/08 -155,37,103*,140,-,-,0,0,,v England,Chennai,12/11/2008 -156,11,5,16,-,-,0,0,,v England,Mohali,12/19/2008 -157,160,DNB,160,-,-,1,0,,v New Zealand,Hamilton,3/18/2009 -158,49,64,113,-,-,1,0,,v New Zealand,Napier,3/26/2009 -159,62,9,71,2,45,0,0,,v New Zealand,Wellington,4/3/09 -160,4,100*,104,0,20,1,0,,v Sri Lanka,Ahmedabad,11/16/2009 -161,40,-,40,0,6,1,0,,v Sri Lanka,Kanpur,11/24/2009 -162,53,-,53,-,-,0,0,,v Sri Lanka,Mumbai (BS),12/2/09 -163,105*,16,121,-,-,0,0,,v Bangladesh,Chittagong,1/17/2010 -164,143,DNB,143,-,-,0,0,,v Bangladesh,Dhaka,1/24/2010 -165,7,100,107,-,-,0,0,,v South Africa,Nagpur,2/6/10 -166,106,-,106,0,1,0,0,,v South Africa,Kolkata,2/14/2010 -167,8,84,92,-,-,1,0,,v Sri Lanka,Galle,7/18/2010 -168,203,-,203,-,-,0,0,,v Sri Lanka,Colombo (SSC),7/26/2010 -169,41,54,95,-,-,1,0,,v Sri Lanka,Colombo (PSS),8/3/10 -170,98,38,136,-,-,0,0,,v Australia,Mohali,10/1/10 -171,214,53*,267,-,-,0,0,,v Australia,Bangalore,10/9/10 -172,40,12,52,0,16,0,0,,v New Zealand,Ahmedabad,11/4/10 -173,13,DNB,13,0,7,0,0,,v New Zealand,Hyderabad (Deccan),11/12/2010 -174,61,-,61,-,-,0,0,,v New Zealand,Nagpur,11/20/2010 -175,36,111*,147,0,51,0,0,,v South Africa,Centurion,12/16/2010 -176,13,6,19,0,6,0,0,,v South Africa,Durban,12/26/2010 -177,146,14*,160,1,9,0,0,,v South Africa,Cape Town,1/2/11 -178,34,12,46,-,-,0,0,,v England,Lord's,7/21/2011 -179,16,56,72,-,-,1,0,,v England,Nottingham,7/29/2011 -180,1,40,41,0,17,1,0,,v England,Birmingham,8/10/11 -181,23,91,114,0,11,0,0,,v England,The Oval,8/18/2011 -182,7,76,83,-,-,0,0,,v West Indies,Delhi,11/6/11 -183,38,-,38,-,-,0,0,,v West Indies,Kolkata,11/14/2011 -184,94,3,97,0,29,2,0,,v West Indies,Mumbai,11/22/2011 -185,73,32,105,-,-,0,0,,v Australia,Melbourne,12/26/2011 -186,41,80,121,-,-,2,0,,v Australia,Sydney,1/3/12 -187,15,8,23,-,-,0,0,,v Australia,Perth,1/13/2012 -188,25,13,38,-,-,1,0,,v Australia,Adelaide,1/24/2012 -189,19,-,19,0,6,0,0,,v New Zealand,Hyderabad (Deccan),8/23/2012 -190,17,27,44,-,-,0,0,,v New Zealand,Bangalore,8/31/2012 -191,13,DNB,13,0,8,1,0,,v England,Ahmedabad,11/15/2012 -192,8,8,16,-,-,0,0,,v England,Mumbai,11/23/2012 -193,76,5,81,-,-,0,0,,v England,Kolkata,12/5/12 -194,2,-,2,-,-,0,0,,v England,Nagpur,12/13/2012 -195,81,13*,94,-,-,1,0,,v Australia,Chennai,2/22/2013 -196,7,-,7,-,-,0,0,,v Australia,Hyderabad (Deccan),3/2/13 -197,37,21,58,0,2,0,0,,v Australia,Mohali,3/14/2013 -198,32,1,33,-,-,0,0,,v Australia,Delhi,3/22/2013 -199,10,-,10,1,23,0,0,,v West Indies,Kolkata,11/6/13 -200,74,-,74,-,-,0,0,,v West Indies,Mumbai,11/14/2013 diff --git a/tests/FSharp.Data.Core.Tests/Data/topics.json b/tests/FSharp.Data.Core.Tests/Data/topics.json deleted file mode 100644 index 646a284c9..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/topics.json +++ /dev/null @@ -1,5619 +0,0 @@ -[{"photo":"https://s3.amazonaws.com/coursera/topics/ml/large-icon.png","preview_link":"https://class.coursera.org/ml/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/ml/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/ml/large-icon.png","video":"e0WKJLovaZg","university-ids":["stanford"],"id":2,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":null,"short_description":"Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.","short_name":"ml","category-ids":["stats","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/ml/small-icon.hover.png","instructor":"Andrew Ng, Associate Professor","categories":[{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Machine Learning","language":"en","courses":[{"grading_policy_distinction":"N/A","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":20,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":152,"start_month":8,"certificate_description":"Congratulations! You have successfully completed the online Machine Learning course (ml-class.org). To successfully complete the course, students were required to watch lectures, review questions and complete programming assignments. ","start_date_string":"20 August 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-03-10","certificates_ready":true,"signature_track_price":null,"statement_design_id":8,"signature_track_registration_open":false,"topic_id":2,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[232841],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 18 equally-weighted quizzes (1/3 of the total grade) and 8 programming assignments (2/3 of the total grade). The lowest two quiz grades were dropped, as well as the lowest programming assignment grade. To receive a Statement of Accomplishment, you must have obtained 80% or more of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/ml-2012-002/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[152],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/pgm/large-icon.png","preview_link":"https://class.coursera.org/pgm/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/pgm/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/pgm/large-icon.png","video":"bVMBe50GfnI","university-ids":["stanford"],"id":3,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":null,"short_description":"In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.","short_name":"pgm","category-ids":["cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/pgm/small-icon.hover.png","instructor":"Daphne Koller, Professor","categories":[{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Probabilistic Graphical Models","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 20 assessments (25% of the final grade), 9 programming assignments with companion quizzes (together worth 63% of the final grade) and a final exam (12% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"11 weeks","signature_track_last_chance_time":null,"id":82,"start_month":9,"certificate_description":"This graduate-level course covers the essentials of probabilistic graphical models and their applications: the representation of Bayesian and Markov networks; exact and approximate inference in these networks; and parameter and structure learning.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-19","certificates_ready":true,"signature_track_price":null,"statement_design_id":8,"signature_track_registration_open":false,"topic_id":3,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":84.5634194535585,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":81.3340565033494,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1257],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 20 assignments (77.5% of the final grade) and a final exam (22.5% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have achieved 70% or more of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/pgm-2012-002/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[82],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/modelthinking/large-icon.png","preview_link":"https://class.coursera.org/modelthinking-004/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/modelthinking/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/modelthinking/large-icon.png","video":"RX5LBZvEh10","university-ids":["umich"],"id":11,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"In this class, you will learn how to think with models and use them to make sense of the complex world around us.","short_name":"modelthinking","category-ids":["economics","humanities"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/modelthinking/small-icon.hover.png","instructor":"Scott E. Page","categories":[{"id":2,"name":"Economics & Finance","mailing_list_id":null,"short_name":"economics","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":6,"name":"Humanities ","mailing_list_id":11,"short_name":"humanities","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Model Thinking","language":"en","courses":[{"grading_policy_distinction":"N/A","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":null,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":30,"start_month":2,"certificate_description":"This course provided an introduction on how to think using models. Specific topics included, among others, decision-making, tipping points, economic models, crowd dynamics, Markov processes, game theory and predictive thinking.","start_date_string":"Feb 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-05-13","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":11,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":95.9090909090909,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":95.9090909090909,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[785],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"This Statement of Accomplishment has been granted to all students who earned a grade of 70% or above.","ace_open_date":null,"home_link":"https://class.coursera.org/modelthinking/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[30],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/b5/62b8827c61b48597f9b526ce04aaee/dbLogo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/cb/61b70b13451469aa582fc91d020f64/dbLogo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/c9/643d403b593b865b40c64b0f6cc33c/dbLogo.jpg","video":"","university-ids":["stanford"],"id":12,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":2,"favicon":"https://coursera-university-assets.s3.amazonaws.com/dc/581cda352d067023dcdcc0d9efd36e/favicon-stanford.ico","website_facebook":"","logo":"https://coursera-university-assets.s3.amazonaws.com/d8/4c69670e0826e42c6cd80b4a02b9a2/stanford.png","background_color":"","id":1,"location_city":"Palo Alto","location_country":"US","location_lat":37.44188340000000000,"location":"Palo Alto, CA, United States","primary_color":"#8c1515","abbr_name":"Stanford","website":"","description":"The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.","short_name":"stanford","landing_page_banner":"","mailing_list_id":null,"website_youtube":"","partner_type":1,"banner":"","location_state":"CA","name":"Stanford University","square_logo":"","square_logo_source":"","square_logo_svg":"","location_lng":-122.14301949999998000,"home_link":"http://online.stanford.edu/","class_logo":"https://coursera-university-assets.s3.amazonaws.com/21/9a0294e2bf773901afbfcb5ef47d97/Stanford_Coursera-200x48_RedText_BG.png","display":true}],"self_service_course_id":32,"short_description":"This course covers database design and the use of database management systems for applications.","short_name":"db","category-ids":["cs-systems","cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/cb/61b70b13451469aa582fc91d020f64/dbLogo.jpg","instructor":"Jennifer Widom, Professor","categories":[{"id":11,"name":"Computer Science: Systems & Security","mailing_list_id":null,"short_name":"cs-systems","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Databases","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":null,"duration_string":"","signature_track_last_chance_time":null,"id":32,"start_month":null,"certificate_description":"","start_date_string":"Self-service","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":12,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":null,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[1196954],"active":true,"eligible_for_certificates":false,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"2012-selfservice","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/db/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[32],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/sna/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/sna/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/sna/large-icon.png","video":"AJGGiAb47S4","university-ids":["umich"],"id":38,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.","short_name":"sna","category-ids":["infotech","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/sna/small-icon.hover.png","instructor":"Lada Adamic","categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Social Network Analysis","language":"en","courses":[{"grading_policy_distinction":"The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":108,"start_month":9,"certificate_description":"This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-06","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":38,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":70.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":85.6667,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[123682],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/sna-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[108],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/introfinance/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/introfinance/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/introfinance/large-icon.png","video":"7xy0mKUCXV4","university-ids":["umich"],"id":40,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/75/07a2c2f614597144b29c9e63bbee75/U-M_Coursera_Logo-2.svg","wordmark":null,"website_twitter":"umich","china_mirror":3,"favicon":"https://coursera-university-assets.s3.amazonaws.com/50/52265d555e7bf0b0b86f7a1a07a183/favicon-umich.ico","website_facebook":"universityofmichigan","logo":"https://coursera-university-assets.s3.amazonaws.com/99/263203c94842c44bcf757c4a801e8f/U-M_LogoSmHoriz_160x60.png","background_color":"","id":3,"location_city":"Ann Arbor","location_country":"US","location_lat":42.28082560000000000,"location":"Ann Arbor, MI","primary_color":"#002e5f","abbr_name":"Michigan","website":"http://www.umich.edu/","description":"The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.","short_name":"umich","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/03/70c6a457583d267a869cb6555b4de5/DIL-17Apr12_AT150a_EDIT_TO_2.jpg","mailing_list_id":null,"website_youtube":"user/um","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/36/1d953d8380a15d8eb0d307c7cde0bb/banner-umich.jpg","location_state":"MI","name":"University of Michigan","square_logo":"https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/26/23ecbedd1043250eab7d1b0a41696b/New-Block-M-Stacked-Blue-295C_600x600.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/6b/fce84d27ebcd493f839f14df253541/New-Block-M-Stacked-Blue-295C_.svg","location_lng":-83.74303780000002000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/05/1a1f4b975bf71dba0ac79042ed651e/U-M_LogoSmHoriz_200x48.png","display":true}],"self_service_course_id":null,"short_description":"This course will introduce you to frameworks and tools to measure value; both for corporate and personal assets. It will also help you in decision-making, again at both the corporate and personal levels.","short_name":"introfinance","category-ids":["economics","business"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/introfinance/small-icon.hover.png","instructor":"Gautam Kaul","categories":[{"id":2,"name":"Economics & Finance","mailing_list_id":null,"short_name":"economics","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":13,"name":"Business & Management","mailing_list_id":null,"short_name":"business","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Finance","language":"en","courses":[{"grading_policy_distinction":" ","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":23,"duration_string":"13 weeks","signature_track_last_chance_time":null,"id":112,"start_month":7,"certificate_description":"You have successfully completed the course, Introduction to Finance, an online, non-credit course, authorized by the University of Michigan and taught by Professor Gautam Kaul of the University of Michigan.","start_date_string":"23 July 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-03-18","certificates_ready":true,"signature_track_price":null,"statement_design_id":3,"signature_track_registration_open":false,"topic_id":40,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[209008],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"This student scored at least 70% on five of the nine assignments, and earned a minimum of 70% on the final exam.","ace_open_date":null,"home_link":"https://class.coursera.org/introfinance-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[112],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/65/633c11334e2ae04b02afbe1edf0085/data_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/85/66e0866777387498cefc7190837922/data_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f0/2cf694d28c1bca40bc1604b0d43c46/data_B-02.jpg","video":"-lutj1vrPwQ","university-ids":["jhu"],"id":61,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Learn about the most effective data analysis methods to solve problems and achieve insight.","short_name":"dataanalysis","category-ids":["health","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/85/66e0866777387498cefc7190837922/data_B-02.jpg","instructor":"Jeff Leek","categories":[{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Data Analysis","language":"en","courses":[{"grading_policy_distinction":"The final grade is based eight weekly quizzes worth 10 points and two peer-reviewed data analysis reports worth 40 points each. There are 160 total points for the course. To earn the statement of accomplishment with distinction for the course, a student must earn at least 144 points.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":28,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":971332,"start_month":10,"certificate_description":"This course teaches students the most effective data analysis methods to solve problems and achieve insight.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":61,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[694443],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"002","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade is based eight weekly quizzes worth 10 points and two peer-reviewed data analysis reports worth 40 points each. There are 160 total points for the course. To earn the statement of accomplishment for the course, a student must earn at least 100 points.","ace_open_date":null,"home_link":"https://class.coursera.org/dataanalysis-002/","creator_id":248174,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/73/45231e50250d1f9778f9c45850c362/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[971332],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/9d/193d89375944329ca3c0bf32b32c56/computing_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/97/aba290f88787a8c3b13a816837ab6c/computing_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/76/469a2849f2ae5a29cbefba53c82592/computing_B-02.jpg","video":"gk6E57H6mTs","university-ids":["jhu"],"id":63,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"This course is about learning the fundamental computing skills necessary for effective data analysis. You will learn to program in R and to use R for reading data, writing functions, making informative graphs, and applying modern statistical methods.","short_name":"compdata","category-ids":["health","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/97/aba290f88787a8c3b13a816837ab6c/computing_B-02.jpg","instructor":"Roger Peng","categories":[{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Computing for Data Analysis","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 90% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"4 weeks","signature_track_last_chance_time":null,"id":300,"start_month":9,"certificate_description":"In this course students learn programming in R, reading data into R, creating data graphics, accessing and installing R packages, writing R functions, debugging, and organizing and commenting R code. ","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-06","certificates_ready":true,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":63,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":100.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[685384],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 70% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/compdata-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/46/2952c73da820e080b97b63f9ac0fba/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[300],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/eb/cf8c0e7e0bb418255e48fe210446c1/bootcamp_B-02.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/cd/3cc4db194a8f70139ec63afd200a0f/bootcamp_B-02.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/99/b022103b7d744911d090acafe2cb98/bootcamp_B-02.jpg","video":"ekdpaf_WT_8","university-ids":["jhu"],"id":68,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"JohnsHopkins","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/80/d81353ccd0bab30962a5770d7aec97/favicon-jhu.ico","website_facebook":"johnshopkinsuniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/cf/0db65d1501244b9e6eacfa5e637fea/logo-jhu-front.png","background_color":"","id":8,"location_city":"Baltimore","location_country":"US","location_lat":39.29038480000000000,"location":"Baltimore, MD","primary_color":"#0061AA","abbr_name":"Johns Hopkins","website":"http://www.jhu.edu/","description":"The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.","short_name":"jhu","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c2/544537cee93c0acd67b6573d46a32e/Coursera-banner.jpg","mailing_list_id":null,"website_youtube":"johnshopkins","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/83/94437b11dcbef874ea1f30d960a26b/banner-jhu.jpg","location_state":"MD","name":"Johns Hopkins University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/4b/229e9cabab40da92cdd0fc46cd7e06/JHUNewSquare.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/1d/4b4ca39464d8fd3a75bf8a68d0a1d9/JHUNewSquare.png","square_logo_svg":"","location_lng":-76.61218930000001000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"This class presents the fundamental probability and statistical concepts used in elementary data analysis. It will be taught at an introductory level for students with junior or senior college-level mathematical training including a working knowledge of calculus. A small amount of linear algebra and programming are useful for the class, but not required. ","short_name":"biostats","category-ids":["math","health","biology","stats"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/cd/3cc4db194a8f70139ec63afd200a0f/bootcamp_B-02.jpg","instructor":"Brian Caffo","categories":[{"id":5,"name":"Mathematics","mailing_list_id":null,"short_name":"math","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":8,"name":"Health & Society","mailing_list_id":null,"short_name":"health","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":10,"name":"Biology & Life Sciences","mailing_list_id":null,"short_name":"biology","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Mathematical Biostatistics Boot Camp 1","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 90% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"7 weeks","signature_track_last_chance_time":null,"id":302,"start_month":9,"certificate_description":"This course puts forward key mathematical and statistical topics to help students understand biostatistics at a deeper level. Successful students have a basic understanding of the goals, assumptions, benefits and negatives of probability modeling in the medical sciences.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-11","certificates_ready":true,"signature_track_price":null,"statement_design_id":6,"signature_track_registration_open":false,"topic_id":68,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":94.7619047619047,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":94.7619047619047,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[688901],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 70% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/biostats-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/41/41ed34d097fda979808abc09e4030a/bloomberg.small.horizontal.blue-Coursera.png","course-ids":[302],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/neuralnets/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/neuralnets/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/neuralnets/large-icon.png","video":"KuPai0ogiHk","university-ids":["utoronto"],"id":77,"universities":[{"rectangular_logo_svg":null,"wordmark":null,"website_twitter":"uoftnews","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/8e/773801b870a0cb946698134a77417d/favicon-utoronto.ico","website_facebook":"universitytoronto","logo":"https://coursera-university-assets.s3.amazonaws.com/78/334b4573e06c876cff8e2484f082d7/logo-utoronto-front.png","background_color":"","id":11,"location_city":"Toronto","location_country":"CA","location_lat":43.65322600000000000,"location":"Toronto, ON, Canada","primary_color":"#1c3361","abbr_name":"U of T","website":"http://www.utoronto.ca/","description":"Established in 1827, the University of Toronto has one of the strongest research and teaching faculties in North America, presenting top students at all levels with an intellectual environment unmatched in depth and breadth on any other Canadian campus.","short_name":"utoronto","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/84/774219ef720c726661c682cda7838a/UofT-Banner.jpg","mailing_list_id":null,"website_youtube":"universitytoronto","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/6f/9a578312b814f8aeaf942f4f248447/banner-utoronto.jpg","location_state":"ON","name":"University of Toronto","square_logo":"https://coursera-university-assets.s3.amazonaws.com/04/1df8943d27a485a986a3ebf10c83d9/UofT-Crest-Square.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/dd/cf4561b10afb34d449bb9574ecbca3/UofT-Crest-Square.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/06/0e2fff91e34df097bbb12ecd57c0af/UofT-Crest-Square.svg","location_lng":-79.38318429999998000,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/e0/c3219157fdcd439fb3b765c4b723e5/UofT-Crest-Wide.png","display":true}],"self_service_course_id":null,"short_description":"Learn about artificial neural networks and how they're being used for machine learning, as applied to speech and object recognition, image segmentation, modeling language and human motion, etc. We'll emphasize both the basic algorithms and the practical tricks needed to get them to work well.","short_name":"neuralnets","category-ids":["stats","cs-ai"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/neuralnets/small-icon.hover.png","instructor":"Geoffrey Hinton","categories":[{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Neural Networks for Machine Learning","language":"en","courses":[{"grading_policy_distinction":"Students who achieved at least 90% overall receive a Statement of Accomplishment with Distinction.\n","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":256,"start_month":10,"certificate_description":"The course covered learning techniques for many different types of neural network including deep feed-forward networks, recurrent networks and Boltzmann Machines. It covered recent applications to speech, vision, and language, and used hands-on programming assignments.","start_date_string":"24 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-19","certificates_ready":true,"signature_track_price":null,"statement_design_id":14,"signature_track_registration_open":false,"topic_id":77,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":70.2813657407407,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":70.2813657407407,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[831097],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on the four programming assignments (5% for PA1, 10% for each of the other three), the weekly quizzes (40%, with each quiz being weighted as one fifteenth of that), and the final exam (25%). Students who achieved at least 70% overall receive a Statement of Accomplishment.\n","ace_open_date":null,"home_link":"https://class.coursera.org/neuralnets-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[256],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/datasci/large-icon.png","preview_link":"https://class.coursera.org/datasci-001/lecture/preview","small_icon_hover":"https://s3.amazonaws.com/coursera/topics/datasci/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/datasci/large-icon.png","video":"","university-ids":["uw"],"id":106,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"UW","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/98/7480c1f9271144aa75fe024a1ad5a0/favicon-uw.ico","website_facebook":"UofWA","logo":"https://coursera-university-assets.s3.amazonaws.com/53/2f0ff155b3390e3d7190c363a4a045/uw-logo-coursera-transparent.png","background_color":"","id":15,"location_city":"Seattle","location_country":"US","location_lat":47.60620950000000000,"location":"Seattle, WA","primary_color":"#38255a","abbr_name":"Washington","website":"https://www.washington.edu/","description":"Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.","short_name":"uw","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/d0/f1be9c6b196a5a0446da96548a85b6/banner-uw1.jpg","mailing_list_id":null,"website_youtube":"user/uwhuskies","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/5d/7f56a74b7b3009b4a888e372a41f67/banner-uw1.jpg","location_state":"WA","name":"University of Washington","square_logo":"https://coursera-university-assets.s3.amazonaws.com/8a/903cf68039c31a207eb7eafff458f7/w-patch-purple.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/76/45ce3d3eba0b28c763eacbb2387322/w-patch-purple.png","square_logo_svg":"","location_lng":-122.33207080000000000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Join the data revolution. Companies are searching for data scientists. This specialized field demands multiple skills not easy to obtain through conventional curricula. Introduce yourself to the basics of data science and leave armed with practical experience extracting value from big data.","short_name":"datasci","category-ids":["infotech","cs-systems","cs-programming","stats"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/datasci/small-icon.hover.png","instructor":"Bill Howe","categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":11,"name":"Computer Science: Systems & Security","mailing_list_id":null,"short_name":"cs-systems","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Data Science","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 75% of the maximum possible score. ","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":346,"start_month":5,"certificate_description":"This course covered a broad set of topics critical to practical data science: relational databases, MapReduce, NoSQL, statistical modeling, basic machine learning, and visualization, and a variety of algorithmic topics.","start_date_string":"April 2013","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-06-29","certificates_ready":true,"signature_track_price":null,"statement_design_id":43,"signature_track_registration_open":false,"topic_id":106,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":58.1818181818182,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":0,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":58.1818181818182,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[999946],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 60% of the maximum possible score. ","ace_open_date":null,"home_link":"https://class.coursera.org/datasci-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":null,"course-ids":[346],"display":true},{"photo":"https://s3.amazonaws.com/coursera/topics/progfun/large-icon.png","preview_link":null,"small_icon_hover":"https://s3.amazonaws.com/coursera/topics/progfun/small-icon.hover.png","large_icon":"https://s3.amazonaws.com/coursera/topics/progfun/large-icon.png","video":"_NVySmdAH4c","university-ids":["epfl"],"id":116,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/89/7f14b8c6f54b56a2446c99b2b8df86/EPFL_LOG_QUADRI_Red_resized.svg","wordmark":null,"website_twitter":"EPFL","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/ba/142188830b51c8c51b95cc25e5dbf3/epflfav.png","website_facebook":"EPFL.ch","logo":"https://coursera-university-assets.s3.amazonaws.com/1d/0a73c737b332745aac47797f57cda4/logo-epfl-front.png","background_color":"","id":16,"location_city":"Lausanne","location_country":"CH","location_lat":46.51996170000000000,"location":"Lausanne, Switzerland","primary_color":"#7E000C","abbr_name":"EPFL","website":"http://www.epfl.ch/","description":"","short_name":"epfl","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/22/b50d471bc34471c5a7c696b1d714cc/rolex_learning_center.jpg","mailing_list_id":null,"website_youtube":"user/epflnews","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/ab/bb616e071f67f5bcaead9b67dbaa36/banner-epfl.jpg","location_state":"VD","name":"\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne","square_logo":"https://coursera-university-assets.s3.amazonaws.com/01/a5c9c211331132096e7ba9942dbd51/square_epfl_400.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/5f/f441e9c1630625018763c3b86cf582/square_epfl_400.png","square_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/a7/fca9be507583b1f25e0fcd9fca0d59/square_epfl_400.svg","location_lng":6.63359709999997450,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Learn about functional programming, and how it can be effectively combined with object-oriented programming. Gain practice in writing clean functional code, using the Scala programming language.","short_name":"progfun","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://s3.amazonaws.com/coursera/topics/progfun/small-icon.hover.png","instructor":"Martin Odersky","categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Functional Programming Principles in Scala","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment with Distinction, one must obtain >= 80% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":18,"duration_string":"7 weeks","signature_track_last_chance_time":null,"id":308,"start_month":9,"certificate_description":"This advanced undergraduate programming course covers the principles of functional programming using Scala, including the use of functions as values, recursion, immutability, pattern matching, higher-order functions and collections, and lazy evaluation.","start_date_string":"18 September 2012","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2012-12-05","certificates_ready":true,"signature_track_price":null,"statement_design_id":13,"signature_track_registration_open":false,"topic_id":116,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":98.0,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":2,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":98.0,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2012,"signature_track_certificate_combined_signature":null,"end_date":null,"notified_subscribers":true,"instructors":[672627],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":null,"grading_policy_normal":"The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment, one must obtain >= 60% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/progfun-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[308],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/02/c44a1233fcf277511c7720292324e3/course_logo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/e1/644d37da2af639d0c9d1f4fca323c2/course_logo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f2/e2d37549671b4a0c04b4f40669e1c9/course_logo.jpg","video":"","university-ids":["uw"],"id":117,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"UW","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/98/7480c1f9271144aa75fe024a1ad5a0/favicon-uw.ico","website_facebook":"UofWA","logo":"https://coursera-university-assets.s3.amazonaws.com/53/2f0ff155b3390e3d7190c363a4a045/uw-logo-coursera-transparent.png","background_color":"","id":15,"location_city":"Seattle","location_country":"US","location_lat":47.60620950000000000,"location":"Seattle, WA","primary_color":"#38255a","abbr_name":"Washington","website":"https://www.washington.edu/","description":"Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.","short_name":"uw","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/d0/f1be9c6b196a5a0446da96548a85b6/banner-uw1.jpg","mailing_list_id":null,"website_youtube":"user/uwhuskies","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/5d/7f56a74b7b3009b4a888e372a41f67/banner-uw1.jpg","location_state":"WA","name":"University of Washington","square_logo":"https://coursera-university-assets.s3.amazonaws.com/8a/903cf68039c31a207eb7eafff458f7/w-patch-purple.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/76/45ce3d3eba0b28c763eacbb2387322/w-patch-purple.png","square_logo_svg":"","location_lng":-122.33207080000000000,"home_link":null,"class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Investigate the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming. Use the programming languages ML, Racket, and Ruby in ways that will teach you how the pieces of a language fit together to create more than the sum of the parts. Gain new software skills and the concepts needed to learn new languages on your own.","short_name":"proglang","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/e1/644d37da2af639d0c9d1f4fca323c2/course_logo.jpg","instructor":"Dan Grossman","categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Programming Languages","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":14,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":352,"start_month":1,"certificate_description":"This course investigates the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming along with many other topics.","start_date_string":"January 2013","chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-04-02","certificates_ready":true,"signature_track_price":null,"statement_design_id":73,"signature_track_registration_open":false,"topic_id":117,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":100.0,"share_for_work":false,"is_enrolled_for_proctored_exam":false,"achievement_level":1,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":83.2487076923077,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[873260],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"12-001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 7 assignments each worth 10% of the final grade, with 90% of the 10% produced from auto-grading and the remaining 10% coming from peer assessment. The course had two exams each worth 15% of the course grade.","ace_open_date":null,"home_link":"https://class.coursera.org/proglang-2012-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":"","signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[352],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/ec/6faacf42b19cf2772061ae095d98ee/460_259_logo.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/c9/8b3a8357fe29791971ece8cc8fb35b/460_259_logo.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/6c/ffdfc097878bc0f8115148d7ee6826/460_259_logo.jpg","video":"IWugXcWpfoM","university-ids":["brown"],"id":198,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"BrownUniversity","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/54/51fc6594a22ce0fcd31168f109900f/5_brown_icon_coursera.jpg","website_facebook":"BrownUniversity","logo":"https://coursera-university-assets.s3.amazonaws.com/1e/b5f0ff349ddbf16b116d9a181c9552/Coursera_CourseTopLeftLogo_Brown.png","background_color":"","id":22,"location_city":"","location_country":"","location_lat":null,"location":"Providence, RI","primary_color":"#c00404","abbr_name":"Brown","website":"http://www.brown.edu/","description":"Founded in 1764, Brown University is an independent, coeducational Ivy League institution. It is recognized for the quality of its teaching, research, and unique curriculum. The seventh-oldest college in the United States, Brown University is located in historic Providence, Rhode Island.","short_name":"brown","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c0/b026ace077f637396a1dacdf1eb779/3_banner6_coursera.jpg","mailing_list_id":null,"website_youtube":"brownuniversity","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/7f/dcd11ef97345d4931ed1d5b187f21e/2_brown_banner_coursera.jpg","location_state":"","name":"Brown University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/c6/d5fc95810a4783b7f71c066c620a54/1_brown_logo_coursera.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/b9/5c77b26d99a8c59314414d6d43e3e2/1_brown_logo_coursera.png","square_logo_svg":"","location_lng":null,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/1a/474b90e9993ebe86bea13056066d66/8_brown_logo_class_page_coursera.png","display":true}],"self_service_course_id":null,"short_description":"Learn the concepts and methods of linear algebra, and how to use them to think about computational problems arising in computer science. Coursework includes building on the concepts to write small programs and run them on real data. ","short_name":"matrix","category-ids":["cs-theory","math","stats","cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/c9/8b3a8357fe29791971ece8cc8fb35b/460_259_logo.jpg","instructor":"Phil Klein","categories":[{"id":1,"name":"Computer Science: Theory","mailing_list_id":null,"short_name":"cs-theory","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":5,"name":"Mathematics","mailing_list_id":null,"short_name":"math","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":16,"name":"Statistics and Data Analysis","mailing_list_id":null,"short_name":"stats","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Coding the Matrix: Linear Algebra through Computer Science Applications","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":1,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":970260,"start_month":7,"certificate_description":"","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":198,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":0,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1234717],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/matrix-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[970260],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/26/761dfb7b58773c88fe4cb2aed26a3c/iStock_000020359734_Small.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/c5/42ab154bbf6f76f51b74b8347deab5/iStock_000020359734_Small.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/7e/0150790f6c92c48d03bf6178ea9193/iStock_000020359734_Small.jpg","video":"","university-ids":["columbia"],"id":225,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"columbia","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/72/c9b56e3ff66fa6e1ca52bdea9440ae/ColumbialittleLOGO4.png","website_facebook":"Columbia","logo":"https://coursera-university-assets.s3.amazonaws.com/9b/42f2eca2f10769400d1f8519892413/ColumbiaLOGO.png","background_color":"","id":40,"location_city":"New York","location_country":"US","location_lat":40.71435280000000000,"location":"New York City, NY, USA","primary_color":"#1f2f60","abbr_name":"Columbia","website":"http://www.columbia.edu/","description":"For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.","short_name":"columbia","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/3d/731d687dff430714ea6413c8b9d932/banner_coursera_columbia.jpg","mailing_list_id":null,"website_youtube":"columbia","partner_type":1,"banner":"https://coursera-university-assets.s3.amazonaws.com/0d/6b60ecae321cd9d6e02b5a1376e7cb/columbia-banner.jpg","location_state":"NY","name":"Columbia University","square_logo":"https://coursera-university-assets.s3.amazonaws.com/d2/74c67a99b3e2516e7efbb4d9892721/cu_collegiate_blue.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/bb/d42540e622a1bb89a1b5f2258f3602/cu_collegiate_blue.png","square_logo_svg":"","location_lng":-74.00597310000000000,"home_link":null,"class_logo":"https://coursera-university-assets.s3.amazonaws.com/8e/592ba6a9789657a5a0912204491332/logo_cu_background_trans.png","display":true}],"self_service_course_id":null,"short_description":"Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.","short_name":"nlangp","category-ids":["cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/c5/42ab154bbf6f76f51b74b8347deab5/iStock_000020359734_Small.jpg","instructor":"Michael Collins","categories":[{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Natural Language Processing","language":"en","courses":[{"grading_policy_distinction":"The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":24,"duration_string":"10 weeks","signature_track_last_chance_time":null,"id":970276,"start_month":2,"certificate_description":"This introductory graduate/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":"2013-05-15","certificates_ready":true,"signature_track_price":null,"statement_design_id":59,"signature_track_registration_open":false,"topic_id":225,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":8.92857142857143,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":0,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":8.92857142857143,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[1325520],"active":true,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.","ace_open_date":null,"home_link":"https://class.coursera.org/nlangp-001/","creator_id":null,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[970276],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/b1/0dd0ff0e44a763cfba188a761ae2cb/movielens.jpg","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/42/291d55c2b40660fdbf65e590831949/movielens.jpg","large_icon":"https://coursera-course-photos.s3.amazonaws.com/9b/6095ca516e757248df2abf357fde72/movielens.jpg","video":"eMlcMAa0IOg","university-ids":["minnesota"],"id":746,"universities":[{"rectangular_logo_svg":"https://coursera-university-assets.s3.amazonaws.com/32/051960873fd1cc2b6a315b80853ff2/minnesota.svg","wordmark":null,"website_twitter":"UMNews","china_mirror":1,"favicon":"https://coursera-university-assets.s3.amazonaws.com/f2/c0c3766390def44d6704f82d4d7955/favicon.ico","website_facebook":"UofMN","logo":"","background_color":"","id":50,"location_city":"Minneapolis","location_country":"US","location_lat":44.98333400000000000,"location":"Minneapolis, MN, USA","primary_color":"#7A0019","abbr_name":"Minnesota","website":"http://www.umn.edu/","description":"The University of Minnesota is among the largest public research universities in the country, offering undergraduate, graduate, and professional students a multitude of opportunities for study and research. Located at the heart of one of the nation\u2019s most vibrant, diverse metropolitan communities, students on the campuses in Minneapolis and St. Paul benefit from extensive partnerships with world-renowned health centers, international corporations, government agencies, and arts, nonprofit, and public service organizations.","short_name":"minnesota","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/c0/5512775b06b7e0c1b2e30d8b7585df/5-1280x320.jpg","mailing_list_id":null,"website_youtube":"UniversityofMinn","partner_type":1,"banner":"","location_state":"MN","name":"University of Minnesota","square_logo":"https://coursera-university-assets.s3.amazonaws.com/75/a144950f75d01464eef8e64003285c/FB-GoldM-maroon.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/4e/bcdf60eb515f6611860f25ca6dc893/FB-GoldM-maroon.png","square_logo_svg":"","location_lng":-93.26666999999998000,"home_link":"","class_logo":"https://coursera-university-assets.s3.amazonaws.com/2e/0cd5e2383ba389999647887f51de4c/UofMD2D200x48transp.png","display":true}],"self_service_course_id":null,"short_description":"This course introduces the concepts, applications, algorithms, programming, and design of recommender systems--software systems that recommend products or information, often based on extensive personalization. Learn how web merchants such as Amazon.com personalize product suggestions and how to apply the same techniques in your own systems!","short_name":"recsys","category-ids":["infotech","business","cs-ai"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/42/291d55c2b40660fdbf65e590831949/movielens.jpg","instructor":null,"categories":[{"id":4,"name":"Information, Tech & Design","mailing_list_id":null,"short_name":"infotech","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":13,"name":"Business & Management","mailing_list_id":null,"short_name":"business","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"},{"id":17,"name":"Computer Science: Artificial Intelligence","mailing_list_id":null,"short_name":"cs-ai","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Introduction to Recommender Systems","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":3,"duration_string":"14 weeks","signature_track_last_chance_time":null,"id":971201,"start_month":9,"certificate_description":"","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":56,"signature_track_registration_open":false,"topic_id":746,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[3108924,3691077],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"","ace_open_date":null,"home_link":"https://class.coursera.org/recsys-001/","creator_id":952027,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"","course-ids":[971201],"display":true},{"photo":"https://coursera-course-photos.s3.amazonaws.com/f4/fc7a006d2bafe837b6de5016d8a423/Course-Logo.png","preview_link":null,"small_icon_hover":"https://coursera-course-photos.s3.amazonaws.com/4e/1d7362a932b2aa5baaa895d4f8425b/Course-Logo.png","large_icon":"https://coursera-course-photos.s3.amazonaws.com/f0/377e1431e27761059cf1d408e67642/Course-Logo.png","video":"Bc1-PZ5NfRs","university-ids":["cusystem"],"id":781,"universities":[{"rectangular_logo_svg":"","wordmark":null,"website_twitter":"","china_mirror":1,"favicon":"","website_facebook":"","logo":"","background_color":"","id":126,"location_city":"","location_country":"","location_lat":null,"location":"","primary_color":"","abbr_name":"CU System","website":"","description":"The University of Colorado is a recognized leader in higher education on the national and global stage. We collaborate to meet the diverse needs of our students and communities. We promote innovation, encourage discovery and support the extension of knowledge in ways unique to the state of Colorado and beyond.","short_name":"cusystem","landing_page_banner":"https://coursera-university-assets.s3.amazonaws.com/40/7f8dc97c973fcd38a4d202c143f2a9/cu-bkg-coursera.jpg","mailing_list_id":null,"website_youtube":"","partner_type":2,"banner":"","location_state":"","name":"University of Colorado System","square_logo":"https://coursera-university-assets.s3.amazonaws.com/1b/fb8b2887a17b007626846d08988b39/colorado.png","square_logo_source":"https://coursera-university-assets.s3.amazonaws.com/0c/5859039090ad9fd55834fde43636a2/colorado.jpg","square_logo_svg":"","location_lng":null,"home_link":"","class_logo":"","display":true}],"self_service_course_id":null,"short_description":"Start learning how to program video games using the C# programming language. Plenty of practice opportunities are included!","short_name":"gameprogramming","category-ids":["cs-programming"],"visibility":0,"small_icon":"https://coursera-course-photos.s3.amazonaws.com/4e/1d7362a932b2aa5baaa895d4f8425b/Course-Logo.png","instructor":null,"categories":[{"id":12,"name":"Computer Science: Software Engineering","mailing_list_id":null,"short_name":"cs-programming","description":"Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!"}],"name":"Beginning Game Programming with C#","language":"en","courses":[{"grading_policy_distinction":"","ace_track_price_display":null,"signature_track_certificate_design_id":null,"ace_semester_hours":null,"start_day":16,"duration_string":"8 weeks","signature_track_last_chance_time":null,"id":971200,"start_month":9,"certificate_description":"This introductory undergraduate course teaches beginning programming concepts in a game development context.","start_date_string":null,"chegg_session_id":"","signature_track_regular_price":null,"grades_release_date":null,"certificates_ready":false,"signature_track_price":null,"statement_design_id":null,"signature_track_registration_open":false,"topic_id":781,"eligible_for_signature_track":false,"start_date":null,"record":{"grade_distinction":null,"share_for_work":null,"is_enrolled_for_proctored_exam":false,"achievement_level":null,"signature_track":false,"passed_ace":false,"ace_grade":0,"grade_normal":null,"verify_cert_id":"","authenticated_overall":false,"with_grade_cert_id":""},"status":1,"start_year":2013,"signature_track_certificate_combined_signature":"","end_date":null,"notified_subscribers":true,"instructors":[3134388],"active":false,"eligible_for_certificates":true,"signature_track_certificate_signature_blurb":"","deployed":true,"ace_close_date":null,"name":"001","textbooks":[],"signature_track_open_time":null,"eligible_for_ACE":false,"grading_policy_normal":"The final grade was based on 6 Programming Assignments (48% of the final grade), a game development project (30% of the final grade), and a final exam (22% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score. ","ace_open_date":null,"home_link":"https://class.coursera.org/gameprogramming-001/","creator_id":3134388,"proctored_exam_completion_date":null,"university_logo":null,"signature_track_close_time":null,"auth_review_completion_date":null}],"university_logo":"https://coursera-university-assets.s3.amazonaws.com/13/0e2b677ebb94e8d3fdcd7cfdae92fd/cu-coursera.png","course-ids":[971200],"display":true}] -[ - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/ml\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", - "video": "e0WKJLovaZg", - "university-ids": [ - "stanford" - ], - "id": 2, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.", - "short_name": "ml", - "category-ids": [ - "stats", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", - "instructor": "Andrew Ng, Associate Professor", - "categories": [ - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Machine Learning", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 22, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 970311, - "start_month": 4, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 2, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1244 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "003", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/ml-003\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970311 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/hci-2012-002\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/large-icon.png", - "video": "GBwLAqOjbrA", - "university-ids": [ - "stanford" - ], - "id": 6, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Helping you build human-centered design skills, so that you have the principles and methods to create excellent interfaces with any technology.", - "short_name": "hci", - "category-ids": [ - "infotech", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/hci\/small-icon.hover.png", - "instructor": "Scott Klemmer", - "categories": [ - { - "id": 4, - "name": "Information, Tech & Design", - "mailing_list_id": null, - "short_name": "infotech", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Human-Computer Interaction", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "Congratulations on completing the Studio track! Your final grade consists of the design project assignments (worth 67%) and four quizzes (worth 33%). To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "9 weeks", - "signature_track_last_chance_time": null, - "id": 164, - "start_month": 9, - "certificate_description": "This course analyzed techniques of design such as rapid prototyping and evaluating interface alternatives, and how these practices inform the design of technology. Specific topics included mock-ups, field testing, principles of perception and evaluating designs with people.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 6, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1250 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "Congratulations on completing the Apprentice track! Your final grade consists of four weekly quizzes. To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/hci-2012-002\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - }, - { - "grading_policy_distinction": "Congratulations on completing the Studio track! Your final grade consists of the design project assignments (worth 67%) and four quizzes (worth 33%). To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 31, - "duration_string": "9 weeks", - "signature_track_last_chance_time": null, - "id": 970447, - "start_month": 3, - "certificate_description": "This course analyzed techniques of design such as rapid prototyping and evaluating interface alternatives, and how these practices inform the design of technology. Specific topics included mock-ups, field testing, principles of perception and evaluating designs with people.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-06-12", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 6, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1250 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "003", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "Congratulations on completing the Apprentice track! Your final grade consists of four quizzes. To receive a Statement of Accomplishment, you have to obtain 80% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/hci-003\/", - "creator_id": 2009121, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 164, - 970447 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/large-icon.png", - "video": "0t1oCt88XJk", - "university-ids": [ - "stanford" - ], - "id": 9, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about the inner workings of cryptographic primitives and how to apply this knowledge in real-world applications!", - "short_name": "crypto", - "category-ids": [ - "cs-theory", - "cs-systems" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto\/small-icon.hover.png", - "instructor": "Dan Boneh, Professor", - "categories": [ - { - "id": 1, - "name": "Computer Science: Theory", - "mailing_list_id": null, - "short_name": "cs-theory", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Cryptography I", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was calculated based on 6 equally-weighted assignments (60% of the final grade) and the final exam (40% of the final grade). An additional 120 percentage points were available through optional programming assignments, and the resulting grade is capped at 100%. To receive a Statement of Accomplishment with Distinction, you have to obtain >= 70% of the maximum possible score on the programming assignments. The grade shown here on this page reflects only your score on the programming assignments.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 27, - "duration_string": "6 weeks", - "signature_track_last_chance_time": null, - "id": 170, - "start_month": 8, - "certificate_description": "This course examined cryptographic primitives in theory and in deployed protocols. Topics included public-key encryption, digital signatures, authentication protocols, zero-knowledge and distributed protocols.", - "start_date_string": "27 August 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 9, - "eligible_for_signature_track": false, - "start_date": "2012-08-27", - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 774 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-003", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was calculated based on 6 equally-weighted assignments (60% of the final grade) and the final exam (40% of the final grade). An additional 120 percentage points were available through optional programming assignments, and the resulting grade is capped at 100%. To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/crypto-2012-003\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 170 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/b5\/62b8827c61b48597f9b526ce04aaee\/dbLogo.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/61b70b13451469aa582fc91d020f64\/dbLogo.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c9\/643d403b593b865b40c64b0f6cc33c\/dbLogo.jpg", - "video": "", - "university-ids": [ - "stanford" - ], - "id": 12, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": 32, - "short_description": "This course covers database design and the use of database management systems for applications.", - "short_name": "db", - "category-ids": [ - "cs-systems", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/61b70b13451469aa582fc91d020f64\/dbLogo.jpg", - "instructor": "Jennifer Widom, Professor", - "categories": [ - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Introduction to Databases", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": null, - "duration_string": "", - "signature_track_last_chance_time": null, - "id": 32, - "start_month": null, - "certificate_description": "", - "start_date_string": "Self-service", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 12, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": null, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1196954 - ], - "active": true, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "2012-selfservice", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/db\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 32 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/compilers\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/large-icon.png", - "video": "sm0QQO-WZlM", - "university-ids": [ - "stanford" - ], - "id": 16, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": 378, - "short_description": "This course will discuss the major ideas used today in the implementation of programming language compilers. You will learn how a program written in a high-level language designed for humans is systematically translated into a program written in low-level assembly more suited to machines!", - "short_name": "compilers", - "category-ids": [ - "cs-systems", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compilers\/small-icon.hover.png", - "instructor": "Alex Aiken, Professor", - "categories": [ - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Compilers", - "language": "en", - "courses": [ - { - "grading_policy_distinction": null, - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": null, - "duration_string": "", - "signature_track_last_chance_time": null, - "id": 378, - "start_month": null, - "certificate_description": null, - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 16, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": null, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - - ], - "active": true, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": null, - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/compilers-selfservice\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 378 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/08\/22d8b0b6c3bedfc930f9e42c067b82\/more-height_2.png", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/40\/89e1c7e5b1209fd587aae6fe8615af\/more-height_2.png", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/16\/14c599959bd3d6e7b0a710e7d4eb5f\/more-height_2.png", - "video": "KXsz5aPCYFM", - "university-ids": [ - "stanford" - ], - "id": 19, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "location_lat": 37.4418834, - "background_color": "", - "mailing_list_id": null, - "location_city": "Palo Alto", - "location_country": "US", - "id": 1, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "location_state": "CA", - "website_youtube": "", - "partner_type": 1, - "banner": "", - "landing_page_banner": "", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "display": true, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "square_logo_svg": null - } - ], - "self_service_course_id": null, - "short_description": "Learn how to design secure systems and write secure code. ", - "short_name": "security", - "category-ids": [ - "cs-systems" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/40\/89e1c7e5b1209fd587aae6fe8615af\/more-height_2.png", - "instructor": "Dan Boneh and Dawn Song", - "categories": [ - { - "mailing_list_id": null, - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", - "id": 11, - "short_name": "cs-systems", - "name": "Computer Science: Systems & Security" - } - ], - "name": "Computer Security", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_year": null, - "duration_string": "", - "signature_track_last_chance_time": null, - "id": 60, - "start_month": null, - "certificate_description": "", - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "creator_id": null, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 19, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_day": null, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": false, - "instructors": [ - 95, - 774, - 1039793 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/security\/", - "certificates_ready": false, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 60 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/gametheory-2012-002\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/large-icon.png", - "video": "d1k7DNuRBoI", - "university-ids": [ - "stanford", - "ubc" - ], - "id": 20, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - }, - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "ubcaplaceofmind", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d1\/159770b1b64f0bb3736e0a1ad5144b\/favicon.ico", - "website_facebook": "universityofbc", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d1\/4b45f1fa68329d09b869d990e5d48e\/panel_signature3.png", - "background_color": "", - "id": 29, - "location_city": "Vancouver", - "location_country": "CA", - "location_lat": 49.264878, - "location": "The University of British Columbia, West Mall, Vancouver, BC, Canada", - "primary_color": "#0f2144", - "abbr_name": "UBC", - "website": "http:\/\/www.ubc.ca\/", - "description": "The University of British Columbia is a global centre for research and teaching.", - "short_name": "ubc", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1f\/1a1a7375877cd97e0d8b02301e42e7\/UBC-Coursera-Banner-1280x320.jpg", - "mailing_list_id": null, - "website_youtube": "user\/ubc", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dd\/396bbc8612e8d7bd419bdffa4c9f36\/ubc4.jpg", - "location_state": "BC", - "name": "The University of British Columbia", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/38\/521e5807d761297a1cf2dcc56ede8e\/UBC-Coursera-Avatar-360x360.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cc\/5fd6b4afd6c4f42d006c13bcb3a3ff\/UBC-Coursera-Avatar-360x360.jpg", - "square_logo_svg": "", - "location_lng": -123.252496, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1f\/a1b550b8642963fd065c0315202ded\/UBC-Coursera-Signature-200x48-v2.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "The course covers the basics: representing games and strategies, the extensive form (which computer scientists call game trees), repeated and stochastic games, coalitional games, and Bayesian games (modeling things like auctions).", - "short_name": "gametheory", - "category-ids": [ - "cs-theory", - "economics", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/gametheory\/small-icon.hover.png", - "instructor": "Kevin Leyton-Brown, Matthew O. Jackson and Yoav Shoham", - "categories": [ - { - "id": 1, - "name": "Computer Science: Theory", - "mailing_list_id": null, - "short_name": "cs-theory", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 2, - "name": "Economics & Finance", - "mailing_list_id": null, - "short_name": "economics", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Game Theory", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Certificate of Completion with Distinction, a student has to obtain >= 90% of the maximum possible score", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 7, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 86, - "start_month": 1, - "certificate_description": "This course on Game Theory covers notions of equilibrium, dominance, normal and extensive form games, and games of complete and incomplete information, as well as an introduction to cooperative games.", - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-03-26", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 20, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1251, - 1252, - 174814 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Certificate of Completion, a student has to obtain >= 70% of the maximum possible score. ", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/gametheory-2012-002\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/e189ccd6ee363b8a52cf199f5d05d0\/stanford_ubc.png", - "course-ids": [ - 86 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/large-icon.png", - "video": "nkozG17Q_34", - "university-ids": [ - "princeton" - ], - "id": 24, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "princeton", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", - "website_facebook": "PrincetonU", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", - "background_color": "", - "id": 4, - "location_city": "", - "location_country": "", - "location_lat": null, - "location": "", - "primary_color": "#BA632D", - "abbr_name": "Princeton", - "website": "http:\/\/www.princeton.edu\/", - "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", - "short_name": "princeton", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", - "mailing_list_id": null, - "website_youtube": "princetonuniversity\/", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", - "location_state": "", - "name": "Princeton University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", - "square_logo_svg": "", - "location_lng": null, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "In this course, you will learn to design the computer architecture of complex modern microprocessors.", - "short_name": "comparch", - "category-ids": [ - "cs-systems", - "ee" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/comparch\/small-icon.hover.png", - "instructor": "David Wentzlaff", - "categories": [ - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 15, - "name": "Engineering", - "mailing_list_id": null, - "short_name": "ee", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Computer Architecture", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 30, - "duration_string": "11 weeks", - "signature_track_last_chance_time": null, - "id": 100, - "start_month": 9, - "certificate_description": "", - "start_date_string": "30 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 24, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 227247, - 260922, - 419989 - ], - "active": true, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/comparch-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 100 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/large-icon.png", - "video": "gZV5jVF8lJ8", - "university-ids": [ - "princeton" - ], - "id": 26, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "princeton", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", - "website_facebook": "PrincetonU", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", - "background_color": "", - "id": 4, - "location_city": "", - "location_country": "", - "location_lat": null, - "location": "", - "primary_color": "#BA632D", - "abbr_name": "Princeton", - "website": "http:\/\/www.princeton.edu\/", - "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", - "short_name": "princeton", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", - "mailing_list_id": null, - "website_youtube": "princetonuniversity\/", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", - "location_state": "", - "name": "Princeton University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", - "square_logo_svg": "", - "location_lng": null, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations. Part I covers basic iterable data types, sorting, and searching algorithms.", - "short_name": "algs4partI", - "category-ids": [ - "cs-theory", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partI\/small-icon.hover.png", - "instructor": "Kevin Wayne and Robert Sedgewick", - "categories": [ - { - "id": 1, - "name": "Computer Science: Theory", - "mailing_list_id": null, - "short_name": "cs-theory", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Algorithms, Part I", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 12, - "duration_string": "6 weeks", - "signature_track_last_chance_time": null, - "id": 104, - "start_month": 8, - "certificate_description": "", - "start_date_string": "12 August 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 26, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 227247, - 246867, - 250165, - 260922 - ], - "active": false, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/algs4partI-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 104 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/large-icon.png", - "video": "GO8frjxq25I", - "university-ids": [ - "princeton" - ], - "id": 27, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "princeton", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", - "website_facebook": "PrincetonU", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", - "background_color": "", - "id": 4, - "location_city": "", - "location_country": "", - "location_lat": null, - "location": "", - "primary_color": "#BA632D", - "abbr_name": "Princeton", - "website": "http:\/\/www.princeton.edu\/", - "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", - "short_name": "princeton", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", - "mailing_list_id": null, - "website_youtube": "princetonuniversity\/", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", - "location_state": "", - "name": "Princeton University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", - "square_logo_svg": "", - "location_lng": null, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations.", - "short_name": "algs4partII", - "category-ids": [ - "cs-theory", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/algs4partII\/small-icon.hover.png", - "instructor": "Kevin Wayne and Robert Sedgewick", - "categories": [ - { - "id": 1, - "name": "Computer Science: Theory", - "mailing_list_id": null, - "short_name": "cs-theory", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Algorithms, Part II", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 25, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 970478, - "start_month": 3, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 27, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 246867, - 250165 - ], - "active": false, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/algs4partII-001\/", - "creator_id": 63735, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970478 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", - "video": "AJGGiAb47S4", - "university-ids": [ - "umich" - ], - "id": 38, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", - "wordmark": null, - "website_twitter": "umich", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", - "website_facebook": "universityofmichigan", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", - "background_color": "", - "id": 3, - "location_city": "Ann Arbor", - "location_country": "US", - "location_lat": 42.2808256, - "location": "Ann Arbor, MI", - "primary_color": "#002e5f", - "abbr_name": "Michigan", - "website": "http:\/\/www.umich.edu\/", - "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", - "short_name": "umich", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", - "mailing_list_id": null, - "website_youtube": "user\/um", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", - "location_state": "MI", - "name": "University of Michigan", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", - "location_lng": -83.7430378, - "home_link": "", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.", - "short_name": "sna", - "category-ids": [ - "infotech", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", - "instructor": "Lada Adamic", - "categories": [ - { - "id": 4, - "name": "Information, Tech & Design", - "mailing_list_id": null, - "short_name": "infotech", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Social Network Analysis", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 108, - "start_month": 9, - "certificate_description": "This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 3, - "signature_track_registration_open": false, - "topic_id": 38, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 10, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 10, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 123682 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/sna-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 108 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/large-icon.png", - "video": "Zrq-8qZks3U", - "university-ids": [ - "princeton" - ], - "id": 46, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "princeton", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d4\/29daf4b768e1aa467202d4d2dcf8d8\/favicon-princeton.ico", - "website_facebook": "PrincetonU", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/94\/cc9200e336d38ce029873b13cbe93b\/logo-princeton-front.png", - "location_lat": null, - "background_color": "", - "mailing_list_id": null, - "location_city": "", - "location_country": "", - "id": 4, - "location": "", - "primary_color": "#BA632D", - "abbr_name": "Princeton", - "website": "http:\/\/www.princeton.edu\/", - "description": "Princeton University is a private research university located in Princeton, New Jersey, United States. It is one of the eight universities of the Ivy League, and one of the nine Colonial Colleges founded before the American Revolution.", - "short_name": "princeton", - "location_state": "", - "website_youtube": "princetonuniversity\/", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/4cbcc8b5a797cdaff8a944cc55b22f\/banner-princeton.jpg", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/84ac58eed29633d7a951928ad9aa17\/banner1.jpg", - "name": "Princeton University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/44\/8de6f8bd5ac4cf7e36bdcf7ceff393\/PU_subscription_logo.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/63\/480dbb489b5e6570ebffb8304c3053\/PU_subscription_logo.png", - "display": true, - "location_lng": null, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0f\/c062f1496dedaf429cdf6c5c8ed471\/PUsig2.png", - "square_logo_svg": "" - } - ], - "self_service_course_id": null, - "short_description": "This course teaches a calculus that enables precise quantitative predictions of large combinatorial structures. Part I covers generating functions and real asymptotics and then introduces the symbolic method in the context of applications in the analysis of algorithms and basic structures such as permutations, trees, strings, words, and mappings.", - "short_name": "introACpartI", - "category-ids": [ - "math" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introACpartI\/small-icon.hover.png", - "instructor": "Robert Sedgewick", - "categories": [ - { - "mailing_list_id": null, - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", - "id": 5, - "short_name": "math", - "name": "Mathematics" - } - ], - "name": "Analytic Combinatorics, Part I", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_year": 2013, - "duration_string": "5 weeks", - "signature_track_last_chance_time": null, - "id": 142, - "start_month": 2, - "certificate_description": "", - "start_date_string": "February 2013", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "creator_id": null, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 46, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_day": 8, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 250165 - ], - "active": true, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/introACpartI-001\/", - "certificates_ready": false, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 142 - ], - "display": false - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/large-icon.png", - "preview_link": "", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/large-icon.png", - "video": "dummylink", - "university-ids": [ - "coursera" - ], - "id": 52, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "", - "favicon": "", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/c122fadabd6e23bd278cade259b843\/160_coursera-01.png", - "location_lat": 37.7749295, - "background_color": "", - "mailing_list_id": null, - "location_city": "SF", - "location_country": "US", - "id": 46, - "location": "", - "primary_color": "", - "abbr_name": "Coursera", - "website": "", - "description": "", - "short_name": "coursera", - "location_state": "CA", - "website_youtube": "", - "partner_type": 1, - "banner": "", - "landing_page_banner": "", - "name": "Coursera", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a6\/2a6416aa61cf1f8d3138d0c787bb8b\/Screen-Shot-2013-01-28-at-9.42.14-PM.png", - "square_logo_source": "", - "display": false, - "location_lng": -122.4194155, - "home_link": "http:\/\/www.coursera.org", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6a\/c15c38afd852855ccf4f97e43867b5\/coursera_1500-copy.png", - "square_logo_svg": "" - } - ], - "self_service_course_id": null, - "short_description": "

          Coursera Internal<\/p>", - "short_name": "__courserainternal", - "category-ids": [ - - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/__courserainternal\/small-icon.hover.png", - "instructor": "Coursera, Inc.", - "categories": [ - - ], - "name": "School Playspace", - "language": "en", - "courses": [ - { - "grading_policy_distinction": null, - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_year": null, - "duration_string": "", - "signature_track_last_chance_time": null, - "id": 36, - "start_month": null, - "certificate_description": null, - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "creator_id": null, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 52, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_day": null, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "Placeholder for Course 36", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": null, - "ace_open_date": null, - "home_link": "", - "certificates_ready": false, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 36 - ], - "display": false - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/compinvesting1-002\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/large-icon.png", - "video": "HUDwIEeil38", - "university-ids": [ - "gatech" - ], - "id": 86, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e6\/f7803ce100fc4fd2ff4314a25995b3\/Coursera-STO-logo-01.svg", - "wordmark": null, - "website_twitter": "georgiatech", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/88\/4d9c7e8a6ad0e787553d8b9d77d450\/favicon-gatech.ico", - "website_facebook": "georgiatech", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/30\/4b35cef753fcd6f13494279b65dc84\/Georgia-Tech.png", - "background_color": "", - "id": 9, - "location_city": "Atlanta", - "location_country": "US", - "location_lat": 33.7784626, - "location": "Georgia Institute of Technology, Atlanta, GA", - "primary_color": "#C59353", - "abbr_name": "Georgia Tech", - "website": "http:\/\/www.gatech.edu\/", - "description": "The Georgia Institute of Technology is one of the nation's top research universities, distinguished by its commitment to improving the human condition through advanced science and technology.\n\nGeorgia Tech's campus occupies 400 acres in the heart of the city of Atlanta, where more than 20,000 undergraduate and graduate students receive a focused, technologically based education.", - "short_name": "gatech", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/24\/0de4d4975ff698bdce7b8cf2f86c88\/GT-Coursera-Banner.jpg", - "mailing_list_id": null, - "website_youtube": "georgiatech", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ee\/a21fe3506486f9ef6b5d7ca324d55f\/banner-gatech.jpg", - "location_state": "GA", - "name": "Georgia Institute of Technology", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/27\/a693dcb342a1ed209fdb0c2de7e6a3\/GT-Coursera-logo-square.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/be\/3e07cb47dd285544de28654fb24b18\/GT-Coursera-logo-square.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/29\/c5d764e8d4ad4eca175ca2f7a6ae40\/GT-Coursera-logo-square.svg", - "location_lng": -84.3988806, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c4\/4371496c5361191aa6a9721cfbe1cf\/Georgia-Institute-of-Technology.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Find out how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them. \u00a0Build algorithms and visualizations to inform investing practice.", - "short_name": "compinvesting1", - "category-ids": [ - "economics", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compinvesting1\/small-icon.hover.png", - "instructor": "Tucker Balch", - "categories": [ - { - "id": 2, - "name": "Economics & Finance", - "mailing_list_id": null, - "short_name": "economics", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Computational Investing, Part I", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 4 quizzes (40% of the final grade) and four homework assignments (60% of the final grade). The quizzes were weighted equally, as were homework assignments. To receive a Statement of Accomplishment, you must have obtained 90% or more of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 22, - "duration_string": "9 weeks", - "signature_track_last_chance_time": null, - "id": 364, - "start_month": 10, - "certificate_description": "This course helps you discover how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them and to build algorithms and visualizations to inform investing practice.", - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-01-02", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 17, - "signature_track_registration_open": false, - "topic_id": 86, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 2225883, - 2351781 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 4 quizzes (40% of the final grade) and four homework assignments (60% of the final grade). The quizzes were weighted equally with the lowest quiz score dropped, and likewise for homework assignments. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/compinvesting1-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 364 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f2\/1f3c174e05ac2b604742aa79a989c5\/small-icon.hover.png", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/56\/3d5827c565edde379dabc12ba8f36c\/small-icon.hover.png", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/bc\/1b1da1510430626d00a99244019e0a\/small-icon.hover.png", - "video": "", - "university-ids": [ - "uw" - ], - "id": 95, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "UW", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", - "website_facebook": "UofWA", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", - "background_color": "", - "id": 15, - "location_city": "Seattle", - "location_country": "US", - "location_lat": 47.6062095, - "location": "Seattle, WA", - "primary_color": "#38255a", - "abbr_name": "Washington", - "website": "https:\/\/www.washington.edu\/", - "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", - "short_name": "uw", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", - "mailing_list_id": null, - "website_youtube": "user\/uwhuskies", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", - "location_state": "WA", - "name": "University of Washington", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", - "square_logo_svg": "", - "location_lng": -122.3320708, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "

          In this course, you will explore several structured, risk management approaches that guide information security decision-making.\u00a0<\/div>\n
          <\/div>", - "short_name": "inforisk", - "category-ids": [ - "infotech", - "cs-systems" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/56\/3d5827c565edde379dabc12ba8f36c\/small-icon.hover.png", - "instructor": "", - "categories": [ - { - "id": 4, - "name": "Information, Tech & Design", - "mailing_list_id": null, - "short_name": "infotech", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Building an Information Risk Management Toolkit", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 7, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 324, - "start_month": 1, - "certificate_description": "", - "start_date_string": "", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 95, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2013, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1109500 - ], - "active": true, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/inforisk-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 324 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/large-icon.png", - "video": "exBbVX0pYxo", - "university-ids": [ - "uw" - ], - "id": 97, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "UW", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", - "website_facebook": "UofWA", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", - "background_color": "", - "id": 15, - "location_city": "Seattle", - "location_country": "US", - "location_lat": 47.6062095, - "location": "Seattle, WA", - "primary_color": "#38255a", - "abbr_name": "Washington", - "website": "https:\/\/www.washington.edu\/", - "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", - "short_name": "uw", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", - "mailing_list_id": null, - "website_youtube": "user\/uwhuskies", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", - "location_state": "WA", - "name": "University of Washington", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", - "square_logo_svg": "", - "location_lng": -122.3320708, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Understanding how the brain works is one of the fundamental challenges in science today. This course will introduce you to basic computational techniques for analyzing, modeling, and understanding the behavior of cells and circuits in the brain. You do not need to have any prior background in neuroscience to take this course.", - "short_name": "compneuro", - "category-ids": [ - "biology", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/compneuro\/small-icon.hover.png", - "instructor": "Rajesh P. N. Rao and Adrienne Fairhall", - "categories": [ - { - "id": 10, - "name": "Biology & Life Sciences", - "mailing_list_id": null, - "short_name": "biology", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Computational Neuroscience", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 19, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 330, - "start_month": 4, - "certificate_description": "This advanced undergraduate course introduces a broad range of computational techniques for analyzing, modeling, and understanding the behavior of neurons and networks of neurons in the brain. ", - "start_date_string": "April 2013", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-06-25", - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": 73, - "signature_track_registration_open": false, - "topic_id": 97, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1282559, - 1522272 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade is based on 5 homework assignments. To receive a Statement of Accomplishment, you have to obtain 60% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/compneuro-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 330 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/large-icon.png", - "video": "", - "university-ids": [ - "stanford" - ], - "id": 127, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about the inner workings of cryptographic primitives and protocols and how to apply this knowledge in real-world applications.", - "short_name": "crypto2", - "category-ids": [ - "cs-theory", - "cs-systems" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/crypto2\/small-icon.hover.png", - "instructor": "Dan Boneh, Professor", - "categories": [ - { - "id": 1, - "name": "Computer Science: Theory", - "mailing_list_id": null, - "short_name": "cs-theory", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Cryptography II", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 15, - "duration_string": "6 weeks", - "signature_track_last_chance_time": null, - "id": 376, - "start_month": 10, - "certificate_description": "", - "start_date_string": "21 January 2013", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 127, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 774 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/crypto2-2013-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 376 - ], - "display": true - }, - { - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/large-icon.png", - "video": "LKBZTL7mOgA", - "university-ids": [ - "iitd" - ], - "id": 145, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/93\/8531f10a9edadb75ba98db75fb5ad4\/favicon-iitd.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bc\/189a02293cf34426f34a396d34e742\/logo-iitd-v2-course.png", - "background_color": "", - "id": 19, - "location_city": "", - "location_country": "", - "location_lat": null, - "location": "", - "primary_color": "#38AFA9", - "abbr_name": "IIT, Delhi", - "website": "", - "description": "", - "short_name": "iitd", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "", - "name": "Indian Institute of Technology Delhi", - "square_logo": "", - "square_logo_source": "", - "square_logo_svg": "", - "location_lng": null, - "home_link": "http:\/\/www.iitd.ac.in\/", - "class_logo": "", - "display": false - } - ], - "self_service_course_id": null, - "short_description": "This course is about building 'web-intelligence' applications exploiting big data sources arising social media, mobile devices and sensors, using new big-data platforms based on the 'map-reduce' parallel programming paradigm. During the fall semester this course is offered at the Indian Institute of Technology Delhi as well as the Indraprastha Institute of Information Technology Delhi. ", - "short_name": "bigdata", - "category-ids": [ - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/bigdata\/small-icon.hover.png", - "instructor": "Gautam Shroff", - "categories": [ - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Web Intelligence and Big Data", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on your best 5 of 8 quizzes (10% of the final grade), best 3 of 4 homework assignments (25% of the final grade), best 2 of 3 programming\/analysis assignments (25% of the final grade) and all of the final exam (40% of the final grade). To receive a Statement of Accomplishment with Distinction, you need to have obtained >= 85% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 970315, - "start_month": 3, - "certificate_description": "This course is about building 'web-intelligence' applications using machine-learning and parallel map-reduce programming to analyze 'big data' such as arising from social media or genomics.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-06-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 10, - "signature_track_registration_open": false, - "topic_id": 145, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 107347 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on your best 5 of 8 quizzes (10% of the final grade), best 3 of 4 homework assignments (25% of the final grade), best 2 of 3 programming\/analysis assignments (25% of the final grade) and all of the final exam (40% of the final grade). To receive a Statement of Accomplishment, you need to have obtained >= 61% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/bigdata-002\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970315 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/26\/761dfb7b58773c88fe4cb2aed26a3c\/iStock_000020359734_Small.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/7e\/0150790f6c92c48d03bf6178ea9193\/iStock_000020359734_Small.jpg", - "video": "", - "university-ids": [ - "columbia" - ], - "id": 225, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "columbia", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/72\/c9b56e3ff66fa6e1ca52bdea9440ae\/ColumbialittleLOGO4.png", - "website_facebook": "Columbia", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/9b\/42f2eca2f10769400d1f8519892413\/ColumbiaLOGO.png", - "background_color": "", - "id": 40, - "location_city": "New York", - "location_country": "US", - "location_lat": 40.7143528, - "location": "New York City, NY, USA", - "primary_color": "#1f2f60", - "abbr_name": "Columbia", - "website": "http:\/\/www.columbia.edu\/", - "description": "For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.", - "short_name": "columbia", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/3d\/731d687dff430714ea6413c8b9d932\/banner_coursera_columbia.jpg", - "mailing_list_id": null, - "website_youtube": "columbia", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0d\/6b60ecae321cd9d6e02b5a1376e7cb\/columbia-banner.jpg", - "location_state": "NY", - "name": "Columbia University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d2\/74c67a99b3e2516e7efbb4d9892721\/cu_collegiate_blue.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bb\/d42540e622a1bb89a1b5f2258f3602\/cu_collegiate_blue.png", - "square_logo_svg": "", - "location_lng": -74.0059731, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/592ba6a9789657a5a0912204491332\/logo_cu_background_trans.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.", - "short_name": "nlangp", - "category-ids": [ - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", - "instructor": "Michael Collins", - "categories": [ - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Natural Language Processing", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 970276, - "start_month": 2, - "certificate_description": "This introductory graduate\/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-05-15", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 59, - "signature_track_registration_open": false, - "topic_id": 225, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 0, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 0, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1325520 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/nlangp-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970276 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/214ce37265a397e3cb97fd25e658de\/cavallaro-logo.png", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d4\/edab6f88cb29582e8215774b2fa19e\/cavallaro-logo.png", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e8\/06553aa034970e31d0c6372c02822e\/cavallaro-logo.png", - "video": "G_ejj8NfiUw", - "university-ids": [ - "london" - ], - "id": 232, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "LondonU", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b9\/7737f6a77362b5ef13cb10fd1aeaa0\/uol.ico", - "website_facebook": "LondonU", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/b867b6dc7439e708b44006cea8c399\/ULondonTrans.png", - "background_color": "", - "id": 26, - "location_city": "London", - "location_country": "GB", - "location_lat": 51.521061, - "location": "Senate House, Malet Street, London, United Kingdom", - "primary_color": "#4F7FA2", - "abbr_name": "London International", - "website": "http:\/\/www.londoninternational.ac.uk\/", - "description": "The University of London is a federal University with 18 world leading Colleges. Our International Programmes were founded in 1858 and have enriched the lives of thousands of students across the globe. Our alumni includes 7 Nobel Prize winners. Today, we are a global leader in distance and flexible study, offering degree programmes to 52,000 students in 190 countries.", - "short_name": "london", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8c\/8a71f733b70e2d8e16f5a5a548464b\/UoLIP-Coursera-Banner_opt2.jpg", - "mailing_list_id": null, - "website_youtube": "user\/unioflondon", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/96\/1040015ba05fc94541f6d10a9bd3e4\/Header_928x220.jpg", - "location_state": "", - "name": "University of London International Programmes", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/43\/a6210027ba5aece40a701cd587d75a\/UoLIP-logo-360x360.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/fa\/c5f9b56ff7f4d1000c7a4b5201070c\/UoLIP-logo-360x360.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1a\/dd7cd4af07eb1ee5017d2f4cda53a6\/UoLIP-logo-360x360.svg", - "location_lng": -0.12873500000001, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ca\/b1f99e17d2ba14a0ad911017419f2e\/wide-logo-png.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about traditional and mobile malware, the security threats they represent, state-of-the-art analysis and detection techniques, and the underground ecosystem that drives such a profitable but illegal business.", - "short_name": "malsoftware", - "category-ids": [ - "cs-systems", - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d4\/edab6f88cb29582e8215774b2fa19e\/cavallaro-logo.png", - "instructor": "Lorenzo Cavallaro of Royal Holloway, University of London", - "categories": [ - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Malicious Software and its Underground Economy: Two Sides to Every Story", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 17, - "duration_string": "6 weeks", - "signature_track_last_chance_time": "2013-06-24", - "id": 970255, - "start_month": 6, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": 69, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": 49, - "statement_design_id": null, - "signature_track_registration_open": true, - "topic_id": 232, - "eligible_for_signature_track": true, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1347691 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": "2013-06-13", - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/malsoftware-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": "2013-07-02" - } - ], - "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/0539fcb47b048c506f175b7ef56c51\/RHUL-logo.png", - "course-ids": [ - 970255 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/d6\/b79772266def5c49c018552620b760\/logo.png", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/4fba1627b59c96672c9c067eed24c0\/logo.png", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/6d\/36b377d4ad926485cb6342444f6743\/logo.png", - "video": "", - "university-ids": [ - "stanford" - ], - "id": 300, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "", - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": null, - "square_logo_svg": null, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn the engineering skills needed to build a technology startup from the ground up.", - "short_name": "startup", - "category-ids": [ - "cs-programming", - "business", - "stats" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/4fba1627b59c96672c9c067eed24c0\/logo.png", - "instructor": "Balaji S. Srinivasan; Vijay Pande", - "categories": [ - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 13, - "name": "Business & Management", - "mailing_list_id": null, - "short_name": "business", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Startup Engineering", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based entirely on multiple choice questions and programming assignments. To receive a Statement of Accomplishment with Distinction, you have to obtain >= 90% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 17, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 970374, - "start_month": 6, - "certificate_description": "This MS-level course teaches engineering, design, and marketing in the context of mobile HTML5 development. Final projects are nontrivial open-source mobile apps.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 300, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1845856, - 1853352 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based entirely on multiple choice questions and programming assignments. To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/startup-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970374 - ], - "display": true - }, - { - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/37\/dc9609e73affd2ed41611617dfe67d\/Course_Logo_Computer_Vision.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/58\/2d3041eb65a7d499fb670d86d0d934\/Course_Logo_Computer_Vision.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/3f\/cb4a7c3ce0e6ac6a504ed714fcf59f\/Course_Logo_Computer_Vision.jpg", - "video": "", - "university-ids": [ - "tum" - ], - "id": 508, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "TU_Muenchen", - "favicon": "", - "website_facebook": "TU.Muenchen", - "logo": "", - "background_color": "", - "id": 78, - "location_city": "M\u00fcnchen", - "location_country": "DE", - "location_lat": 48.1366069, - "location": "Munich, Germany", - "primary_color": "#0065BD", - "abbr_name": "TUM", - "website": "http:\/\/www.tum.de\/", - "description": "Technische Universit\u00e4t M\u00fcnchen (TUM) is one of Europe\u2019s top universities. It is committed to excellence in research and teaching, interdisciplinary education and the active promotion of promising young scientists. The university forges strong links with companies and scientific institutions across the world. TUM was one of the first universities in Germany to be named a University of Excellence.", - "short_name": "tum", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/fd14d92dd4fa15b7ee49a52246d41b\/TUM-Haupteingang_1280x320px.jpg", - "mailing_list_id": null, - "website_youtube": "TUMuenchen1", - "partner_type": 1, - "banner": "", - "location_state": "BY", - "name": "Technische Universit\u00e4t M\u00fcnchen (TUM)", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/2c\/6b2e1799cc2e95901e763daac8d476\/TUM-Logo_360x360px.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/46\/6537b2cdd206869a732a8d278a95e1\/TUM-Logo_360x360px.png", - "square_logo_svg": "", - "location_lng": 11.5770851, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/a33c1f53da7ef95c6ebccf1378de46\/TUM-Logo_200x48px.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Dieser Kurs vermittelt einen \u00dcberblick \u00fcber die Grundlagen des Maschinellen Sehens an Hand der Extraktion von 3D-Information aus dem Stereokamerabild einer Szene.", - "short_name": "compvision", - "category-ids": [ - "cs-ai" - ], - "visibility": null, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/58\/2d3041eb65a7d499fb670d86d0d934\/Course_Logo_Computer_Vision.jpg", - "instructor": "Martin Kleinsteuber", - "categories": [ - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Einf\u00fchrung in Computer Vision", - "language": "de", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": null, - "duration_string": "", - "signature_track_last_chance_time": null, - "id": 970707, - "start_month": null, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 508, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": null, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": false, - "instructors": [ - 2693792 - ], - "active": false, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/compvision-001\/", - "creator_id": 3, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null - } - ], - "university_logo": "", - "course-ids": [ - 970707 - ], - "display": true - } -] -[ - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/ml\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/large-icon.png", - "video": "e0WKJLovaZg", - "university-ids": [ - "stanford" - ], - "id": 2, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "", - "china_mirror": 2, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "location_lat": 37.4418834, - "background_color": "", - "mailing_list_id": null, - "location_city": "Palo Alto", - "location_country": "US", - "id": 1, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "location_state": "CA", - "website_youtube": "", - "partner_type": 1, - "banner": "", - "landing_page_banner": "", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": "", - "display": true, - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "square_logo_svg": "" - } - ], - "self_service_course_id": null, - "short_description": "Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.", - "short_name": "ml", - "category-ids": [ - "stats", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/ml\/small-icon.hover.png", - "instructor": "Andrew Ng, Associate Professor", - "categories": [ - { - "mailing_list_id": null, - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", - "id": 16, - "short_name": "stats", - "name": "Statistics and Data Analysis" - }, - { - "mailing_list_id": null, - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!", - "id": 17, - "short_name": "cs-ai", - "name": "Computer Science: Artificial Intelligence" - } - ], - "name": "Machine Learning", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "N\/A", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_year": 2012, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 152, - "start_month": 8, - "certificate_description": "Congratulations! You have successfully completed the online Machine Learning course (ml-class.org). To successfully complete the course, students were required to watch lectures, review questions and complete programming assignments. ", - "start_date_string": "20 August 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-03-10", - "creator_id": null, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 2, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 100, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 100, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_day": 20, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 232841 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 18 equally-weighted quizzes (1\/3 of the total grade) and 8 programming assignments (2\/3 of the total grade). The lowest two quiz grades were dropped, as well as the lowest programming assignment grade. To receive a Statement of Accomplishment, you must have obtained 80% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/ml-2012-002\/", - "certificates_ready": true, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 152 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/pgm\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/large-icon.png", - "video": "bVMBe50GfnI", - "university-ids": [ - "stanford" - ], - "id": 3, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "", - "china_mirror": 2, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/581cda352d067023dcdcc0d9efd36e\/favicon-stanford.ico", - "website_facebook": "", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d8\/4c69670e0826e42c6cd80b4a02b9a2\/stanford.png", - "background_color": "", - "id": 1, - "location_city": "Palo Alto", - "location_country": "US", - "location_lat": 37.4418834, - "location": "Palo Alto, CA, United States", - "primary_color": "#8c1515", - "abbr_name": "Stanford", - "website": "", - "description": "The Leland Stanford Junior University, commonly referred to as Stanford University or Stanford, is an American private research university located in Stanford, California on an 8,180-acre (3,310 ha) campus near Palo Alto, California, United States.", - "short_name": "stanford", - "landing_page_banner": "", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 1, - "banner": "", - "location_state": "CA", - "name": "Stanford University", - "square_logo": "", - "square_logo_source": "", - "square_logo_svg": "", - "location_lng": -122.1430195, - "home_link": "http:\/\/online.stanford.edu\/", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/21\/9a0294e2bf773901afbfcb5ef47d97\/Stanford_Coursera-200x48_RedText_BG.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.", - "short_name": "pgm", - "category-ids": [ - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/pgm\/small-icon.hover.png", - "instructor": "Daphne Koller, Professor", - "categories": [ - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Probabilistic Graphical Models", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 20 assessments (25% of the final grade), 9 programming assignments with companion quizzes (together worth 63% of the final grade) and a final exam (12% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have obtained 70% or more of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "11 weeks", - "signature_track_last_chance_time": null, - "id": 82, - "start_month": 9, - "certificate_description": "This graduate-level course covers the essentials of probabilistic graphical models and their applications: the representation of Bayesian and Markov networks; exact and approximate inference in these networks; and parameter and structure learning.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-19", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 8, - "signature_track_registration_open": false, - "topic_id": 3, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 84.563419453558, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 2, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 81.334056503349, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1257 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-002", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 20 assignments (77.5% of the final grade) and a final exam (22.5% of the final grade). All assessments within a given category are weighted equally. To receive a Statement of Accomplishment, you must have achieved 70% or more of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/pgm-2012-002\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 82 - ], - "display": true - }, - { - "subtitle_languages_csv": "uk,zh", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/modelthinking-004\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/large-icon.png", - "video": "RX5LBZvEh10", - "university-ids": [ - "umich" - ], - "id": 11, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", - "wordmark": null, - "website_twitter": "umich", - "china_mirror": 3, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", - "website_facebook": "universityofmichigan", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", - "background_color": "", - "id": 3, - "location_city": "Ann Arbor", - "location_country": "US", - "location_lat": 42.2808256, - "location": "Ann Arbor, MI", - "primary_color": "#002e5f", - "abbr_name": "Michigan", - "website": "http:\/\/www.umich.edu\/", - "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", - "short_name": "umich", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", - "mailing_list_id": null, - "website_youtube": "user\/um", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", - "location_state": "MI", - "name": "University of Michigan", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", - "location_lng": -83.7430378, - "home_link": "", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "In this class, you will learn how to think with models and use them to make sense of the complex world around us.", - "short_name": "modelthinking", - "category-ids": [ - "economics", - "humanities" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/modelthinking\/small-icon.hover.png", - "instructor": "Scott E. Page", - "categories": [ - { - "id": 2, - "name": "Economics & Finance", - "mailing_list_id": null, - "short_name": "economics", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 6, - "name": "Humanities ", - "mailing_list_id": 11, - "short_name": "humanities", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Model Thinking", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "N\/A", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": null, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 30, - "start_month": 2, - "certificate_description": "This course provided an introduction on how to think using models. Specific topics included, among others, decision-making, tipping points, economic models, crowd dynamics, Markov processes, game theory and predictive thinking.", - "start_date_string": "Feb 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-05-13", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 3, - "signature_track_registration_open": false, - "topic_id": 11, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 95.909090909091, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 95.909090909091, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 785 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "This Statement of Accomplishment has been granted to all students who earned a grade of 70% or above.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/modelthinking\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 30 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/large-icon.png", - "video": "AJGGiAb47S4", - "university-ids": [ - "umich" - ], - "id": 38, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", - "wordmark": null, - "website_twitter": "umich", - "china_mirror": 3, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", - "website_facebook": "universityofmichigan", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", - "background_color": "", - "id": 3, - "location_city": "Ann Arbor", - "location_country": "US", - "location_lat": 42.2808256, - "location": "Ann Arbor, MI", - "primary_color": "#002e5f", - "abbr_name": "Michigan", - "website": "http:\/\/www.umich.edu\/", - "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", - "short_name": "umich", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", - "mailing_list_id": null, - "website_youtube": "user\/um", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", - "location_state": "MI", - "name": "University of Michigan", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", - "location_lng": -83.7430378, - "home_link": "", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.", - "short_name": "sna", - "category-ids": [ - "infotech", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/sna\/small-icon.hover.png", - "instructor": "Lada Adamic", - "categories": [ - { - "id": 4, - "name": "Information, Tech & Design", - "mailing_list_id": null, - "short_name": "infotech", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Social Network Analysis", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The programming track is composed of two parts. The first part consists of 7 assignments (70%) and a final exam (30%) from the regular track. The second part consists of 3 programming assignments (70%) and a final project (30%). To receive a Statement of Accomplishment with Distinction, you have to obtain >= 80% of the maximum possible score on both parts individually.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 108, - "start_month": 9, - "certificate_description": "This interdisciplinary course uses social network analysis to understand how networks form, how they are structured, and how this structure influences processes occurring over networks.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 3, - "signature_track_registration_open": false, - "topic_id": 38, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 70, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 85.6667, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 123682 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The regular track final grade is based on 7 assignments (70% of the final grade) and a final exam (30% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 80% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/sna-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - }, - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 7, - "duration_string": "9 weeks", - "signature_track_last_chance_time": null, - "id": 970779, - "start_month": 10, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": 3, - "signature_track_registration_open": false, - "topic_id": 38, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 123682 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "003", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/sna-003\/", - "creator_id": 353840, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 108, - 970779 - ], - "display": true - }, - { - "subtitle_languages_csv": "uk,zh", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/large-icon.png", - "video": "7xy0mKUCXV4", - "university-ids": [ - "umich" - ], - "id": 40, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/75\/07a2c2f614597144b29c9e63bbee75\/U-M_Coursera_Logo-2.svg", - "wordmark": null, - "website_twitter": "umich", - "china_mirror": 3, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/50\/52265d555e7bf0b0b86f7a1a07a183\/favicon-umich.ico", - "website_facebook": "universityofmichigan", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/99\/263203c94842c44bcf757c4a801e8f\/U-M_LogoSmHoriz_160x60.png", - "background_color": "", - "id": 3, - "location_city": "Ann Arbor", - "location_country": "US", - "location_lat": 42.2808256, - "location": "Ann Arbor, MI", - "primary_color": "#002e5f", - "abbr_name": "Michigan", - "website": "http:\/\/www.umich.edu\/", - "description": "The University of Michigan is a public research university located in Ann Arbor, Michigan in the United States.", - "short_name": "umich", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/03\/70c6a457583d267a869cb6555b4de5\/DIL-17Apr12_AT150a_EDIT_TO_2.jpg", - "mailing_list_id": null, - "website_youtube": "user\/um", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/36\/1d953d8380a15d8eb0d307c7cde0bb\/banner-umich.jpg", - "location_state": "MI", - "name": "University of Michigan", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/70\/de505d47be7d3a063b51b6f856a6e2\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/26\/23ecbedd1043250eab7d1b0a41696b\/New-Block-M-Stacked-Blue-295C_600x600.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6b\/fce84d27ebcd493f839f14df253541\/New-Block-M-Stacked-Blue-295C_.svg", - "location_lng": -83.7430378, - "home_link": "", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/05\/1a1f4b975bf71dba0ac79042ed651e\/U-M_LogoSmHoriz_200x48.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course will introduce you to frameworks and tools to measure value; both for corporate and personal assets. It will also help you in decision-making, again at both the corporate and personal levels.", - "short_name": "introfinance", - "category-ids": [ - "economics", - "business" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/introfinance\/small-icon.hover.png", - "instructor": "Gautam Kaul", - "categories": [ - { - "id": 2, - "name": "Economics & Finance", - "mailing_list_id": null, - "short_name": "economics", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 13, - "name": "Business & Management", - "mailing_list_id": null, - "short_name": "business", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Introduction to Finance", - "language": "en", - "courses": [ - { - "grading_policy_distinction": " ", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 23, - "duration_string": "13 weeks", - "signature_track_last_chance_time": null, - "id": 112, - "start_month": 7, - "certificate_description": "You have successfully completed the course, Introduction to Finance, an online, non-credit course, authorized by the University of Michigan and taught by Professor Gautam Kaul of the University of Michigan.", - "start_date_string": "23 July 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-03-18", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 3, - "signature_track_registration_open": false, - "topic_id": 40, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 100, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 100, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 209008 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "This student scored at least 70% on five of the nine assignments, and earned a minimum of 70% on the final exam.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/introfinance-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 112 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/9d\/193d89375944329ca3c0bf32b32c56\/computing_B-02.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/97\/aba290f88787a8c3b13a816837ab6c\/computing_B-02.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/76\/469a2849f2ae5a29cbefba53c82592\/computing_B-02.jpg", - "video": "gk6E57H6mTs", - "university-ids": [ - "jhu" - ], - "id": 63, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "JohnsHopkins", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/80\/d81353ccd0bab30962a5770d7aec97\/favicon-jhu.ico", - "website_facebook": "johnshopkinsuniversity", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/0db65d1501244b9e6eacfa5e637fea\/logo-jhu-front.png", - "background_color": "", - "id": 8, - "location_city": "Baltimore", - "location_country": "US", - "location_lat": 39.2903848, - "location": "Baltimore, MD", - "primary_color": "#0061AA", - "abbr_name": "Johns Hopkins", - "website": "http:\/\/www.jhu.edu\/", - "description": "The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.", - "short_name": "jhu", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c2\/544537cee93c0acd67b6573d46a32e\/Coursera-banner.jpg", - "mailing_list_id": null, - "website_youtube": "johnshopkins", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/83\/94437b11dcbef874ea1f30d960a26b\/banner-jhu.jpg", - "location_state": "MD", - "name": "Johns Hopkins University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/4b\/229e9cabab40da92cdd0fc46cd7e06\/JHUNewSquare.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/4b4ca39464d8fd3a75bf8a68d0a1d9\/JHUNewSquare.png", - "square_logo_svg": "", - "location_lng": -76.6121893, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This course is about learning the fundamental computing skills necessary for effective data analysis. You will learn to program in R and to use R for reading data, writing functions, making informative graphs, and applying modern statistical methods.", - "short_name": "compdata", - "category-ids": [ - "health", - "stats" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/97\/aba290f88787a8c3b13a816837ab6c\/computing_B-02.jpg", - "instructor": "Roger Peng", - "categories": [ - { - "id": 8, - "name": "Health & Society", - "mailing_list_id": null, - "short_name": "health", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Computing for Data Analysis", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 90% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "4 weeks", - "signature_track_last_chance_time": null, - "id": 300, - "start_month": 9, - "certificate_description": "In this course students learn programming in R, reading data into R, creating data graphics, accessing and installing R packages, writing R functions, debugging, and organizing and commenting R code. ", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-06", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 6, - "signature_track_registration_open": false, - "topic_id": 63, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 100, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 2, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 100, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 685384 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on four quizzes and two programming assignments. To receive a Statement of Accomplishments, students must obtain at least 70% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/compdata-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/46\/2952c73da820e080b97b63f9ac0fba\/bloomberg.small.horizontal.blue-Coursera.png", - "course-ids": [ - 300 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/eb\/cf8c0e7e0bb418255e48fe210446c1\/bootcamp_B-02.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/3cc4db194a8f70139ec63afd200a0f\/bootcamp_B-02.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/99\/b022103b7d744911d090acafe2cb98\/bootcamp_B-02.jpg", - "video": "ekdpaf_WT_8", - "university-ids": [ - "jhu" - ], - "id": 68, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "JohnsHopkins", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/80\/d81353ccd0bab30962a5770d7aec97\/favicon-jhu.ico", - "website_facebook": "johnshopkinsuniversity", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/cf\/0db65d1501244b9e6eacfa5e637fea\/logo-jhu-front.png", - "background_color": "", - "id": 8, - "location_city": "Baltimore", - "location_country": "US", - "location_lat": 39.2903848, - "location": "Baltimore, MD", - "primary_color": "#0061AA", - "abbr_name": "Johns Hopkins", - "website": "http:\/\/www.jhu.edu\/", - "description": "The mission of The Johns Hopkins University is to educate its students and cultivate their capacity for life-long learning, to foster independent and original research, and to bring the benefits of discovery to the world.", - "short_name": "jhu", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/c2\/544537cee93c0acd67b6573d46a32e\/Coursera-banner.jpg", - "mailing_list_id": null, - "website_youtube": "johnshopkins", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/83\/94437b11dcbef874ea1f30d960a26b\/banner-jhu.jpg", - "location_state": "MD", - "name": "Johns Hopkins University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/4b\/229e9cabab40da92cdd0fc46cd7e06\/JHUNewSquare.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/4b4ca39464d8fd3a75bf8a68d0a1d9\/JHUNewSquare.png", - "square_logo_svg": "", - "location_lng": -76.6121893, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "This class presents the fundamental probability and statistical concepts used in elementary data analysis. It will be taught at an introductory level for students with junior or senior college-level mathematical training including a working knowledge of calculus. A small amount of linear algebra and programming are useful for the class, but not required. ", - "short_name": "biostats", - "category-ids": [ - "math", - "health", - "biology", - "stats" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/3cc4db194a8f70139ec63afd200a0f\/bootcamp_B-02.jpg", - "instructor": "Brian Caffo", - "categories": [ - { - "id": 5, - "name": "Mathematics", - "mailing_list_id": null, - "short_name": "math", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 8, - "name": "Health & Society", - "mailing_list_id": null, - "short_name": "health", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 10, - "name": "Biology & Life Sciences", - "mailing_list_id": null, - "short_name": "biology", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Mathematical Biostatistics Boot Camp 1", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 90% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 302, - "start_month": 9, - "certificate_description": "This course puts forward key mathematical and statistical topics to help students understand biostatistics at a deeper level. Successful students have a basic understanding of the goals, assumptions, benefits and negatives of probability modeling in the medical sciences.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-11", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 6, - "signature_track_registration_open": false, - "topic_id": 68, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 94.761904761905, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 2, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 94.761904761905, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 688901 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on a series of 7 weekly assessments. To receive a Statement of Accomplishment, students must obtain at least 70% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/biostats-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/41\/41ed34d097fda979808abc09e4030a\/bloomberg.small.horizontal.blue-Coursera.png", - "course-ids": [ - 302 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/large-icon.png", - "video": "KuPai0ogiHk", - "university-ids": [ - "utoronto" - ], - "id": 77, - "universities": [ - { - "rectangular_logo_svg": null, - "wordmark": null, - "website_twitter": "uoftnews", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/773801b870a0cb946698134a77417d\/favicon-utoronto.ico", - "website_facebook": "universitytoronto", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/78\/334b4573e06c876cff8e2484f082d7\/logo-utoronto-front.png", - "background_color": "", - "id": 11, - "location_city": "Toronto", - "location_country": "CA", - "location_lat": 43.653226, - "location": "Toronto, ON, Canada", - "primary_color": "#1c3361", - "abbr_name": "U of T", - "website": "http:\/\/www.utoronto.ca\/", - "description": "Established in 1827, the University of Toronto has one of the strongest research and teaching faculties in North America, presenting top students at all levels with an intellectual environment unmatched in depth and breadth on any other Canadian campus.", - "short_name": "utoronto", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/84\/774219ef720c726661c682cda7838a\/UofT-Banner.jpg", - "mailing_list_id": null, - "website_youtube": "universitytoronto", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/6f\/9a578312b814f8aeaf942f4f248447\/banner-utoronto.jpg", - "location_state": "ON", - "name": "University of Toronto", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/04\/1df8943d27a485a986a3ebf10c83d9\/UofT-Crest-Square.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dd\/cf4561b10afb34d449bb9574ecbca3\/UofT-Crest-Square.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/06\/0e2fff91e34df097bbb12ecd57c0af\/UofT-Crest-Square.svg", - "location_lng": -79.3831843, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e0\/c3219157fdcd439fb3b765c4b723e5\/UofT-Crest-Wide.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about artificial neural networks and how they're being used for machine learning, as applied to speech and object recognition, image segmentation, modeling language and human motion, etc. We'll emphasize both the basic algorithms and the practical tricks needed to get them to work well.", - "short_name": "neuralnets", - "category-ids": [ - "stats", - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/neuralnets\/small-icon.hover.png", - "instructor": "Geoffrey Hinton", - "categories": [ - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Neural Networks for Machine Learning", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "Students who achieved at least 90% overall receive a Statement of Accomplishment with Distinction.\n", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 1, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 256, - "start_month": 10, - "certificate_description": "The course covered learning techniques for many different types of neural network including deep feed-forward networks, recurrent networks and Boltzmann Machines. It covered recent applications to speech, vision, and language, and used hands-on programming assignments.", - "start_date_string": "24 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-19", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 14, - "signature_track_registration_open": false, - "topic_id": 77, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 70.281365740741, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 70.281365740741, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 831097 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on the four programming assignments (5% for PA1, 10% for each of the other three), the weekly quizzes (40%, with each quiz being weighted as one fifteenth of that), and the final exam (25%). Students who achieved at least 70% overall receive a Statement of Accomplishment.\n", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/neuralnets-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 256 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/large-icon.png", - "preview_link": "https:\/\/class.coursera.org\/datasci-001\/lecture\/preview", - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/large-icon.png", - "video": "", - "university-ids": [ - "uw" - ], - "id": 106, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "UW", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", - "website_facebook": "UofWA", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", - "background_color": "", - "id": 15, - "location_city": "Seattle", - "location_country": "US", - "location_lat": 47.6062095, - "location": "Seattle, WA", - "primary_color": "#38255a", - "abbr_name": "Washington", - "website": "https:\/\/www.washington.edu\/", - "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", - "short_name": "uw", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", - "mailing_list_id": null, - "website_youtube": "user\/uwhuskies", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", - "location_state": "WA", - "name": "University of Washington", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", - "square_logo_svg": "", - "location_lng": -122.3320708, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Join the data revolution. Companies are searching for data scientists. This specialized field demands multiple skills not easy to obtain through conventional curricula. Introduce yourself to the basics of data science and leave armed with practical experience extracting value from big data.", - "short_name": "datasci", - "category-ids": [ - "infotech", - "cs-systems", - "cs-programming", - "stats" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/datasci\/small-icon.hover.png", - "instructor": "Bill Howe", - "categories": [ - { - "id": 4, - "name": "Information, Tech & Design", - "mailing_list_id": null, - "short_name": "infotech", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 11, - "name": "Computer Science: Systems & Security", - "mailing_list_id": null, - "short_name": "cs-systems", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 16, - "name": "Statistics and Data Analysis", - "mailing_list_id": null, - "short_name": "stats", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Introduction to Data Science", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 75% of the maximum possible score. ", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 1, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 346, - "start_month": 5, - "certificate_description": "This course covered a broad set of topics critical to practical data science: relational databases, MapReduce, NoSQL, statistical modeling, basic machine learning, and visualization, and a variety of algorithmic topics.", - "start_date_string": "April 2013", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-06-29", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 43, - "signature_track_registration_open": false, - "topic_id": 106, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 58.181818181818, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 58.181818181818, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 999946 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on satisfactory completion of three required programming assignments, a peer-assessed competition in predictive analytics, a peer-assessed visualization assessment, and participation in the forums for peer assistance and optional projects. To receive a Statement of Accomplishment, a student was required to obtain >= 60% of the maximum possible score. ", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/datasci-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": null, - "course-ids": [ - 346 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/large-icon.png", - "preview_link": null, - "small_icon_hover": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/small-icon.hover.png", - "large_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/large-icon.png", - "video": "_NVySmdAH4c", - "university-ids": [ - "epfl" - ], - "id": 116, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/7f14b8c6f54b56a2446c99b2b8df86\/EPFL_LOG_QUADRI_Red_resized.svg", - "wordmark": null, - "website_twitter": "EPFL", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ba\/142188830b51c8c51b95cc25e5dbf3\/epflfav.png", - "website_facebook": "EPFL.ch", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/0a73c737b332745aac47797f57cda4\/logo-epfl-front.png", - "background_color": "", - "id": 16, - "location_city": "Lausanne", - "location_country": "CH", - "location_lat": 46.5199617, - "location": "Lausanne, Switzerland", - "primary_color": "#7E000C", - "abbr_name": "EPFL", - "website": "http:\/\/www.epfl.ch\/", - "description": "", - "short_name": "epfl", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/b50d471bc34471c5a7c696b1d714cc\/rolex_learning_center.jpg", - "mailing_list_id": null, - "website_youtube": "user\/epflnews", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ab\/bb616e071f67f5bcaead9b67dbaa36\/banner-epfl.jpg", - "location_state": "VD", - "name": "\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/01\/a5c9c211331132096e7ba9942dbd51\/square_epfl_400.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/f441e9c1630625018763c3b86cf582\/square_epfl_400.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a7\/fca9be507583b1f25e0fcd9fca0d59\/square_epfl_400.svg", - "location_lng": 6.6335971, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn about functional programming, and how it can be effectively combined with object-oriented programming. Gain practice in writing clean functional code, using the Scala programming language.", - "short_name": "progfun", - "category-ids": [ - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/s3.amazonaws.com\/coursera\/topics\/progfun\/small-icon.hover.png", - "instructor": "Martin Odersky", - "categories": [ - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Functional Programming Principles in Scala", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment with Distinction, one must obtain >= 80% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 18, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 308, - "start_month": 9, - "certificate_description": "This advanced undergraduate programming course covers the principles of functional programming using Scala, including the use of functions as values, recursion, immutability, pattern matching, higher-order functions and collections, and lazy evaluation.", - "start_date_string": "18 September 2012", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2012-12-05", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 13, - "signature_track_registration_open": false, - "topic_id": 116, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 98, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 2, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 98, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2012, - "signature_track_certificate_combined_signature": null, - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 672627 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": null, - "grading_policy_normal": "The final grade was based on 6 programming assignments. To receive a Statement of Accomplishment, one must obtain >= 60% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/progfun-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 308 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/02\/c44a1233fcf277511c7720292324e3\/course_logo.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e1\/644d37da2af639d0c9d1f4fca323c2\/course_logo.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f2\/e2d37549671b4a0c04b4f40669e1c9\/course_logo.jpg", - "video": "", - "university-ids": [ - "uw" - ], - "id": 117, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "UW", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", - "website_facebook": "UofWA", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", - "background_color": "", - "id": 15, - "location_city": "Seattle", - "location_country": "US", - "location_lat": 47.6062095, - "location": "Seattle, WA", - "primary_color": "#38255a", - "abbr_name": "Washington", - "website": "https:\/\/www.washington.edu\/", - "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", - "short_name": "uw", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", - "mailing_list_id": null, - "website_youtube": "user\/uwhuskies", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", - "location_state": "WA", - "name": "University of Washington", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", - "square_logo_svg": "", - "location_lng": -122.3320708, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Investigate the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming. Use the programming languages ML, Racket, and Ruby in ways that will teach you how the pieces of a language fit together to create more than the sum of the parts. Gain new software skills and the concepts needed to learn new languages on your own.", - "short_name": "proglang", - "category-ids": [ - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/e1\/644d37da2af639d0c9d1f4fca323c2\/course_logo.jpg", - "instructor": "Dan Grossman", - "categories": [ - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Programming Languages", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 14, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 352, - "start_month": 1, - "certificate_description": "This course investigates the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming along with many other topics.", - "start_date_string": "January 2013", - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-04-02", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 73, - "signature_track_registration_open": false, - "topic_id": 117, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 100, - "share_for_work": false, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 1, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 83.248707692308, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 0, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 873260 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "12-001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 7 assignments each worth 10% of the final grade, with 90% of the 10% produced from auto-grading and the remaining 10% coming from peer assessment. The course had two exams each worth 15% of the course grade.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/proglang-2012-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": "", - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 352 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/0b\/c3f029f340132247bf0e29fa00b61e\/Talk_Bubble_FIN2.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/a5\/4249170f680bed10896e026c8c904c\/Talk_Bubble_FIN2.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/3b\/cccc8e7188d7f351b5354e0d82684e\/Talk_Bubble_FIN2.jpg", - "video": "WsW9IT1Q6OA", - "university-ids": [ - "pitt" - ], - "id": 161, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "PittTweet", - "china_mirror": 2, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/00\/ee7a228aa46a231152d55b9bb9d0ae\/logo_16x16.png", - "website_facebook": "UPitt", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/79\/17cec4653cf480709f1e1387174c10\/course_logo_160x60.png", - "background_color": "", - "id": 36, - "location_city": "Pittsburgh", - "location_country": "US", - "location_lat": 40.4406248, - "location": "Pittsburgh, PA, USA", - "primary_color": "#211c51", - "abbr_name": "Pittsburgh", - "website": "http:\/\/www.pitt.edu\/", - "description": "Leader in Education | Pioneer in Research | Partner in Regional Development", - "short_name": "pitt", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/dc\/9f0fef78e7139d3b7b13241df58529\/banner-edit.jpg", - "mailing_list_id": null, - "website_youtube": "pittweb", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/b4\/a20a6bc0497aff000b698a477aebba\/banner_928x220.jpg", - "location_state": "PA", - "name": "University of Pittsburgh", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ec\/05df639c8e1a3ff7617e1997f0feae\/pittseal360x360-edit.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/e7\/eaadeaf0338f3f65156f819507e423\/pittseal360x360-edit.png", - "square_logo_svg": "", - "location_lng": -79.9958864, - "home_link": "", - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/7b\/10384469bc3891766ffd0ab7eb40b4\/wide-logo.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Designed for teachers and learners in every setting - in school and out, in formal learning environments or at home - this course is an introduction to the theory and practice of well-structured talk that builds the mind.", - "short_name": "accountabletalk", - "category-ids": [ - "education", - "teacherpd" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/a5\/4249170f680bed10896e026c8c904c\/Talk_Bubble_FIN2.jpg", - "instructor": "Lauren Resnick and Jennifer Zoltners Sherer", - "categories": [ - { - "id": 14, - "name": "Education", - "mailing_list_id": null, - "short_name": "education", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 26, - "name": "Teacher Professional Development", - "mailing_list_id": null, - "short_name": "teacherpd", - "description": "" - } - ], - "name": "Accountable Talk\u00ae: Conversation that Works", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 8, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 970246, - "start_month": 9, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 161, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1251073, - 1280592, - 2606081 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/accountabletalk-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 970246 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/26\/761dfb7b58773c88fe4cb2aed26a3c\/iStock_000020359734_Small.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/7e\/0150790f6c92c48d03bf6178ea9193\/iStock_000020359734_Small.jpg", - "video": "", - "university-ids": [ - "columbia" - ], - "id": 225, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "columbia", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/72\/c9b56e3ff66fa6e1ca52bdea9440ae\/ColumbialittleLOGO4.png", - "website_facebook": "Columbia", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/9b\/42f2eca2f10769400d1f8519892413\/ColumbiaLOGO.png", - "background_color": "", - "id": 40, - "location_city": "New York", - "location_country": "US", - "location_lat": 40.7143528, - "location": "New York City, NY, USA", - "primary_color": "#1f2f60", - "abbr_name": "Columbia", - "website": "http:\/\/www.columbia.edu\/", - "description": "For more than 250 years, Columbia has been a leader in higher education in the nation and around the world. At the core of our wide range of academic inquiry is the commitment to attract and engage the best minds in pursuit of greater human understanding, pioneering new discoveries and service to society.", - "short_name": "columbia", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/3d\/731d687dff430714ea6413c8b9d932\/banner_coursera_columbia.jpg", - "mailing_list_id": null, - "website_youtube": "columbia", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0d\/6b60ecae321cd9d6e02b5a1376e7cb\/columbia-banner.jpg", - "location_state": "NY", - "name": "Columbia University", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d2\/74c67a99b3e2516e7efbb4d9892721\/cu_collegiate_blue.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/bb\/d42540e622a1bb89a1b5f2258f3602\/cu_collegiate_blue.png", - "square_logo_svg": "", - "location_lng": -74.0059731, - "home_link": null, - "class_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8e\/592ba6a9789657a5a0912204491332\/logo_cu_background_trans.png", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.", - "short_name": "nlangp", - "category-ids": [ - "cs-ai" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/c5\/42ab154bbf6f76f51b74b8347deab5\/iStock_000020359734_Small.jpg", - "instructor": "Michael Collins", - "categories": [ - { - "id": 17, - "name": "Computer Science: Artificial Intelligence", - "mailing_list_id": null, - "short_name": "cs-ai", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Natural Language Processing", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a distinction in the class, you have to obtain >= 75% of the maximum possible score.", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 24, - "duration_string": "10 weeks", - "signature_track_last_chance_time": null, - "id": 970276, - "start_month": 2, - "certificate_description": "This introductory graduate\/advanced undergraduate course introduces mathematical and computational models of language, and the application of these models to key problems in natural language processing.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": "2013-05-15", - "certificates_ready": true, - "signature_track_price": null, - "statement_design_id": 59, - "signature_track_registration_open": false, - "topic_id": 225, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": 8.9285714285714, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": 0, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": 8.9285714285714, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 1325520 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 4 quizzes (50% of the final grade) and 3 programming\nassignments (50% of the final grade). To receive a Statement of Accomplishment,\nyou have to obtain >= 50% of the maximum possible score.", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/nlangp-001\/", - "creator_id": null, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 970276 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/03\/7a8bea5487c0296e61da3b557f41d1\/CourseBannerImageOptionBlackGold.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/5a137687bb0acb8d761296eec32e19\/CourseBannerImageOptionBlackGold.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cb\/5ae3762b23bc94f5300164670c182f\/CourseBannerImageOptionBlackGold.jpg", - "video": "EeeVfRSYkV8", - "university-ids": [ - "uw" - ], - "id": 762, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "UW", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/98\/7480c1f9271144aa75fe024a1ad5a0\/favicon-uw.ico", - "website_facebook": "UofWA", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/53\/2f0ff155b3390e3d7190c363a4a045\/uw-logo-coursera-transparent.png", - "background_color": "", - "id": 15, - "location_city": "Seattle", - "location_country": "US", - "location_lat": 47.6062095, - "location": "Seattle, WA", - "primary_color": "#38255a", - "abbr_name": "Washington", - "website": "https:\/\/www.washington.edu\/", - "description": "Founded in 1861, the University of Washington is one of the oldest state-supported institutions of higher education on the West Coast and is one of the preeminent research universities in the world.", - "short_name": "uw", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/d0\/f1be9c6b196a5a0446da96548a85b6\/banner-uw1.jpg", - "mailing_list_id": null, - "website_youtube": "user\/uwhuskies", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5d\/7f56a74b7b3009b4a888e372a41f67\/banner-uw1.jpg", - "location_state": "WA", - "name": "University of Washington", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/8a\/903cf68039c31a207eb7eafff458f7\/w-patch-purple.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/76\/45ce3d3eba0b28c763eacbb2387322\/w-patch-purple.png", - "square_logo_svg": "", - "location_lng": -122.3320708, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Mathematical Methods for Quantitative Finance covers topics from calculus and linear algebra that are fundamental for the study of mathematical finance. Students successfully completing this course will be mathematically well prepared to study quantitative finance at the graduate level.", - "short_name": "mathematicalmethods", - "category-ids": [ - "economics", - "math", - "business" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/90\/5a137687bb0acb8d761296eec32e19\/CourseBannerImageOptionBlackGold.jpg", - "instructor": null, - "categories": [ - { - "id": 2, - "name": "Economics & Finance", - "mailing_list_id": null, - "short_name": "economics", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 5, - "name": "Mathematics", - "mailing_list_id": null, - "short_name": "math", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - }, - { - "id": 13, - "name": "Business & Management", - "mailing_list_id": null, - "short_name": "business", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Mathematical Methods for Quantitative Finance", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 25, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 971199, - "start_month": 9, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 762, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 3834103 - ], - "active": false, - "eligible_for_certificates": false, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/mathematicalmethods-001\/", - "creator_id": 1109500, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 971199 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f4\/fc7a006d2bafe837b6de5016d8a423\/Course-Logo.png", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/4e\/1d7362a932b2aa5baaa895d4f8425b\/Course-Logo.png", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/f0\/377e1431e27761059cf1d408e67642\/Course-Logo.png", - "video": "Bc1-PZ5NfRs", - "university-ids": [ - "cusystem" - ], - "id": 781, - "universities": [ - { - "rectangular_logo_svg": "", - "wordmark": null, - "website_twitter": "", - "china_mirror": 1, - "favicon": "", - "website_facebook": "", - "logo": "", - "background_color": "", - "id": 126, - "location_city": "", - "location_country": "", - "location_lat": null, - "location": "", - "primary_color": "", - "abbr_name": "CU System", - "website": "", - "description": "The University of Colorado is a recognized leader in higher education on the national and global stage. We collaborate to meet the diverse needs of our students and communities. We promote innovation, encourage discovery and support the extension of knowledge in ways unique to the state of Colorado and beyond.", - "short_name": "cusystem", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/40\/7f8dc97c973fcd38a4d202c143f2a9\/cu-bkg-coursera.jpg", - "mailing_list_id": null, - "website_youtube": "", - "partner_type": 2, - "banner": "", - "location_state": "", - "name": "University of Colorado System", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1b\/fb8b2887a17b007626846d08988b39\/colorado.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/0c\/5859039090ad9fd55834fde43636a2\/colorado.jpg", - "square_logo_svg": "", - "location_lng": null, - "home_link": "", - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Start learning how to program video games using the C# programming language. Plenty of practice opportunities are included!", - "short_name": "gameprogramming", - "category-ids": [ - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/4e\/1d7362a932b2aa5baaa895d4f8425b\/Course-Logo.png", - "instructor": null, - "categories": [ - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Beginning Game Programming with C#", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 16, - "duration_string": "8 weeks", - "signature_track_last_chance_time": null, - "id": 971200, - "start_month": 9, - "certificate_description": "This introductory undergraduate course teaches beginning programming concepts in a game development context.", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 781, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": true, - "instructors": [ - 3134388 - ], - "active": true, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "The final grade was based on 6 Programming Assignments (48% of the final grade), a game development project (30% of the final grade), and a final exam (22% of the final grade). To receive a Statement of Accomplishment, you have to obtain >= 70% of the maximum possible score. ", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/gameprogramming-001\/", - "creator_id": 3134388, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/13\/0e2b677ebb94e8d3fdcd7cfdae92fd\/cu-coursera.png", - "course-ids": [ - 971200 - ], - "display": true - }, - { - "subtitle_languages_csv": "", - "photo": "https:\/\/coursera-course-photos.s3.amazonaws.com\/48\/87ad9974a90a93b925e6861a8a15a1\/principles-reactive-v1.0.jpg", - "preview_link": null, - "small_icon_hover": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/9621270b46581ec73e52c6fb16aa02\/principles-reactive-v1.0.jpg", - "large_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/1c\/52b9de790b83e6c020c5884a689607\/principles-reactive-v1.0.jpg", - "video": "kZpLmcgq82k", - "university-ids": [ - "epfl" - ], - "id": 987, - "universities": [ - { - "rectangular_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/89\/7f14b8c6f54b56a2446c99b2b8df86\/EPFL_LOG_QUADRI_Red_resized.svg", - "wordmark": null, - "website_twitter": "EPFL", - "china_mirror": 1, - "favicon": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ba\/142188830b51c8c51b95cc25e5dbf3\/epflfav.png", - "website_facebook": "EPFL.ch", - "logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/1d\/0a73c737b332745aac47797f57cda4\/logo-epfl-front.png", - "background_color": "", - "id": 16, - "location_city": "Lausanne", - "location_country": "CH", - "location_lat": 46.5199617, - "location": "Lausanne, Switzerland", - "primary_color": "#7E000C", - "abbr_name": "EPFL", - "website": "http:\/\/www.epfl.ch\/", - "description": "", - "short_name": "epfl", - "landing_page_banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/22\/b50d471bc34471c5a7c696b1d714cc\/rolex_learning_center.jpg", - "mailing_list_id": null, - "website_youtube": "user\/epflnews", - "partner_type": 1, - "banner": "https:\/\/coursera-university-assets.s3.amazonaws.com\/ab\/bb616e071f67f5bcaead9b67dbaa36\/banner-epfl.jpg", - "location_state": "VD", - "name": "\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne", - "square_logo": "https:\/\/coursera-university-assets.s3.amazonaws.com\/01\/a5c9c211331132096e7ba9942dbd51\/square_epfl_400.png", - "square_logo_source": "https:\/\/coursera-university-assets.s3.amazonaws.com\/5f\/f441e9c1630625018763c3b86cf582\/square_epfl_400.png", - "square_logo_svg": "https:\/\/coursera-university-assets.s3.amazonaws.com\/a7\/fca9be507583b1f25e0fcd9fca0d59\/square_epfl_400.svg", - "location_lng": 6.6335971, - "home_link": null, - "class_logo": "", - "display": true - } - ], - "self_service_course_id": null, - "short_description": "Learn how to write composable software that is event-driven, scalable under load, resilient and responsive in the presence of failures. Model systems after human organizations or inter-human communication.", - "short_name": "reactive", - "category-ids": [ - "cs-programming" - ], - "visibility": 0, - "small_icon": "https:\/\/coursera-course-photos.s3.amazonaws.com\/cd\/9621270b46581ec73e52c6fb16aa02\/principles-reactive-v1.0.jpg", - "instructor": null, - "categories": [ - { - "id": 12, - "name": "Computer Science: Software Engineering", - "mailing_list_id": null, - "short_name": "cs-programming", - "description": "Our wide range of courses allows students to explore topics from many different fields of study. Sign up for a class today and join our global community of students and scholars!" - } - ], - "name": "Principles of Reactive Programming", - "language": "en", - "courses": [ - { - "grading_policy_distinction": "", - "ace_track_price_display": null, - "signature_track_certificate_design_id": null, - "ace_semester_hours": null, - "start_day": 4, - "duration_string": "7 weeks", - "signature_track_last_chance_time": null, - "id": 971465, - "start_month": 11, - "certificate_description": "", - "start_date_string": null, - "chegg_session_id": "", - "signature_track_regular_price": null, - "grades_release_date": null, - "certificates_ready": false, - "signature_track_price": null, - "statement_design_id": null, - "signature_track_registration_open": false, - "topic_id": 987, - "eligible_for_signature_track": false, - "start_date": null, - "record": { - "grade_distinction": null, - "share_for_work": null, - "is_enrolled_for_proctored_exam": false, - "achievement_level": null, - "signature_track": false, - "passed_ace": false, - "ace_grade": 0, - "grade_normal": null, - "verify_cert_id": "", - "authenticated_overall": false, - "with_grade_cert_id": "" - }, - "status": 1, - "start_year": 2013, - "signature_track_certificate_combined_signature": "", - "end_date": null, - "notified_subscribers": false, - "instructors": [ - 13089, - 672627, - 1337605 - ], - "active": false, - "eligible_for_certificates": true, - "signature_track_certificate_signature_blurb": "", - "deployed": true, - "ace_close_date": null, - "name": "001", - "textbooks": [ - - ], - "signature_track_open_time": null, - "eligible_for_ACE": false, - "grading_policy_normal": "", - "ace_open_date": null, - "home_link": "https:\/\/class.coursera.org\/reactive-001\/", - "creator_id": 628123, - "proctored_exam_completion_date": null, - "university_logo": null, - "signature_track_close_time": null, - "auth_review_completion_date": null - } - ], - "university_logo": "", - "course-ids": [ - 971465 - ], - "display": true - } -] \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html deleted file mode 100644 index 387dcea67..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/us_presidents_wikipedia.html +++ /dev/null @@ -1,7196 +0,0 @@ - - - - - - List of Presidents of the United States - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - - - -
          -

          List of Presidents of the United States

          -
          From Wikipedia, the free encyclopedia
          Jump to: navigation, search
          -
          The White House, the president's official residence and center of the administration

          Under the United States Constitution, the President of the United States is the head of state and head of government of the United States. As chief of the executive branch and head of the federal government as a whole, the presidency is the highest political office in the United States by influence and recognition. The president is also the commander-in-chief of the United States Armed Forces. The president is indirectly elected to a four-year term by an Electoral College (or by the House of Representatives should the Electoral College fail to award an absolute majority of votes to any person). Since the ratification of the Twenty-second Amendment to the United States Constitution in 1951, no person may be elected President more than twice, and no one who has served more than two years of a term to which someone else was elected may be elected more than once.[1] Upon the death, resignation, or removal from office of an incumbent President, the Vice President assumes the office. The President must be at least 35 years of age, has to live in the United States for 14 years, and has to be a "natural born" citizen of the United States.

          This list includes only those persons who were sworn into office as president following the ratification of the United States Constitution, which took effect on March 4, 1789. For American leaders before this ratification, see President of the Continental Congress.[2] The list does not include any Acting Presidents under the Twenty-fifth Amendment to the United States Constitution.

          There have been 43 people sworn into office, and 44 presidencies, as Grover Cleveland served two non-consecutive terms and is counted chronologically as both the 22nd and 24th president. Of the individuals elected as president, four died in office of natural causes (William Henry Harrison,[3] Zachary Taylor,[4] Warren G. Harding,[5] and Franklin D. Roosevelt), four were assassinated (Abraham Lincoln,[6] James A. Garfield,[6][7] William McKinley,[8] and John F. Kennedy) and one resigned (Richard Nixon).[9]

          George Washington, the first president, was inaugurated in 1789 after a unanimous vote of the Electoral College. William Henry Harrison spent the shortest time in office with 32 days in 1841. Franklin D. Roosevelt spent the longest with over twelve years, but died shortly into his fourth term in 1945; he is the only president to have served more than two terms. A constitutional amendment, affecting presidents after Harry Truman, was passed to limit the number of times an individual can be elected president. Andrew Jackson, the seventh president, was the first to be elected by men of all classes in 1828 after most laws barring non-land-owners from voting were repealed. Warren Harding was the first elected after women gained voting rights in 1920. Four presidents – John Q. Adams, Rutherford B. Hayes, Benjamin Harrison and George W. Bush – lost the popular vote but assumed office. John F. Kennedy has been the only president of Roman Catholic faith, and the current president, Barack Obama, is the first president of recent African descent.[10]

          -

          The listing below is complete for the current government of the USA. For this country, however, there were prior governments (including that under the Articles of Confederation). Prior to George Washington as first president under the current constitution, there were twelve people in leadership over the government of the United States of America who held the title of "President". Also during the Civil War, there was the position of "President of the Confederate States of America" in an entity separate from the USA, and this position was held by one person.

          -

          - -

          -

          List of presidents

          -
          -
          Parties
          -
          -

                No party       Federalist       Democratic-Republican       Democratic       Whig       Republican

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /tr> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          PresidentTook officeLeft officeParty - Term
          - [n 1] -
          Previous officeVice President
          1 -
          -
          -
          -

          George-Washington.jpg

          -
          -
          -
          -
          - George Washington
          - (1732–1799)
          - [11][12][13] -
          - April 30, 1789
          - [n 2] -
          March 4, 1797Independent[14] - 1
          - (1789) -
          - Commander-in-Chief of the Continental Army
          - (1775–1783) -
           John Adams
          - 2
          - (1792) -
          2 -
          -
          -
          -

          US Navy 031029-N-6236G-001 A painting of President John Adams (1735-1826), 2nd president of the United States, by Asher B. Durand (1767-1845)-crop.jpg

          -
          -
          -
          -
          - John Adams
          - (1735–1826)
          - [15][16][17] -
          March 4, 1797 - March 4, 1801
          - [n 3] -
          Federalist - 3
          - (1796) -
          Vice PresidentThomas Jefferson
          3 -
          -
          -
          -

          Thomas Jefferson by Rembrandt Peale, 1800.jpg

          -
          -
          -
          -
          - Thomas Jefferson
          - (1743–1826)
          - [18][19][20] -
          March 4, 1801March 4, 1809 - - Democratic-
          - Republican -
          -
          - 4
          - (1800) -
          Vice President - Aaron Burr
          - March 4, 1801March 4, 1805 -
          - 5
          - (1804) -
          - George Clinton[n 4]
          - March 4, 1805April 20, 1812 -
          4 -
          -
          -
          -

          James Madison.jpg

          -
          -
          -
          -
          - James Madison
          - (1751–1836)
          - [21][22][23] -
          March 4, 1809March 4, 1817 - - Democratic-
          - Republican -
          -
          - 6
          - (1808) -
          - Secretary of State
          - (1801–1809) -
           
          - Vacant[n 5]
          - April 20, 1812March 4, 1813 -
          - 7
          - (1812) -
          - Elbridge Gerry[n 4]
          - March 4, 1813November 23, 1814 -
          - Vacant[n 5]
          - November 23, 1814March 4, 1817 -
          5 -
          -
          -
          -

          James Monroe White House portrait 1819.gif

          -
          -
          -
          -
          - James Monroe
          - (1758–1831)
          - [24][25][26] -
          March 4, 1817March 4, 1825 - - Democratic-
          - Republican -
          -
          - 8
          - (1816) -
          - Secretary of State
          - (1811–1817) -
          Daniel D. Tompkins
          - 9
          - (1820) -
          6 -
          -
          -
          -

          John Quincy Adams.jpg

          -
          -
          -
          -
          - John Quincy Adams
          - (1767–1848)
          - [27][28][29] -
          March 4, 1825 - March 4, 1829
          - [n 3] -
          - - Democratic-
          - Republican -
          -
          - 10
          - (1824) -
          - Secretary of State
          - (1817–1825) -
          - John C. Calhoun[n 6]
          - March 4, 1825December 28, 1832 -
          7 -
          -
          -
          -

          Andrew Jackson.jpg

          -
          -
          -
          -
          - Andrew Jackson
          - (1767–1845)
          - [30][31][32] -
          March 4, 1829March 4, 1837Democratic - 11
          - (1828) -
          - U.S. Senator from Tennessee
          - (1823–1825) -
           
          - Vacant[n 5]
          - December 28, 1832March 4, 1833 -
          - 12
          - (1832) -
          - Martin Van Buren
          - March 4, 1833March 4, 1837 -
          8 -
          -
          -
          -

          MartinVanBuren.png

          -
          -
          -
          -
          - Martin Van Buren
          - (1782–1862)
          - [33][34][35] -
          March 4, 1837 - March 4, 1841
          - [n 3] -
          Democratic - 13
          - (1836) -
          Vice PresidentRichard Mentor Johnson
          9 -
          -
          -
          -

          William Henry Harrison.jpg

          -
          -
          -
          -
          - William Henry Harrison
          - (1773–1841)
          - [36][37][38] -
          March 4, 1841 - April 4, 1841
          - [n 4] -
          Whig - 14
          - (1840) -
          - Minister to Colombia
          - (1828–1829) -
          John Tyler
          10 -
          -
          -
          -

          WHOportTyler.jpg

          -
          -
          -
          -
          - John Tyler
          - (1790–1862)
          - [39][40][41] -
          April 4, 1841March 4, 1845 - Whig
          - April 4, 1841September 13, 1841 -
          - Vice President
          - [n 7] -
          Vacant[n 5]
          - Independent[n 8]
          - September 13, 1841March 4, 1845 -
          11 -
          -
          -
          -

          JamesKPolk.png

          -
          -
          -
          -
          - James K. Polk
          - (1795–1849)
          - [42][43][44] -
          March 4, 1845March 4, 1849Democratic - 15
          - (1844) -
          - Governor of Tennessee
          - (1839–1841) -
          George M. Dallas
          12 -
          -
          -
          -

          Zachary Taylor-circa1850.jpg

          -
          -
          -
          -
          - Zachary Taylor
          - (1784–1850)
          - [45][46][47] -
          March 4, 1849 - July 9, 1850
          - [n 4] -
          Whig - 16
          - (1848) -
          - U.S. Army Major general from the 1st Infantry Regiment
          - (1846–1849) -
          Millard Fillmore
          13 -
          -
          -
          -

          Fillmore.jpg

          -
          -
          -
          -
          - Millard Fillmore
          - (1800–1874)
          - [48][49][50] -
          July 9, 1850 - March 4, 1853
          - [n 9] -
          WhigVice PresidentVacant[n 5]
          14 -
          -
          -
          -

          Franklin Pierce.jpg

          -
          -
          -
          -
          - Franklin Pierce
          - (1804–1869)
          - [51][52][53] -
          March 4, 1853March 4, 1857Democratic - 17
          - (1852) -
          - U.S. Army Brigadier general from the 9th Infantry Regiment
          - (1847-1848) -
          - William R. King[n 4]
          - March 4, 1853April 18, 1853 -
          - Vacant[n 5]
          - April 18, 1853March 4, 1857 -
          15 -
          -
          -
          -

          James Buchanan.jpg

          -
          -
          -
          -
          - James Buchanan
          - (1791–1868)
          - [54][55][56] -
          March 4, 1857March 4, 1861Democratic - 18
          - (1856) -
          - Minister to the United Kingdom
          - (1853–1856) -
          John C. Breckinridge
          16 -
          -
          -
          -

          Abraham Lincoln November 1863.jpg

          -
          -
          -
          -
          - Abraham Lincoln
          - (1809–1865)
          - [57][58][59] -
          March 4, 1861 - April 15, 1865
          - [n 10] -
          Republican - 19
          - (1860) -
          - U.S. Representative from Illinois
          - (1847–1849) -
          - Hannibal Hamlin
          - March 4, 1861March 4, 1865 -
          - Republican
          - National Union[n 11] -
          - 20
          - (1864) -
          - Andrew Johnson
          - March 4, 1865April 15, 1865 -
          17 -
          -
          -
          -

          President Andrew Johnson.jpg

          -
          -
          -
          -
          - Andrew Johnson
          - (1808–1875)
          - [60][61][62] -
          April 15, 1865March 4, 1869 - Democratic
          - National Union[n 11]
          - Independent[n 12] -
          Vice President - Vacant
          - [n 5] -
          18 -
          -
          -
          -

          UlyssesGrant.png

          -
          -
          -
          -
          - Ulysses S. Grant
          - (1822–1885)
          - [63][64][65] -
          March 4, 1869March 4, 1877Republican - 21
          - (1868) -
          - Commanding General of the U.S. Army
          - (1864–1869) -
          - Schuyler Colfax
          - March 4, 1869March 4, 1873 -
          - 22
          - (1872) -
          - Henry Wilson[n 4]
          - March 4, 1873November 22, 1875 -
          - Vacant[n 5]
          - November 22, 1875March 4, 1877 -
          19 -
          -
          -
          -

          President Rutherford Hayes 1870 - 1880.jpg

          -
          -
          -
          -
          - Rutherford B. Hayes
          - (1822–1893)
          - [66][67][68] -
          March 4, 1877March 4, 1881Republican - 23
          - (1876) -
          - Governor of Ohio
          - (1868–1872, 1876–1877) -
          William A. Wheeler
          20 -
          -
          -
          -

          James Abram Garfield, photo portrait seated.jpg

          -
          -
          -
          -
          - James A. Garfield
          - (1831–1881)
          - [69][70][71] -
          March 4, 1881 - September 19, 1881
          - [n 10] -
          Republican - 24
          - (1880) -
          - U.S. Representative from Ohio
          - (1863–1881) -
          Chester A. Arthur
          21 -
          -
          -
          -

          Chester Alan Arthur.jpg

          -
          -
          -
          -
          - Chester A. Arthur
          - (1829–1886)
          - [72][73][74] -
          September 19, 1881March 4, 1885RepublicanVice PresidentVacant[n 5]
          22StephenGroverCleveland.png - Grover Cleveland
          - (1837–1908)
          - [75][76] -
          March 4, 1885 - March 4, 1889
          - [n 3] -
          Democratic - 25
          - (1884) -
          - Governor of New York
          - (1883–1885) -
          - Thomas A. Hendricks[n 4]
          - March 4, 1885November 25, 1885 -
          - Vacant[n 5]
          - November 25, 1885March 4, 1889 -
          23 -
          -
          -
          -

          Pach Brothers - Benjamin Harrison.jpg

          -
          -
          -
          -
          - Benjamin Harrison
          - (1833–1901)
          - [77][78][79] -
          March 4, 1889March 4, 1893Republican - 26
          - (1888) -
          - U.S. Senator from Indiana
          - (1881–1887) -
          Levi P. Morton
          24StephenGroverCleveland.png - Grover Cleveland
          - (1837–1908)
          - [75][76] -
          March 4, 1893March 4, 1897Democratic - 27
          - (1892) -
          - President
          - (1885–1889) -
          Adlai Stevenson I
          25 -
          -
          -
          -

          William McKinley 1.png

          -
          -
          -
          -
          - William McKinley
          - (1843–1901)
          - [80][81][82] -
          March 4, 1897 - September 14, 1901
          - [n 10] -
          Republican - 28
          - (1896) -
          - Governor of Ohio
          - (1892–1896) -
          - Garret Hobart[n 4]
          - March 4, 1897November 21, 1899 -
          - Vacant[n 5]
          - November 21, 1899March 4, 1901 -
          - 29
          - (1900) -
          - Theodore Roosevelt
          - March 4, 1901September 14, 1901 -
          26 -
          -
          -
          -

          President Theodore Roosevelt, 1904.jpg

          -
          -
          -
          -
          - Theodore Roosevelt
          - (1858–1919)
          - [83][84][85] -
          September 14, 1901 - March 4, 1909
          - [n 9] -
          RepublicanVice President - Vacant[n 5]
          - September 14, 1901March 4, 1905 -
          - 30
          - (1904) -
          - Charles W. Fairbanks
          - March 4, 1905March 4, 1909 -
          27 -
          -
          -
          -

          William Howard Taft, Bain bw photo portrait, 1908.jpg

          -
          -
          -
          -
          - William Howard Taft
          - (1857–1930)
          - [86][87][88] -
          March 4, 1909 - March 4, 1913
          - [n 3] -
          Republican - 31
          - (1908) -
          - Secretary of War
          - (1904–1908) -
          - James S. Sherman[n 4]
          - March 4, 1909October 30, 1912 -
          - Vacant[n 5]
          - October 30, 1912March 4, 1913 -
          28 -
          -
          -
          -

          President Woodrow Wilson portrait December 2 1912.jpg

          -
          -
          -
          -
          - Woodrow Wilson
          - (1856–1924)
          - [89][90][91] -
          March 4, 1913March 4, 1921Democratic - 32
          - (1912) -
          - Governor of New Jersey
          - (1911–1913) -
          Thomas R. Marshall
          - 33
          - (1916) -
          29 -
          -
          -
          -

          Warren G Harding-Harris & Ewing.jpg

          -
          -
          -
          -
          - Warren G. Harding
          - (1865–1923)
          - [92][93][94] -
          March 4, 1921 - August 2, 1923
          - [n 4] -
          Republican - 34
          - (1920) -
          - U.S. Senator from Ohio
          - (1915–1921) -
          Calvin Coolidge
          30 -
          -
          -
          -

          John Calvin Coolidge, Bain bw photo portrait.jpg

          -
          -
          -
          -
          - Calvin Coolidge
          - (1872–1933)
          - [95][96][97] -
          August 2, 1923March 4, 1929RepublicanVice President - Vacant[n 5]
          - August 2, 1923March 4, 1925 -
          - 35
          - (1924) -
          - Charles G. Dawes
          - March 4, 1925March 4, 1929 -
          31 -
          -
          -
          -

          HerbertHoover.jpg

          -
          -
          -
          -
          - Herbert Hoover
          - (1874–1964)
          - [98][99][100] -
          March 4, 1929 - March 4, 1933
          - [n 3] -
          Republican - 36
          - (1928) -
          - Secretary of Commerce
          - (1921–1928) -
          Charles Curtis
          32 -
          -
          -
          -

          Franklin D. Roosevelt - NARA - 196715.jpg

          -
          -
          -
          -
          - Franklin D. Roosevelt
          - (1882–1945)
          - [101][102][103] -
          March 4, 1933 (1933-03-04) - April 12, 1945 (1945-04-12)
          - [n 4] -
          Democratic - 37
          - (1932)
          - [n 13] -
          - Governor of New York
          - (1929–1932) -
          - John Nance Garner
          - March 4, 1933January 20, 1941 -
          - 38
          - (1936) -
          - 39
          - (1940) -
          - Henry A. Wallace
          - January 20, 1941January 20, 1945 -
          - 40
          - (1944) -
          - Harry S. Truman
          - January 20, 1945April 12, 1945 -
          33 -
          -
          -
          -

          Harry S. Truman.jpg

          -
          -
          -
          -
          - Harry S. Truman
          - (1884–1972)
          - [104][105][106] -
          April 12, 1945January 20, 1953DemocraticVice President - Vacant[n 5]
          - April 12, 1945January 20, 1949 -
          - 41
          - (1948) -
          - Alben W. Barkley
          - January 20, 1949January 20, 1953 -
          34 -
          -
          -
          -

          Dwight D. Eisenhower, White House photo portrait, February 1959.jpg

          -
          -
          -
          -
          - Dwight D. Eisenhower
          - (1890–1969)
          - [107][108][109] -
          January 20, 1953 - January 20, 1961
          - [n 14] -
          Republican - 42
          - (1952) -
          - Supreme Allied Commander Europe
          - (1949–1952) -
          Richard Nixon
          - 43
          - (1956) -
          35 -
          -
          -
          -

          Jfk2.jpg

          -
          -
          -
          -
          - John F. Kennedy
          - (1917–1963)
          - [110][111][112] -
          January 20, 1961 - November 22, 1963
          - [n 10] -
          Democratic - 44
          - (1960) -
          - U.S. Senator from Massachusetts
          - (1953–1960) -
          Lyndon B. Johnson
          36 -
          -
          -
          -

          Lyndon B. Johnson, photo portrait, leaning on chair, color.jpg

          -
          -
          -
          -
          - Lyndon B. Johnson
          - (1908–1973)
          - [113][114] -
          November 22, 1963January 20, 1969DemocraticVice President - Vacant[n 5]
          - November 22, 1963January 20, 1965 -
          - 45
          - (1964) -
          - Hubert Humphrey
          - January 20, 1965January 20, 1969 -
          37 -
          -
          -
          -

          Richard M. Nixon, ca. 1935 - 1982 - NARA - 530679.jpg

          -
          -
          -
          -
          - Richard Nixon
          - (1913–1994)
          - [115][116][117] -
          January 20, 1969 - August 9, 1974
          - [n 6] -
          Republican - 46
          - (1968) -
          - Vice President
          - (1953–1961) -
          - Spiro Agnew[n 6]
          - January 20, 1969October 10, 1973 -
          - 47
          - (1972) -
           
          - Vacant[n 5]
          - October 10, 1973December 6, 1973 -
          - Gerald Ford
          - December 6, 1973August 9, 1974 -
          38 -
          -
          -
          -

          Gerald Ford.jpg

          -
          -
          -
          -
          - Gerald Ford
          - (1913–2006)
          - [118][119][120] -
          August 9, 1974January 20, 1977RepublicanVice President - Vacant[n 5]
          - August 9, 1974December 19, 1974 -
          - Nelson Rockefeller
          - December 19, 1974January 20, 1977 -
          39 -
          -
          -
          -

          JimmyCarterPortrait.jpg

          -
          -
          -
          -
          - Jimmy Carter
          - (born 1924)
          - [121][122][123] -
          January 20, 1977 - January 20, 1981
          - [n 3] -
          Democratic - 48
          - (1976) -
          - Governor of Georgia
          - (1971–1975) -
          Walter Mondale
          40 -
          -
          -
          -

          Official Portrait of President Reagan 1981.jpg

          -
          -
          -
          -
          - Ronald Reagan
          - (1911–2004)
          - [124][125][126] -
          January 20, 1981January 20, 1989Republican - 49
          - (1980) -
          - Governor of California
          - (1967–1975) -
          George H. W. Bush
          - 50
          - (1984) -
          41 -
          -
          -
          -

          George H. W. Bush, President of the United States, 1989 official portrait.jpg

          -
          -
          -
          -
          - George H. W. Bush
          - (born 1924)
          - [127][128][129] -
          January 20, 1989 - January 20, 1993
          - [n 3] -
          Republican - 51
          - (1988) -
          Vice PresidentDan Quayle
          42Bill Clinton.jpg - Bill Clinton
          - (born 1946)
          - [130][131][132] -
          January 20, 1993January 20, 2001Democratic - 52
          - (1992) -
          - Governor of Arkansas
          - (1979–1981, 1983–1992) -
          Al Gore
          - 53
          - (1996) -
          43George-W-Bush.jpeg - George W. Bush
          - (born 1946)
          - [133][134][135] -
          January 20, 2001January 20, 2009Republican - 54
          - (2000) -
          - Governor of Texas
          - (1995–2000) -
          Dick Cheney
          - 55
          - (2004) -
          44President Barack Obama, 2012 portrait crop.jpg - Barack Obama
          - (born 1961)
          - [136][137][138] -
          January 20, 2009IncumbentDemocratic - 56
          - (2008) -
          - U.S. Senator from Illinois
          - (2005–2008) -
          Joe Biden
          - 57
          - (2012) -
          -

          Living former presidents

          -

          As of April 2014, there are four living former presidents:

          - - - - - - - - - - - - - - - - - - - - - - - - - - -
          PresidentTerm of officeDate of birth
          Jimmy Carter1977–1981(1924-10-01) October 1, 1924 (age 89)
          George H. W. Bush1989–1993(1924-06-12) June 12, 1924 (age 89)
          Bill Clinton1993–2001(1946-08-19) August 19, 1946 (age 67)
          George W. Bush2001–2009(1946-07-06) July 6, 1946 (age 67)
          -

          The most recent death of a former president was that of Gerald Ford (1974–77) on December 26, 2006, aged 93.

          -

          See also

          -
          - - - - - -
          Portal iconUnited States portal
          -
          - -

          Notes

          -
          -
            -
          1. ^ For the purposes of numbering, a presidency is defined as an uninterrupted period of time in office served by one person. For example, George Washington served two consecutive terms and is counted as the first president (not the first and second). Upon the resignation of 37th president Richard Nixon, Gerald Ford became the 38th president even though he simply served out the remainder of Nixon's second term and was never elected to the presidency in his own right. Grover Cleveland was both the 22nd president and the 24th president because his two terms were not consecutive. A period during which a vice-president temporarily becomes Acting President under the Twenty-fifth Amendment is not a presidency, because the president remains in office during such a period.
          2. -
          3. ^ Instead of being inaugurated on March 4, 1789, George Washington's first-term inaugural was postponed 57 days (1 month and 27 days) to April 30, 1789, because the U.S. Congress had not yet achieved a quorum.
          4. -
          5. ^ a b c d e f g h Unseated (lost re-election).
          6. -
          7. ^ a b c d e f g h i j k Died in office of natural causes.
          8. -
          9. ^ a b c d e f g h i j k l m n o p q r Prior to ratification of the Twenty-fifth Amendment to the United States Constitution in 1967, there was no mechanism by which a vacancy in the Vice Presidency could be filled. Richard Nixon was the first president to fill such a vacancy under the provisions of the Twenty-fifth Amendment when he appointed Gerald Ford. Ford later became the second president to fill a vice presidential vacancy when he appointed Nelson Rockefeller to succeed him.
          10. -
          11. ^ a b c Resigned.
          12. -
          13. ^ Being the first vice president to assume the presidency, Tyler set a precedent that a vice president who assumes the office of president becomes a fully functioning president who has his own presidency, as opposed to just a caretaker president. His political opponents attempted to refer to him as "Acting President", but he refused to allow that. The Twenty-fifth Amendment to the United States Constitution put Tyler's precedent into the Constitution.
          14. -
          15. ^ Former Democrat who ran for Vice President on Whig ticket. Clashed with Whig congressional leaders and was expelled from the Whig party in 1841.
          16. -
          17. ^ a b Later sought re-election to a non-consecutive term.
          18. -
          19. ^ a b c d Assassinated.
          20. -
          21. ^ a b Abraham Lincoln and Andrew Johnson were, respectively, a Republican and a Democrat who ran on the National Union ticket in 1864.
          22. -
          23. ^ Andrew Johnson did not identify with the two main parties while president and tried and failed to build a party of loyalists under the National Union label. His failure to build a true National Union Party left Johnson without a party.
          24. -
          25. ^ The twentieth Amendment to the United States Constitution went into effect in 1933, moving the 1937 inauguration day from March 4 to January 20, and shortening this term by 43 days.
          26. -
          27. ^ Dwight Eisenhower is the first president to have been legally prohibited by the Twenty-second Amendment to the United States Constitution from seeking a third term.
          28. -
          -
          -

          References

          -
          -
            -
          1. ^ "The Constitution: Amendments 11–27". U.S. National Archives & Records Administration. Retrieved October 1, 2008. 
          2. -
          3. ^ "Excerpts from "Forgotten Presidents" – The Patriots Handbook, by George Grant". Harrold.org. Retrieved August 8, 2011. 
          4. -
          5. ^ Cleaves, Freeman (1939). Old Tippecanoe: William Henry Harrison and His Time. C. Scribner's Sons. p. 152. 
          6. -
          7. ^ Ingersoll, Jared. "Death of the President". University of Virginia's Miller Center of Public Affairs. Retrieved November 2, 2010. 
          8. -
          9. ^ Russell, Francis (1962). The Shadow of Blooming Grove – Warren G. Harding in His Times. Easton Press. p. 591. ISBN 0070543380. 
          10. -
          11. ^ a b Martin, Paul "Lincoln's Missing Bodyguard", Smithsonian Magazine, April 8, 2010, Retrieved November 15, 2010
          12. -
          13. ^ Donald (1996), p. 597.
          14. -
          15. ^ "Big Ben Parker and President McKinley's Assassination". Math.buffalo.edu. Retrieved August 8, 2011. 
          16. -
          17. ^ "Nixon Resigns". The Washington Post. Retrieved December 31, 2008. 
          18. -
          19. ^ "Obama wins historic US election". BBC. November 5, 2008. Retrieved November 5, 2008. 
          20. -
          21. ^ The White House (March 12, 2007). "Biography of George Washington". Whitehouse.gov. Retrieved January 12, 2009. 
          22. -
          23. ^ "George Washington – no Political Party – 1st President – American Presidents". History. Retrieved January 12, 2009. 
          24. -
          25. ^ "George Washington (February 22, 1732 – December 14, 1799)". American Presidents: Life Portraits. C-SPAN. Retrieved January 12, 2009. 
          26. -
          27. ^ "George Washington's views on political parties in America | Washington Times Communities". Communities.washingtontimes.com. 2012-03-09. Retrieved January 2, 2013. 
          28. -
          29. ^ "Biography of John Adams". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          30. -
          31. ^ "John Adams – Federalist Party – 2nd President – American Presidents". History. Retrieved January 12, 2009. 
          32. -
          33. ^ "John Adams (October 30, 1735 – July 4, 1826)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          34. -
          35. ^ "Biography of Thomas Jefferson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          36. -
          37. ^ "Thomas Jefferson – Democratic-Republican Party – 3rd President – American Presidents". History. Retrieved January 12, 2009. 
          38. -
          39. ^ "Thomas Jefferson (April 13, 1743 – July 4, 1826)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          40. -
          41. ^ "Biography of James Madison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          42. -
          43. ^ "James Madison – Democratic-Republican Party – 4th President – American Presidents". History. Retrieved January 12, 2009. 
          44. -
          45. ^ "James Madison (March 16, 1751 – June 28, 1836)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          46. -
          47. ^ "Biography of James Madison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          48. -
          49. ^ "James Monroe – Democratic-Republican Party – 5th President – American Presidents". History. Retrieved January 12, 2009. 
          50. -
          51. ^ "James Monroe (April 28, 1758 – July 4, 1831)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          52. -
          53. ^ "Biography of John Quincy Adams". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          54. -
          55. ^ "John Quincy Adams – Federalist, Democratic-Republican, National Republican, WHIG Party – 6th President – American Presidents". History. Retrieved January 12, 2009. 
          56. -
          57. ^ "John Quincy Adams (July 11, 1767 – February 23, 1848)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          58. -
          59. ^ "Biography of Andrew Jackson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          60. -
          61. ^ "Andrew Jackson – Democratic-Republican Party – 7th President – American Presidents". History. Retrieved January 12, 2009. 
          62. -
          63. ^ "Andrew Jackson (March 15, 1767 – June 8, 1845)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          64. -
          65. ^ "Biography of Martin Van Buren". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          66. -
          67. ^ "Martin Van Buren – Democratic-Republican, Democratic, and Free Soil Party – 8th President – American Presidents". History. Retrieved January 12, 2009. 
          68. -
          69. ^ "Martin Van Buren (December 5, 1782 – July 24, 1862)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          70. -
          71. ^ "Biography of William Henry Harrison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          72. -
          73. ^ "William Henry Harrison – WHIG Party – 9th President – American Presidents". History. Retrieved January 12, 2009. 
          74. -
          75. ^ "William Henry Harrison (February 9, 1773 – April 4, 1841)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          76. -
          77. ^ "Biography of John Tyler". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          78. -
          79. ^ "John Tyler – No Party – 10th President – American Presidents". History. Retrieved January 12, 2009. 
          80. -
          81. ^ "John Tyler (March 29, 1790 – January 18, 1862)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          82. -
          83. ^ "Biography of James Polk". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          84. -
          85. ^ "James Polk – Democratic Party – 11th President – American Presidents". History. Retrieved January 12, 2009. 
          86. -
          87. ^ "James K. Polk (November 2, 1795 – June 15, 1849)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          88. -
          89. ^ "Biography of Zachary Taylor". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          90. -
          91. ^ "Zachary Taylor – WHIG Party – 12th President – American Presidents". History. Retrieved January 12, 2009. 
          92. -
          93. ^ "Zachary Taylor (November 24, 1784 – July 9, 1850)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          94. -
          95. ^ "Biography of Millard Fillmore". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          96. -
          97. ^ "Millard Filmore – WHIG Party – 13th President – American Presidents". History. Retrieved January 12, 2009. 
          98. -
          99. ^ "Millard Fillmore (January 7, 1800 – March 8, 1874)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          100. -
          101. ^ "Biography of Franklin Pierce". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          102. -
          103. ^ "Franklin Pierce – Democratic Party – 14th President – American Presidents". History. Retrieved January 12, 2009. 
          104. -
          105. ^ "Franklin Pierce (November 23, 1804 – October 8, 1869)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          106. -
          107. ^ "Biography of James Buchanan". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          108. -
          109. ^ "James Buchanan – Democratic Party – 15th President – American Presidents". History. Retrieved January 12, 2009. 
          110. -
          111. ^ "James Buchanan (April 23, 1791 – June 1, 1868)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          112. -
          113. ^ "Biography of Abraham Lincoln". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          114. -
          115. ^ "Abraham Lincoln – Republic, National Union Party – 16th President – American Presidents". History. Retrieved January 12, 2009. 
          116. -
          117. ^ "Abraham Lincoln (February 12, 1809 – April 15, 1865)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          118. -
          119. ^ "Biography of Andrew Johnson". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          120. -
          121. ^ "Andrew Johnson – National Union Party – 17th President – American Presidents". History. Retrieved January 12, 2009. 
          122. -
          123. ^ "Andrew Johnson (December 29, 1808 – July 31, 1875)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          124. -
          125. ^ "Biography of Ulysses S. Grant". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          126. -
          127. ^ "Ulysses S. Grant – National Union Party – 18th President – American Presidents". History. Retrieved January 12, 2009. 
          128. -
          129. ^ "Ulysses S. Grant (April 27, 1822 – July 23, 1885)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          130. -
          131. ^ "Biography of Rutherford B. Hayes". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          132. -
          133. ^ "Rutherford B. Hayes – Republican Party – 19th President – American Presidents". History. Retrieved January 12, 2009. 
          134. -
          135. ^ "Rutherford B. Hayes (October 4, 1822 – January 17, 1893)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          136. -
          137. ^ "Biography of James Garfield". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          138. -
          139. ^ "James Garfield – Republican Party – 20th President – American Presidents". History. Retrieved January 12, 2009. 
          140. -
          141. ^ "James A. Garfield (November 19, 1831 – September 19, 1881)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          142. -
          143. ^ "Biography of Chester Arthur". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          144. -
          145. ^ "Chester A. Arthur – Republican Party – 21st President – American Presidents". History. Retrieved January 12, 2009. 
          146. -
          147. ^ "Chester A. Arthur (October 5, 1829 – November 18, 1886)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          148. -
          149. ^ a b "Grover Cleveland – Democratic Party – 22nd and 24th President – American Presidents". History. Retrieved January 12, 2009. 
          150. -
          151. ^ a b "Grover Cleveland (March 18, 1837 – June 24, 1908)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          152. -
          153. ^ "Biography of Benjamin Harrison". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          154. -
          155. ^ "William Henry Harrison – Whig Party – 23rd President – American Presidents". History. Retrieved January 12, 2009. 
          156. -
          157. ^ "Benjamin Harrison (August 20, 1833 – March 13, 1901)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          158. -
          159. ^ "Biography of William McKinley". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          160. -
          161. ^ "William McKinley – Republican Party – 25th President – American Presidents". History. Retrieved January 12, 2009. 
          162. -
          163. ^ "William McKinley (January 29, 1843 – September 14, 1901)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          164. -
          165. ^ "Biography of Theodore Roosevelt". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          166. -
          167. ^ "Theodore Roosevelt – Republican, Bull Moose Party – 26th President – American Presidents". History. Retrieved January 12, 2009. 
          168. -
          169. ^ "Theodore Roosevelt (October 27, 1858 – January 6, 1919)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          170. -
          171. ^ "Biography of William Howard Taft". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
          172. -
          173. ^ "William Howard Taft – Republican Party – 27th President – American Presidents". History. Retrieved January 12, 2009. 
          174. -
          175. ^ "William Howard Taft (September 15, 1857 – March 8, 1930)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          176. -
          177. ^ "Biography of Woodrow Wilson". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
          178. -
          179. ^ "Woodrow Wilson – Democratic Party – 28th President – American Presidents". History. Retrieved January 12, 2009. 
          180. -
          181. ^ "Woodrow Wilson (December 28, 1856 – February 3, 1924)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          182. -
          183. ^ "Biography of Warren G. Harding". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          184. -
          185. ^ "Warren Harding – Republican Party – 29th President – American Presidents". History. Retrieved January 12, 2009. 
          186. -
          187. ^ "Warren G. Harding (November 2, 1865 – August 2, 1923)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          188. -
          189. ^ "Biography of Calvin Coolidge". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
          190. -
          191. ^ "Calvin Coolidge – Republican Party – 30th President – American Presidents". History. Retrieved January 12, 2009. 
          192. -
          193. ^ "Calvin Coolidge (July 4, 1872 – January 5, 1933)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          194. -
          195. ^ "Biography of Herbert Hoover". Whitehouse.gov. March 13, 2007. Retrieved January 12, 2009. 
          196. -
          197. ^ "Herbert Hoover – Republican Party – 31st President – American Presidents". History. Retrieved January 12, 2009. 
          198. -
          199. ^ "Herbert Hoover (August 10, 1874 – October 20, 1964)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          200. -
          201. ^ "Biography of Franklin D. Roosevelt". Whitehouse.gov. March 20, 2007. Retrieved January 12, 2009. 
          202. -
          203. ^ "Franklin D. Roosevelt – Democratic Party – 32nd President – American Presidents". History. Retrieved January 12, 2009. 
          204. -
          205. ^ "Franklin D. Roosevelt (January 30, 1882 – April 12, 1945)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          206. -
          207. ^ "Biography of Harry S Truman". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          208. -
          209. ^ "Harry S Truman – Democratic Party – 33rd President – American Presidents". History. Retrieved January 12, 2009. 
          210. -
          211. ^ "Harry S Truman (May 8, 1884 – December 26, 1972)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          212. -
          213. ^ "Biography of Dwight D. Eisenhower". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          214. -
          215. ^ "Dwight D. Eisenhower – Democratic Party – 34th President – American Presidents". History. Retrieved January 12, 2009. 
          216. -
          217. ^ "Dwight D. Eisenhower (October 14, 1890 – March 28, 1969)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          218. -
          219. ^ "Biography of John F. Kennedy". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          220. -
          221. ^ "John F. Kennedy – Democratic Party – 35th President – American Presidents". History. Retrieved January 12, 2009. 
          222. -
          223. ^ "John F. Kennedy (May 29, 1917 – November 22, 1963)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          224. -
          225. ^ "Lyndon B. Johnson – Democratic Party – 36th President – American Presidents". History. Retrieved January 12, 2009. 
          226. -
          227. ^ "Lyndon B. Johnson (August 27, 1908 – January 22, 1973)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          228. -
          229. ^ "Richard M. Nixon". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          230. -
          231. ^ "Richard Nixon – Republican Party – 37th President – American Presidents". History. Retrieved January 12, 2009. 
          232. -
          233. ^ "Richard M. Nixon (January 9, 1913 – April 22, 1994)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          234. -
          235. ^ "Biography of Gerald R. Ford". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          236. -
          237. ^ "Gerald Ford – Republican Party – 38th President – American Presidents". History. Retrieved January 12, 2009. 
          238. -
          239. ^ "Gerald R. Ford (July 14, 1913 – December 26, 2006)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          240. -
          241. ^ "Biography of Jimmy Carter". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          242. -
          243. ^ "Jimmy Carter – Democratic Party – 39th President – American Presidents". History. Retrieved January 12, 2009. 
          244. -
          245. ^ "Jimmy Carter (October 1, 1924 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          246. -
          247. ^ "Biography of Ronald Reagan". Whitehouse.gov. June 25, 2008. Retrieved January 12, 2009. 
          248. -
          249. ^ "Ronald Reagan – Republican Party – 40th President – American Presidents". History. Retrieved January 12, 2009. 
          250. -
          251. ^ "Ronald Reagan (February 6, 1911 – June 5, 2004)". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          252. -
          253. ^ "Biography of George Herbert Walker Bush". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          254. -
          255. ^ "George H. W. Bush – Republican Party – 41st President – American Presidents". History. Retrieved January 12, 2009. 
          256. -
          257. ^ "George Bush (June 12, 1924 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          258. -
          259. ^ "Biography of William J. Clinton". Whitehouse.gov. March 12, 2007. Retrieved January 12, 2009. 
          260. -
          261. ^ "Bill Clinton – Democratic Party – 42nd President – American Presidents". History. Retrieved January 12, 2009. 
          262. -
          263. ^ "Bill Clinton (August 19, 1946 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          264. -
          265. ^ "Biography of President George W. Bush". Whitehouse.gov. February 25, 2007. Retrieved January 12, 2009. 
          266. -
          267. ^ "George W. Bush – Republican Party – 43rd President – American Presidents". History. Retrieved January 12, 2009. 
          268. -
          269. ^ "George W. Bush (July 6, 1946 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          270. -
          271. ^ "President Barack Obama". Whitehouse.gov. January 20, 2009. Retrieved January 20, 2009. 
          272. -
          273. ^ "Barack Obama – Democratic Party – 44th President – American Presidents". History. Retrieved January 12, 2009. 
          274. -
          275. ^ "Barack Obama (August 4, 1961 – )". American Presidents: Life Portrait. C-SPAN. Retrieved January 12, 2009. 
          276. -
          -
          -

          External links

          - - - - - - - -

          - - - - - -

          - - - - - -
          -
          -
          -
          -
          -

          Navigation menu

          -
          - -
          - - -
          -
          - - - -
          -
          -
          - - - - - - -
          -
          - - - - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html b/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html deleted file mode 100644 index aa74059a6..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/w3c_html_tables.html +++ /dev/null @@ -1,513 +0,0 @@ - -HTML tables - W3C Wiki - -

          HTML tables

          From W3C Wiki
          Jump to: navigation, search
          - -

          Introduction

          -

          �Ack!� � how do you use web standards to organize reams of data? The very idea of tons of nested elements needed to get all the data into nice little rows and boxes ought to put your brain into �Ack!� mode, but there is a solution � tables to the rescue! -

          In web design tables are a good way to organize data into a tabular form. In other words, think of tables, charts, and other information graphics that help you to see and process a great deal of information in a summary that allows you to compare and contrast different pieces of data. You see them all the time on websites, whether they are giving a summary or comparison of political election results, sports statistics, price comparisons, size charts, or other data. -

          Back in the Jurassic Age of the Internet before CSS was popularised as a method of separating the presentation from structure of the HTML, tables were used as a way to lay out web pages � to create columns, boxes, and generally arrange the content. This is the wrong way to go about it; tables for layout resulted in bloated, messy pages with tons of nested tables � larger file sizes, hard to maintain, hard to modify after the fact. You�ll still see sites like this on the Web, but rest assured that these days you should just use tables for what they are designed for � tabular data � and use CSS to control layout. -

          In this article of the Web Standards Curriculum we will cover how to use HTML tables properly. -

          -

          The most basic table

          -

          Let's start with the semantic HTML code required to render a basic table � this particular example compares recent volcanic eruptions in the Pacific region of North America: -

          -
          <table>
          -    <tr>
          -        <td>Volcano Name</td>
          -        <td>Location</td>
          -        <td>Last Major Eruption</td>
          -        <td>Type of Eruption</td>
          -    </tr>
          -    <tr>
          -        <td>Mt. Lassen</td>
          -        <td>California</td>
          -        <td>1914-17</td>
          -        <td>Explosive Eruption</td>
          -    </tr>
          -    <tr>
          -        <td>Mt. Hood</td>
          -        <td>Oregon</td>
          -        <td>1790s</td>
          -        <td>Pyroclastic flows and Mudflows</td>
          -    </tr>
          -    <tr>
          -        <td>Mt .St. Helens</td>
          -        <td>Washington</td>
          -        <td>1980</td>
          -        <td>Explosive Eruption</td>
          -    </tr>
          -</table>
          -

          This code renders roughly like so: -

          - - - - - - - - - - - - - - - - - - - - - -
          Volcano Name -Location -Last Major Eruption -Type of Eruption -
          Mt. Lassen -California -1914-17 -Explosive Eruption -
          Mt. Hood -Oregon -1790s -Pyroclastic flows and Mudflows -
          Mt .St. Helens -Washington -1980 -Explosive Eruption -
          -

          Let�s start by breaking down the HTML markup used in the above code: -

          -
            -
          • <table></table>: The <table> wrapper element is necessary to indicate to the browser that you wish to arrange the content in a tabular fashion. -
          • -
          • <tr></tr>: The <tr> element establishes a table row. This allows the browser to organize any content between the <tr> and </tr> tags in a horizontal fashion, or all in a row. -
          • -
          • <td></td>: The <td> element defines the table cell or each individual space for content within the row. Only use as many <td> table cells as needed for actual data. Don�t use empty <td> cells for white space or padding � you use CSS to create any white space or padding needed, as this is not only a good way to separate presentation from structure; keeping the HTML clean and simple also makes the table easier to understand for people with visual impairments who are using screenreaders to read the table contents out to them. -
          • -
          -

          Note that the basic elements must be nested as follows: -

          -
          <table>
          -    <tr>
          -        <td>content</td>
          -        <td>content</td>
          -        <td>content</td>
          -    </tr>
          -</table>
          -
          -

          To order them in another fashion will cause the browser to spit up the equivalent of an internet hair ball and render the table in a very odd fashion, if at all. -

          -

          Adding some more features

          -

          Now the basic table is in place, we can add some slightly more complex table features�first, we'll add a caption and Table headers to help improve the data both in terms of semantics and legibility for screen readers. The updated table markup looks like so: -

          -
          <table>
          -    <caption>Recent Major Volcanic Eruptions in the Pacific Northwest</caption>
          -    <tr>
          -        <th>Volcano Name</th>
          -        <th>Location</th>
          -        <th>Last Major Eruption</th>
          -        <th>Type of Eruption</th>
          -    </tr>
          -    <tr>
          -        <td>Mt. Lassen</td>
          -        <td>California</td>
          -        <td>1914-17</td>
          -        <td>Explosive Eruption</td>
          -    </tr>
          -    <tr>
          -        <td>Mt. Hood</td>
          -        <td>Oregon</td>
          -        <td>1790s</td>
          -        <td>Pyroclastic flows and Mudflows</td>
          -    </tr>
          -    <tr>
          -        <td>Mt. St. Helens</td>
          -        <td>Washington</td>
          -        <td>1980</td>
          -        <td>Explosive Eruption</td>
          -    </tr>
          -</table>
          -

          This code is rendered as: -

          - - - - - - - - - - - - - - - - - - - - - -
          Recent Major Volcanic Eruptions in the Pacific Northwest -
          Volcano Name -Location -Last Major Eruption -Type of Eruption -
          Mt. Lassen -California -1914-17 -Explosive Eruption -
          Mt. Hood -Oregon -1790s -Pyroclastic flows and Mudflows -
          Mt. St. Helens -Washington -1980 -Explosive Eruption -
          -

          The new elements used here are: -

          -
            -
          • <caption></caption>: The <caption> element allows you to give the table data a caption. Most browsers will center the caption and render it the same width as the table by default. -
          • -
          • <th></th>: The <th> element delineates the content between the tag as the table head titles for each column. This is useful not just to help semantically describe what the function of this content is, but it also helps render it more accurately in a variety of browsers and devices. -
          • -
          -

          Structuring the table further

          -

          As a final step in structuring our table, we will define header and body table sections, add a footer and define the scope of row and column headings. We will also add a summary attribute to describe the table contents. The final markup looks like so: -

          -
          <table summary="a summary of recent major volcanic eruptions in the Pacific Northwest">
          -    <caption>Recent Major Volcanic Eruptions in the Pacific Northwest</caption>
          -    <thead>
          -        <tr>
          -            <th scope="col">Volcano Name</th>
          -            <th scope="col">Location</th>
          -            <th scope="col">Last Major Eruption</th>
          -            <th scope="col">Type of Eruption</th>
          -        </tr>
          -    </thead>
          -    <tfoot>
          -        <tr>
          -            <td colspan="4">Compiled in 2008 by Ms Jen</td>
          -        </tr>
          -    </tfoot>  
          -    <tbody>
          -        <tr>
          -            <th scope="row">Mt. Lassen</th>
          -            <td>California</td>
          -            <td>1914-17</td>
          -            <td>Explosive Eruption</td>
          -        </tr>
          -        <tr>
          -            <th scope="row">Mt. Hood</th>
          -            <td>Oregon</td>
          -            <td>1790s</td>
          -            <td>Pyroclastic flows and Mudflows</td>
          -        </tr>
          -        <tr>
          -            <th scope="row">Mt. St. Helens</th>
          -            <td>Washington</td>
          -            <td>1980</td>
          -            <td>Explosive Eruption</td>
          -        </tr>
          -    </tbody>
          -</table>
          -

          This table code looks like so in a browser: -

          - - - - - - - - - - - - - - - - - - - - - - - -
          Recent Major Volcanic Eruptions in the Pacific Northwest -
          Volcano Name -Location -Last Major Eruption -Type of Eruption -
          Mt. Lassen -California -1914-17 -Explosive Eruption -
          Mt. Hood -Oregon -1790s -Pyroclastic flows and Mudflows -
          Mt. St. Helens -Washington -1980 -Explosive Eruption -
          Compiled in 2008 by Ms Jen -
          -

          The new elements/attributes are as follows: -

          -
            -
          • The <thead>, <tbody> and <tfoot> elements: These define the table�s header, body and footer respectively. Unless you are coding a really complex table with many columns and rows of data, using these may be overkill. In a complex table however, using them can add useful structure for the developers, and also for browsers and other devices. -
          • -
          • The colspan and rowspan attributes: The colspan attribute creates a table cell that will span more than one column. In the case of the above footer, we wanted the one table cell to span the whole width of the table, thus we told it that it was to span four columns. Alternately, you can add a table cell rowspan attribute that will allow the table cell to span x amount of rows, for example <td rowspan="3">. -
          • -
          • The summary attribute: This attribute is used to define a summary of the table contents, for use by screenreaders (you won't see it on the rendered version of the table above.) Note that in the older W3C recommendations, WCAG 1.0 and HTML 4.0, it says you can use the summary attribute as detailed above. In newer drafts of the specs however, the summary attribute is not mentioned. Whether to still use the summary attribute seems undecided, so for now we at the Web Standards Curriculum have agreed that it is safe to still use it. After all, it doesn�t cause anything to break, and it confers accessibility advantages. -
          • -
          • The scope attribute: You may also have noticed the scope attributes in the th tags, and the fact that we have defined the volcano names as headings too, inside the data rows! The scope attribute can be used in the th element to tell screen readers that the th content is the title for a column or a row. -
          • -
          -

          CSS to the rescue: a better looking table

          -

          The above listed elements and attributes are all that is necessary to code a good data table. Now the HTML structure is in place, let�s look at some simple CSS to make the table look a bit nicer: -

          -
          body {
          -	background: #ffffff;
          -	margin: 0;
          -	padding: 20px;
          -	line-height: 1.4em;
          -	font-family: tahoma, arial, sans-serif;
          -	font-size: 62.5%;
          -}
          -
          -table {
          -	width: 80%;
          -	margin: 0;
          -	background: #FFFFFF;
          -	border: 1px solid #333333;
          -	border-collapse: collapse;
          -}
          -
          -td, th {
          -	border-bottom: 1px solid #333333;
          -	padding: 6px 16px;
          -	text-align: left;
          -}
          -
          -th {
          -	background: #EEEEEE;
          -}
          -
          -caption {
          -	background: #E0E0E0;
          -	margin: 0;
          -	border: 1px solid #333333;
          -	border-bottom: none;
          -	padding: 6px 16px;
          -	font-weight: bold;
          -}
          -

          When applied to our final table markup, the table looks as seen in Figure 1. You can also check out the example live here. -

          the final table example -

          Figure 1: The table now looks a lot more visually appealing. -

          Oooh... Look, much better. You can choose to style the table anyway you want, but the above provides a baseline to work with. You�ll learn a lot more about styling tables with CSS later in the course, but for now I�ll just briefly break down what each section of this CSS is doing: -

          -
            -
          • <body>: In the above CSS, we have added properties to set the margin (to zero in this case), padding to give a little room, background colour (white), font size and family, as well as the line height to also give a little breathing room. You can download the code for this example here � try altering the property values in the CSS file to see how things change. -
          • -
          • <table>: borders have been added using the CSS border property. To make this work correctly, we also had to set the border-collapse property to collapse, to reset the border values in the table and allow the border-bottom to be a straight rule line across the whole row rather than being broken up at the end of each table cell. A width of 80% was chosen for this example (this makes the table extend across 80% of the screen width). -
          • -
          • <th> and <td>: In the above example CSS, we have set text-align to be left, but you could set it to center or other values if you like. we also gave both the <th> and <td> a bit of padding to open up the rows and allow for greater readability. In the case of the <th> selector above, we set another color as to differentiate the headings from the rest of the table. -
          • -
          • <caption>: In the above example we have given the caption a border (with no bottom border, as the border in the table already provided it), a different background colour and bold type to set the caption apart from the table header row. -
          • -
          -

          Summary

          -

          In this article we have gone through all you need to know to create effective HTML data tables. That�s a wrap! Let's leave this with some pertinent thoughts: -

          -
            -
          • It is important that tables are correctly coded to be readable by a variety web browsers, mobile, accessible, and other devices. Table HTML is best kept to a minimum, and you should use CSS to style the tables. You�ll learn a lot more about CSS later on in the course. -
          • -
          • Tables can be accessible to mobile devices and users that use screen reading software by keeping the code clean, using attributes such as scope and summary as well as the <caption> element to help announce clearly and semantically what the respective sections are for. Also important for accessibility is to not use empty table cells for spacing (use CSS for this instead). -
          • -
          -

          Further reading

          - -

          Exercise questions

          -
            -
          • Start by coding a simple table with only the 3 main table elements: table, tr, and td. Save it and view it in a browser. -
          • -
          • Much like the second example above, add a caption, header, and footer to your table. How does that change what you see in the browser? -
          • -
          • What can you do to make your table more accessible to screen readers and mobile devices? -
          • -
          • Now create a CSS file. Try styling the borders, padding, and cell spacing of your table with only CSS and no attributes in your HTML markup. Add background colour and style the fonts. -
          • -
          -

          Have fun. -

          Note: This material was originally published as part of the Opera Web Standards Curriculum, available as 19: HTML tables, written by Jenifer Hanen. Like the original, it is published under the Creative Commons Attribution, Non Commercial - Share Alike 2.5 license. -

          - - - -
          -
          -
          -
          -
          -

          Navigation menu

          -
          - -
          - - -
          -
          - - - -
          -
          - -
          - - - - - - - - \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html b/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html deleted file mode 100644 index aa2ead88e..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/wimbledon_wikipedia.html +++ /dev/null @@ -1,2515 +0,0 @@ - - - - - - The Championships, Wimbledon - Wikipedia, the free encyclopedia - - - - - - - - - - - - - - - - - - - - - - - -
          -
          -
          - - -
          -

          The Championships, Wimbledon

          -
          -
          From Wikipedia, the free encyclopedia
          -
          -
          - Jump to: navigation, search -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          The Championships, Wimbledon
          Wimbledon.svg
          -
          Official website
          -
          Founded1877
          Location - Wimbledon, London
          - United Kingdom -
          VenueThe All England Lawn Tennis and Croquet Club
          SurfaceGrass / Outdoor [a]
          Prize money22,600,000 ($34,500,000) (�26,500,000) (2013)[1]
          -
          Men's
          -
          Draw128S (128Q) / 64D (16Q)[b]
          Current champions - Andy Murray (singles)
          - Bob Bryan / Mike Bryan (doubles) -
          Most singles titles - William Renshaw (7)
          - Pete Sampras (7)
          - Roger Federer (7) -
          Most doubles titlesTodd Woodbridge (9)
          -
          Women's
          -
          Draw128S (96Q) / 64D (16Q)
          Current champions - Marion Bartoli (singles)
          - Hsieh Su-Wei / Peng Shuai (doubles) -
          Most singles titlesMartina Navratilova (9)
          Most doubles titlesElizabeth Ryan (12)
          -
          Mixed Doubles
          -
          Draw48
          Current championsDaniel Nestor / Kristina Mladenovic
          Most titles (male) - Ken Fletcher (4)
          - Vic Seixas (4)
          - Owen Davidson (4) -
          Most titles (female)Elizabeth Ryan (7)
          -
          Grand Slam
          -
          - -
          -
          Last Completed
          -
          2013 Wimbledon
          -

          The Championships, Wimbledon, The Wimbledon Championships or simply Wimbledon is the oldest tennis tournament in the world, and widely considered the most prestigious.[2][3][4][5][6] It has been held at the All England Club in Wimbledon, London, since 1877. It is one of the four Grand Slam tennis tournaments (Majors), the others being the Australian Open, the French Open (Roland Garros) and the US Open. Since the Australian Open shifted to hard court in 1988, Wimbledon is the only Major still played on grass, the game's original surface, which gave the game its original name of "lawn tennis".

          -

          The tournament takes place over two weeks in late June and early July, culminating with the Ladies' and Gentlemen's Singles Final, scheduled for the second Saturday and Sunday respectively. Each year five major, junior, and invitational events are held.

          -

          The hard court (Plexicushion) Australian Open and clay court French Open precede Wimbledon in the year, and the hard court (DecoTurf) US Open follows. For men, the grass court Queen's Club Championships, also in London, and the Gerry Weber Open in Halle, Germany, serve as warm-up events; for women, the Aegon Classic in Birmingham and two joint events, the Topshelf Open in 's-Hertogenbosch, Netherlands and the Eastbourne International.

          -

          Wimbledon traditions include a strict dress code for competitors, the eating of strawberries and cream by the spectators, and Royal patronage. The tournament is also notable for the absence of sponsor advertising around the courts. In 2009, Wimbledon's Centre Court was fitted with a retractable roof to lessen the loss of playing time due to rain.

          -

          - -

          -

          History[edit]

          -
          -
          - -
          -
          - Spencer Gore, the winner of the inaugural Wimbledon Championship. -
          -
          -
          -

          Beginning[edit]

          -

          The All England Lawn Tennis and Croquet Club is a private club founded in 1868, originally as 'The All England Croquet Club'. Its first ground was off Worple Road, Wimbledon.[7]

          -

          In 1876, lawn tennis, a game devised by Major Walter Clopton Wingfield a year or so earlier and originally called 'Sphairistike' was added to the activities of the club. In spring 1877, the club was renamed 'The All England Croquet and Lawn Tennis Club' and signalled its change of name by instituting the first Lawn Tennis Championship. A new code of laws, replacing the code administered by the Marylebone Cricket Club, was drawn up for the event. Today's rules are similar except for details such as the height of the net and posts and the distance of the service line from the net.

          -

          The inaugural 1877 Wimbledon Championship opened on 9 July 1877. The Gentlemen's Singles was the only event held and was won by Spencer Gore, an old Harrovian rackets player, from a field of 22. About 200 spectators paid one shilling each to watch the final.[8]

          -

          The lawns at the ground were arranged so that the principal court was in the middle with the others arranged around it, hence the title 'Centre Court'.[c] The name was retained when the Club moved in 1922 to the present site in Church Road, although no longer a true description of its location. However, in 1980 four new courts were brought into commission on the north side of the ground, which meant the Centre Court was once more correctly defined. The opening of the new No. 1 Court in 1997 emphasised the description.

          -
          -
          - -
          -
          - Ladies Championship, 1884. First prize, awarded to Maud Watson, was a silver flower-basket worth 20 guineas. -
          -
          -
          -

          By 1882, activity at the club was almost exclusively confined to lawn tennis and that year the word 'croquet' was dropped from the title. However, for sentimental reasons, it was restored in 1899.

          -

          In 1884, the club added Ladies' Singles and Gentlemen's Doubles. Ladies' Doubles and Mixed Doubles were added in 1913. Until 1922, the reigning champion had to play only in the final, against whomever had won through to challenge him/her. As with the other three Major Grand Slam events, Wimbledon was contested by top-ranked amateur players until the advent of the open era in tennis in 1968. No British man won the singles event at Wimbledon between Fred Perry in 1936 and Andy Murray in 2013, while no British woman has won since Virginia Wade in 1977, although Annabel Croft and Laura Robson won the Girls' Championship in 1984 and 2008 respectively. The Championship was first televised in 1937.

          -

          21st century[edit]

          -
          -
          - -
          -
          - Centre Court with open roof at the 2010 Championships -
          -
          -
          -

          Wimbledon is considered the world's premier tennis tournament and the priority of the Club is to maintain its leadership. To that end a long-term plan was unveiled in 1993, intended to improve the quality of the event for spectators, players, officials and neighbours.[10]

          -

          Stage one (1994�1997) of the plan was completed for the 1997 championships and involved building the new No. 1 Court in Aorangi Park, a broadcast centre, two extra grass courts and a tunnel under the hill linking Church Road and Somerset Road.

          -

          Stage two (1997�2009) involved the removal of the old No. 1 Court complex to make way for the new Millennium Building, providing extensive facilities for players, press, officials and members, and the extension of the West Stand of the Centre Court with 728 extra seats.

          -

          Stage three (2000�2011) has been completed with the construction of an entrance building, club staff housing, museum, bank and ticket office.[11]

          -

          A new retractable roof was built in time for the 2009 championships, marking the first time that rain did not stop play for a lengthy time on Centre Court. The Club tested the new roof at an event called A Centre Court Celebration on Sunday, 17 May 2009, which featured exhibition matches involving Andre Agassi, Steffi Graf, Kim Clijsters and Tim Henman. The first Championship match to take place under the roof was the completion of the fourth round women's singles match between Dinara Safina and Am�lie Mauresmo. The first match to be played in its entirety under the new roof took place between Andy Murray and Stanislas Wawrinka on 29 June 2009, which Murray won. Murray was also involved in the latest completed match at Wimbledon, which ended at 11:02 pm in a victory over Marcos Baghdatis at Centre Court in the third round of the 2012 Championships. The 2012 Men's Singles Final on 8 July 2012, between Roger Federer and Murray, was the first final to be played under the roof, which was activated during the third set.[12]

          -

          A new 4000-seat No. 2 Court was built on the site of the old No. 13 Court in time for the 2009 Championships.[13] A new 2000-seat No. 3 Court was built on the site of the old No. 2 and No. 3 Courts.[14]

          -

          Events[edit]

          -

          Wimbledon consists of five main events, five junior events and five invitation events.[15]

          -

          Main events[edit]

          -

          The five main events, and the number of players (or teams, in the case of doubles) are:

          -
            -
          • Gentlemen's Singles (128)
          • -
          • Ladies' Singles (128)
          • -
          • Gentlemen's Doubles (64)
          • -
          • Ladies' Doubles (64)
          • -
          • Mixed Doubles (48)
          • -
          -

          Junior events[edit]

          -

          The five junior events and the number of players or teams are:

          -
            -
          • Boys' Singles (64)
          • -
          • Girls' Singles (64)
          • -
          • Boys' Doubles (32)
          • -
          • Girls' Doubles (32)
          • -
          • Disabled Doubles (12)
          • -
          -

          No mixed doubles event is held at this level.

          -

          Invitation events[edit]

          -

          The five invitational events and the number of pairs are:

          -
            -
          • Gentlemen's Invitation Doubles (8 pairs Round Robin)[16]
          • -
          • Senior Gentlemen's Invitation Doubles (8 pairs Round Robin)[17]
          • -
          • Ladies' Invitation Doubles (8 pairs Round Robin)
          • -
          • Gentlemen's Wheelchair Doubles (4 pairs)[18]
          • -
          • Ladies' Wheelchair Doubles (4 pairs)[18]
          • -
          -

          Match formats[edit]

          -

          Matches in the Gentlemen's Singles and Gentlemen's Doubles are best-of-five sets; all other events are best-of-three sets. A tiebreak game is played if the score reaches 6�6 in any set except the fifth (in a five-set match) or the third (in a three-set match), in which case a two-game lead must be reached.

          -

          All events are single-elimination tournaments,[19] except for the Gentlemen's, Senior Gentlemen's and the Ladies' Invitation Doubles, which are round-robin tournaments.

          -

          Until 1922, the winners of the previous year's competition (except in the Ladies' Doubles and Mixed Doubles) were automatically granted byes into the final round (then known as the challenge round). This led to many winners retaining their titles in successive years, as they were able to rest while their opponent competed from the start of the competition. From 1922, the prior year's champions were required to play all the rounds, like other tournament competitors.

          -

          Schedule[edit]

          -

          Each year (currently until 2015), the tournament begins on the Monday falling between 20 and 26 June, two weeks after the Queen's Club Championships, which is one of the men's major warm-up tournaments. Another important men's warm-up tournament is the Gerry Weber Open, which is held in Halle, Germany, during the same week as the Queen's Club Championships. Other important grass-court tournaments before Wimbledon are Eastbourne, England, and 's-Hertogenbosch in the Netherlands, both combining mixed events. The other women's warm-up tournament for Wimbledon is Birmingham, also in England. After the Championships each year there is a tournament at Newport, Rhode Island, USA.

          -

          Wimbledon is scheduled for 14 days, beginning on a Monday and ending on a Sunday. The five main events span both weeks, but the youth and invitational events are held mainly during the second week. Traditionally, there is no play on the "Middle Sunday", which is considered a rest day. However, rain has forced play on the Middle Sunday three times, in 1991, 1997 and 2004. On each of these occasions, Wimbledon staged a "People's Sunday", with unreserved seating and readily available, inexpensive tickets, allowing those with more limited means to sit on the show courts. If the tournament is not completed by the end of the second Sunday, all remaining matches are postponed until "People's Monday".

          -

          From 2015, the championships will begin one week later than in previous years, extending the gap between the tournament and the French Open from two to three weeks.[20]

          -

          Players and seeding[edit]

          -

          Players and doubles pairs are admitted to the main events on the basis of their international rankings, with consideration also given to their previous performances at grass court events. Since the 2001 tournament 32 players have been given seedings in the Gentlemen's and Ladies' singles, 16 teams in the doubles events.

          -

          The Committee of Management and the Referee evaluate all applications for entry, and determine which players may be admitted to the tournament directly. The committee may admit a player without a high enough ranking as a wild card. Usually, wild cards are players who have performed well during previous tournaments, or would stimulate public interest in Wimbledon by participating. The only wild card to win the Gentlemen's Singles Championship was Goran Ivani�evic in 2001. Players and pairs who neither have high enough rankings nor receive wild cards may participate in a qualifying tournament held one week before Wimbledon at the Bank of England Sports Ground in Roehampton. The singles qualifying competitions are three-round events; the same-sex doubles competitions last for only one round. There is no qualifying tournament for Mixed Doubles. The furthest that any qualifier has progressed in a Singles tournament is the semi-final round: John McEnroe in 1977 (Gentlemen's Singles), Vladimir Voltchkov in 2000 (Gentlemen's Singles), and Alexandra Stevenson in 1999 (Ladies' Singles).

          -

          Players are admitted to the junior tournaments upon the recommendations of their national tennis associations, on their International Tennis Federation world rankings and, in the case of the singles events, on the basis of a qualifying competition. The Committee of Management determines which players may enter the four invitational events.

          -

          The Committee seeds the top players and pairs on the basis of their rankings, but it can change the seedings based on a player's previous grass court performance. Since 2002 a seeding committee has not been required for the Gentlemen's Singles following an agreement with the ATP. The seeding order is determined using the formula: ATP Entry System Position points + 100% points earned for all grass court tournaments in the past 12 months + 75% points earned for the best grass court tournament in the 12 months before that. A majority of the entrants are unseeded. Only two unseeded players have won the Gentlemen's Singles: Boris Becker in 1985 and Goran Ivani�evic in 2001. In 1985 there were only 16 seeds and Becker was ranked 20th; Ivani�evic was ranked 125th when he won as a Wild Card entrant, although he had previously been a finalist three times, and been ranked no. 2 in the world; his low ranking was due to having been hampered by a persistent shoulder injury for three years, which had only just cleared up. In 1996, the title was won by Richard Krajicek, who was originally unseeded (ranked 17th, and only 16 players were seeded) but was promoted to a seeded position (still with the number 17) when Thomas Muster withdrew before the tournament. No unseeded player has captured the Ladies' Singles title; the lowest seeded female champion was Venus Williams, who won in 2007 as the 23rd seed; Williams was returning from an injury that had prevented her playing in previous tournaments, giving her a lower ranking than she would normally have had. Unseeded pairs have won the doubles titles on numerous occasions; the 2005 Gentlemen's Doubles champions were not only unseeded, but also (for the first time ever) qualifiers.

          -

          Grounds[edit]

          - -
          -
          - -
          -
          - The order of play for all courts is displayed on boards around the grounds -
          -
          -
          -

          Since 2001 the courts used for Wimbledon have been sown with 100% perennial ryegrass. Prior to 2001 a combination of 70% ryegrass and 30% Creeping Red Fescue was used. The change was made to improve durability and strengthen the sward to better withstand the increasing wear of the modern game.[21]

          -

          The main show courts, Centre Court and No. 1 Court, are normally used for only two weeks a year, during the Championships, but play can extend into a third week in exceptional circumstances. The remaining 17 courts are regularly used for other events hosted by the Club. The show courts were in action for the second time in three months in 2012 as Wimbledon hosted the tennis events of the 2012 Olympic Games. One of the show courts is also used for home ties of the GB teams in the Davis Cup on occasions.

          -
          -
          - -
          -
          - No.1 Court -
          -
          -
          -

          Wimbledon is the only Grand Slam event played on grass courts. At one time, all the Majors, except the French Open, were played on grass. The US Open abandoned grass in 1975 and the Australian Open in 1988.

          -

          The principal court, Centre Court, was opened in 1922 when the Club moved from Worple Road to Church Road. The Church Road venue was larger and was needed to meet the ever-growing public demand.

          -

          Due to the possibility of rain during Wimbledon, a retractable roof was installed prior to the 2009 Championship. It is designed to close/open in about 20 minutes and will be closed primarily to protect play from inclement (and, if necessary, extremely hot) weather during The Championships.[22] When the roof is being opened or closed, play is suspended. The first time the roof was closed during a Wimbledon Championship match was on Monday 29 June 2009, involving Am�lie Mauresmo and Dinara Safina.

          -

          The court has a capacity of 15,000. At its south end is the Royal Box, from which members of the Royal Family and other dignitaries watch matches. Centre Court usually hosts the finals and semifinals of the main events, as well as many matches in the earlier rounds involving top-seeded players or local favourites.

          -

          The second most important court is No. 1 Court. The court was constructed in 1997 to replace the old No.1 Court, which was adjacent to Centre Court. The old No.1 Court was demolished because its capacity for spectators was too low. The court was said to have had a unique, more intimate atmosphere and was a favourite of many players. The new No.1 Court has a capacity of approximately 11,000.

          -

          From 2009, a new No. 2 Court is being used at Wimbledon with a capacity for 4,000 people. To obtain planning permission, the playing surface is around 3.5m below ground level, ensuring that the single-storey structure is only about 3.5m above ground level, and thus not affecting local views.[23] Plans to build on the current site of Court 13 were dismissed due to the high capacity of games played at the 2012 Olympic Games. The old No.2 Court has been renamed as No.3 Court. The old No.2 Court was known as the "Graveyard of Champions" because many highly seeded players were eliminated there during early rounds over the years, including Ilie Nastase, John McEnroe, Boris Becker, Andre Agassi, Pete Sampras, Martina Hingis, Venus Williams,Serena Williams and Maria Sharapova.[24] The court has a capacity of 2,192 + 770 standing. In 2011 a new No.3 Court and a new Court 4 have been unveiled on the sites of the old No.2 and 3 courts.[25]

          -
          -
          - -
          -
          - Terracotta Warriors -
          -
          -
          -

          At the northern end of the grounds is a giant television screen on which important matches are broadcast. Fans watch from an area of grass officially known as the Aorangi Terrace. When British players do well at Wimbledon, the hill attracts fans for them, and is often renamed by the press for them: Greg Rusedski's followers convened at "Rusedski Ridge", and Tim Henman has had the hill nicknamed Henman Hill. As both of them have now retired and Andy Murray is the number 1 British player, the hill is occasionally referred to as "Murray Mound" or "Murrayfield", as a reference to his Scottish heritage and the Scottish ground of the same name, but this has largely failed to catch on � the area is still usually referred to as Henman Hill. None of these nicknames are official.

          -
          -
          Grounds schedule
          -
          -

          The grounds open at 10:30 am on each day. On the Centre Court, play starts at 1 pm, with exception of the final two days of the competition (Ladies' and Gentlemen's Finals), when play begins at 2 pm. On courts 2�19, play begins at noon for at least the first eight days of the competition. It then starts at 11 am for the Junior matches on the middle Saturday and during the second week.

          -

          Traditions[edit]

          -
          -
          - -
          -
          - Wimbledon ball girl at the net, 2007 -
          -
          -
          -
          -
          - -
          -
          - Court 10 � on the outside courts there is no reserved seating -
          -
          -
          -
          -
          - -
          -
          - S�bastien Grosjean takes a shot on Court 18 during the 2004 Championships. -
          -
          -
          -

          Ball boys and ball girls[edit]

          -

          In the championship games, ball boys and girls, known as BBGs, play a crucial role in the smooth running of the tournament, with a brief that a good BBG "should not be seen. They should blend into the background and get on with their jobs quietly."[26]

          -

          From 1947 ball boys were supplied by Goldings,[27] the only Barnardos school to provide them. Prior to this, from the 1920s onwards, the ball boys had been provided by The Shaftsbury Children's Home.

          -

          Since 1969, BBGs have been provided by local schools. As of 2008 they are drawn from schools in the London boroughs of Merton, Sutton, Kingston, and Wandsworth, as well as from Surrey.[28] Traditionally, Wandsworth Boys Grammar School in Sutherland Grove, Southfields and Mayfield Girls School on West Hill in Wandsworth, both now defunct, were the schools of choice for selection of BBGs. This was possibly owing to their proximity to the club. BBGs have an average age of 15, being drawn from the school years nine and ten.[29] BBGs will serve for one, or if re-selected, two tournaments.[30]

          -

          Starting in 2005, BBGs work in teams of six, two at the net, four at the corners, and teams rotate one hour on court, one hour off, (two hours depending on the court) for the day's play.[29] Teams are not told which court they will be working on the day, to ensure the same standards across all courts. With the expansion of the number of courts, and lengthening the tennis day, as of 2008, the number of BBGs required is around 250. BBG service is paid, with a total of �120-�160 being paid to each ball boy or girl after the 13-day period. Along with this it is seen as a privilege, and seen as a valuable addition to a school leaver's curriculum vitae, showing discipline. BBG places are split 50:50 between boys and girls, with girls having been used since 1977, appearing on centre court since 1985.[31]

          -

          Prospective BBGs are first nominated by their school headteacher, to be considered for selection. To be selected, a candidate must pass written tests on the rules of tennis, and pass fitness, mobility and other suitability tests, against initial preliminary instruction material. Successful candidates then commence a training phase, starting in February, in which the final BBGs are chosen through continual assessment. As of 2008, this training intake was 600. The training includes weekly sessions of physical, procedural and theoretical instruction, to ensure that the BBGs are fast, alert, self-confident and adaptable to situations. As of 2011, early training occurs at the Wimbledon All England Lawn Tennis Club Covered Courts, to the side of the Grounds, and then moves to outside courts (8,9,10) the week before the Championships for a feel of the grass court.

          -

          Colours and uniforms[edit]

          -

          Dark green and purple are the traditional Wimbledon colours. However, all tennis players participating in the tournament are required to wear all-white or at least almost all-white clothing, a long-time tradition at Wimbledon. [32] Wearing white clothing with some colour accents is also acceptable, provided the colour scheme is not that of an identifiable commercial brand logo (the outfitter's brand logo being the sole exception). Controversy followed Martina Navratilova's wearing branding for "Kim" cigarettes in 1982. Green clothing was worn by the chair umpire, linesmen, ball boys and ball girls until the 2005 Championships; however, beginning with the 2006 Championships, officials, ball boys and ball girls were dressed in new navy blue- and cream-coloured uniforms from American designer Ralph Lauren. This marked the first time in the history of the Championships that an outside company was used to design Wimbledon clothing; the contract with Polo Ralph Lauren is set to end in 2015.

          -
          -
          Guidelines regarding prominently white clothing rule
          -
          [33]
          -
          -
            -
          1. No solid mass of colouring
          2. -
          3. Little or no dark or bold colours
          4. -
          5. No fluorescent colours
          6. -
          7. Preference towards pastel colours
          8. -
          9. Preference for the back of the shirt to be totally white
          10. -
          11. Preference for shorts and skirts to be totally white
          12. -
          13. All other items of clothing, including hats, socks and shoe uppers to be predominantly white
          14. -
          -

          Referring to players[edit]

          -

          Prior to 2009 female players were referred to by the title "Miss" or "Mrs" on scoreboards. As dictated by strict rule of etiquette, married female players are referred to by their husbands' names: for example, Chris Evert-Lloyd appeared on scoreboards as "Mrs. J. M. Lloyd" during her marriage to John Lloyd, since "Mrs. X" essentially designates the wife of X. This tradition has continued at least to some extent.[34] For the first time during the 2009 tournament, players were referred to on scoreboards by both their first and last names.[35] For example "Andy Murray", not "A. Murray".[36]

          -

          The title "Mr" is not used for male players who are professionals on scoreboards but the prefix is retained for amateurs, although chair umpires refer to players as "Mr" when they use the replay challenge. The chair umpire will say "Mr <surname> is challenging the call..." and "Mr <surname> has X challenges remaining." However, the umpires still say Miss <surname> when announcing the score of the Ladies' matches.

          -

          If a match is being played with two competitors of the same surname (e.g. Venus and Serena Williams, Bob and Mike Bryan), the chair umpire will specify to whom they are referring by stating the player's first name and surname during announcements (e.g. "Game, Miss Serena Williams", "Advantage, Mike Bryan").

          -

          Royal Family[edit]

          -
          -
          - -
          -
          - The Royal Gallery at Centre Court, Wimbledon -
          -
          -
          -

          Previously, players bowed or curtsied to members of the Royal Family seated in the Royal Box upon entering or leaving Centre Court. In 2003, however, the President of the All England Club, His Royal Highness the Duke of Kent, decided to discontinue the tradition. Now, players are required to bow or curtsy only if HRH The Prince of Wales, or Her Majesty The Queen is present,[37] as was in practice during the 2010 Championships when the Queen was in attendance at Wimbledon on 24 June.[38] On 27 June 2012, Roger Federer said in his post-match interview that he and his opponent had been asked to bow towards the Royal Box as Prince Charles and his wife were present, saying that that was no problem for him.[39]

          -

          Radio Wimbledon[edit]

          - -

          Friday before the start of the tournament. Radio Wimbledon can be heard within a five-mile radius on 87.7 FM, and also online. It operates under a Restricted Service Licence and is arguably the most sophisticated RSL annually in the UK. The main presenters are Sam Lloyd and Ali Barton. Typically they work alternate four-hour shifts until the end of the last match of the day. Reporters and commentators include Gigi Salmon, Nick Lestor, Rupert Bell, Nigel Bidmead, Guy Swindells, Lucie Ahl, Nadine Towell and Helen Whitaker. Often they report from the "Crow's Nest", an elevated building housing the Court 3 and 4 scoreboards which affords views of most of the outside courts. Regular guests include Sue Mappin. In recent years Radio Wimbledon acquired a second low-power FM frequency (within the grounds only) of 96.3 FM for uninterrupted Centre Court commentary, and, from 2006, a third for coverage from No. 1 Court on 97.8 FM. Hourly news bulletins and travel (using RDS) are also broadcast.

          -

          Television coverage[edit]

          -

          For over 70 years, the BBC has broadcast the tournament on television in the UK, starting in 1937. The matches covered are split between its two main terrestrial channels, BBC One and BBC Two. The BBC holds the broadcast rights for Wimbledon until 2017[40] and it distributes its commercial-free feed to outlets worldwide. During the days of British Satellite Broadcasting, its sports channel carried extra coverage of Wimbledon for subscribers. One of the most notable British commentators was Dan Maskell, who was known as the BBC's "voice of tennis" until his retirement in 1991. John Barrett succeeded him in that role until he retired in 2006. Current commentators working for the BBC at Wimbledon include British ex-players Andrew Castle, John Lloyd, Tim Henman, Greg Rusedski, Samantha Smith and Mark Petchey; tennis legends such as John McEnroe, Tracy Austin, Boris Becker and Lindsay Davenport; and general sports commentators including David Mercer, Barry Davies, Andrew Cotter and Nick Mullins. The coverage is presented by Sue Barker and highlights with John Inverdale. Previous BBC presenters include Des Lynam, David Vine and Harry Carpenter.

          -

          The Wimbledon Finals are obliged to be shown live and in full on terrestrial television (BBC Television Service, ITV, Channel 4, or Channel 5) by government mandate. Highlights of the rest of the tournament must be provided by terrestrial stations; live coverage (excepting the finals) may be sought by satellite or cable TV.[41]

          -
          -
          - -
          -
          - British strawberries and cream served at Wimbledon -
          -
          -
          -

          For decades, Americans made a tradition of NBC's "Breakfast at Wimbledon" specials at weekends. Live coverage started early in the morning (the US being a minimum of 5 hours behind the UK) and continued well into the afternoon, interspersed with commentary and interviews from Bud Collins, whose tennis acumen and (in)famous patterned trousers are well-known to tennis fans in the USA. Collins was sacked by NBC in 2007, but was promptly hired by ESPN, the cable home for The Championships in the States. For many years NBC's primary Wimbledon host was veteran broadcaster Dick Enberg. From 1975 to 1999, premium channel HBO carried weekday coverage of Wimbledon. Hosts included Jim Lampley, Billie Jean King, Martina Navratilova, John Lloyd and Barry MacKay among others.[42] Previously, weekday coverage in the United States was exclusively handled by ESPN2 during the tournament's first week. During the tournament's second week it was split between ESPN2 and NBC. ESPN's online service ESPN3 provides full coverage of courts not televised using BBC graphics and commentary. Effective the 2012 tournament, all live coverage, including the Finals, will be exclusively on ESPN and ESPN2, marking the second major tennis championship (after the Australian Open) available in the United States exclusively on pay television (although taped highlights from the tournament will be presented at weekend afternoons on sister network ABC).[43] Taped coverage using the BBC world feed is aired in primetime and overnights on Tennis Channel and is branded Wimbledon Primetime.

          -

          Wimbledon was also involved, unintentionally, in a piece of television history, on 1 July 1967. That was when the first official colour television broadcast took place in the UK. Four hours live coverage of Wimbledon was shown on BBC Two (then the only colour channel in the UK), and although footage of that historic match no longer survives, the Gentlemen's Final that year is still held in the BBC archives because it was the first Gentlemen's Final transmitted in colour.

          -

          Since 2007, Wimbledon matches have been transmitted in high-definition, originally on the BBC's free-to-air channel BBC HD, with continual live coverage during the tournament of Centre Court and Court No. 1 as well as an evening highlights show Today at Wimbledon. Since the closure of BBC HD, coverage is now shown on BBC One HD and BBC Two HD.

          -

          In Ireland RT� broadcast the tournament during the 1980s and 1990s on their second channel RT� Two, they also provided highlights of the games in the evening. The commentary provided was given by Matt Doyle a former Irish-American professional tennis player and Jim Sherwin a former RTE newsreader. Caroline Murphy was the presenter of the programme. RT� made the decision in 1998 to discontinue broadcasting the tournament due to falling viewing figures and the large number of viewers watching on the BBC.[44] Since 2005 TG4 Ireland's Irish-language broadcaster has provided coverage of the tournament. Live coverage is provided in the Irish language while they broadcast highlights in English at night.[45]

          -

          The BBC's opening theme music for Wimbledon was composed by Keith Mansfield and is titled "Light and Tuneful". A piece titled "A Sporting Occasion" is the traditional closing theme, though nowadays coverage typically ends either with a montage set to a popular song or with no music at all. Mansfield also composed the piece "World Champion", used by NBC during intervals (change-overs, set breaks, etc.) and at the close of broadcasts throughout the tournament.

          -

          In Australia, the free-to-air Nine Network covered Wimbledon for almost 40 years but decided to drop their broadcast following the 2010 tournament, citing declining ratings and desire to use money saved to bid on other sports coverage. In April 2011, it was announced that the Seven Network, the host broadcaster of the Australian Open, along with its sister channel 7Two would broadcast the event from 2011.

          -

          In Canada, coverage of Wimbledon has in recent years been divided between TSN on weekdays and CBC Sports on weekends. CBC's weekend coverage of the morning matches predates NBC's "Breakfast at Wimbledon" by several years.

          -

          In Mexico, the Televisa family of networks has aired Wimbledon since the early 1960s. Presently, most weekend matches are broadcast through Canal 5 with the weekday matches broadcast on the Televisa Deportes Network. As Mexico is six hours behind the U.K., some Canal 5 affiliates air the weekend matches as the first program of the day after sign-on. Although Mexico had begun broadcasting in colour in 1962, Wimbledon continued to air in black and white in Mexico until colour came to England in 1967.

          -

          Television coverage complaints[edit]

          -

          The BBC was forced to apologise after many viewers complained about "over-talking" by its commentary team during the TV coverage of the event in 2011. It said in a statement that views on commentary were subjective but that they "do appreciate that over-talking can irritate our audience". The BBC added that it hoped it had achieved "the right balance" across its coverage and was "of course sorry if on occasion you have not been satisfied". Praveen Devakota and John McEnroe were among the ex-players commentating.[46]

          - h3>Tickets[edit] -

          The majority of centre and show court tickets sold to the general public have since 1924 been made available by a public ballot that the All England Lawn Tennis and Croquet Club (usually known as the All England Club or the AELTC) holds at the start of the year.[47]

          -

          The ballot has always been substantially oversubscribed. Successful applicants are selected at random by a computer.[48] The most recent figures from 2011 suggested there were 4 applicants to every 1 ballot ticket, so a large number of applications are not successful. Applications must be posted to AELTC by mid December, the year prior to the tournament. Many applicants apply immediately after the end of each year's tournament. Seats and days are allocated randomly so you are unable to choose the specific court or day that you would like. Also Ballot tickets are not transferrable, if you are unable to use your ballot tickets you should return them to Wimbledon where they can be re-allocated or sold to the waiting queue on the day.

          -

          The All England Club, through its subsidiary The All England Lawn Tennis Ground plc, issues Debentures to tennis fans every five years to raise funds for capital expenditure. Fans who invest thus in the club receive a pair of tickets for every day of the Wimbledon Championships for the five years the investment lasts.[49] Only debenture holders are permitted to sell on their tickets to third parties, although for many years ticket touts have made a habit of purchasing tickets allocated to non-debenture holders in the draw and selling them for a profit. Wimbledon is very strict on this practice and has been known to eject customers who have purchased ballot tickets not in their name. Demand for debentures has increased in recent years, to such an extent that they are even traded on the London Stock Exchange. There were 2,500 Centre Court Debenture seats sold for the 5 year period from 2011�2015 at a price of �27,750 per seat, due to the high demand for Wimbledon tickets there is even a waiting list to purchase these rather expensive Centre Court Debentures.

          -

          Wimbledon and the French Open are the only Grand Slam tournaments where fans without tickets for play can queue up and still get seats on the three show courts on the day of the match.[50] Sequentially numbered queue cards were introduced in 2003. From 2008, there is a single queue, allotted about 500 seats for each court. When they join the queue, fans are handed queue cards. Anyone who then wishes to leave the queue temporarily, even if in possession of a queue card, must agree their position with the others nearby in the queue and/or a steward.

          -

          To get into the show courts, fans will normally have to queue overnight at Wimbledon.[51] This is done by fans from all over the world and, although considered vagrancy, is part of the Wimbledon experience in itself. The All-England Club allows overnight queuing and provides toilet and water facilities for campers. Those planning to queue overnight are advised to bring a tent and sleeping bag. Should a camper be successful in obtaining a ticket, the Club also provides unattended baggage storage where items not allowed into the grounds (including camping equipment such as tents) can be left while matches are in progress.

          -

          Times to queue up vary according to the weather, but anyone queuing up before 9 pm on a weekday should be able to get a show court ticket. Early in the morning when the line moves towards the Grounds, stewards walk along the line and hand out wristbands that are colour-coded to the specific court. The wrist band (and payment) is exchanged at the ticket office for the ticket when the grounds open. Queuing for the show courts ends after the quarter finals have been completed.

          -

          At 2.40pm on Day Seven (Monday 28 June) of the 2010 Championships, the one-millionth numbered Wimbledon queue card was handed out to Rose Stanley from South Africa.[52]

          -

          General admission to the grounds gives access to the outer courts and is possible without queuing overnight. Tickets returned by people leaving early go on sale at 2:30 pm. The money goes to charity.

          -

          Trophies and prize money[edit]

          -
          -
          - -
          -
          - The Ladies' (top) and Gentlemen's singles trophies -
          -
          -
          -

          The Gentlemen's Singles champion receives a silver gilt cup 18.5 inches (about 47 cm) in height and 7.5 inches (about 19 cm) in diameter. The trophy has been awarded since 1887 and bears the inscription: "All England Lawn Tennis Club Single Handed Championship of the World." The Ladies' Singles champion receives a sterling silver salver commonly known as the "Venus Rosewater Dish", or simply the "Rosewater Dish". The salver, which is 18.75 inches (about 48 cm) in diameter, is decorated with figures from mythology. The winners of the Gentlemen's Doubles, Ladies' Doubles, and Mixed Doubles events receive silver cups.[53] The runner-up in each event receives an inscribed silver plate. The trophies are usually presented by the President of the All England Club, HRH The Duke of Kent.

          -

          Prize money was first awarded in 1968, the first year that professional players were allowed to compete in the Championships.[54]

          -

          Before 2007, among grand slam tournaments, Wimbledon and the French Open awarded more prize money in men's events than in women's events. In 2007, Wimbledon changed this policy, giving the same money for both events.[55] The decision has been controversial as women spend approximately half as much time on court as men during the tournament because of their playing only three sets, therefore earning considerably more per hour than their male counterparts.[56][57][58]

          -

          In 2009, a total of �12,500,000 in prize money was awarded with the singles champions receiving �850,000 each, an increase of 13.3 percent on 2008.[59]

          -

          For the 2010 Championships, the total prize money increased to �13,725,000, and the singles champions received �1,000,000 each.

          -

          For the 2011 Wimbledon Championships it was announced that the total prize money would be �14,600,000, an increase of 6.4% from 2010. Both male and female singles champions prize money also increased to �1,100,000, a rise of 10% since the previous year.[60]

          -

          On 24 April 2012, it was announced that the total prize money offered at the 2012 Wimbledon Championships would be �16,060,000, an increase of 10.0% from 2011. The bulk of the increases were given to players losing in earlier rounds.[61] This move was in response to the growing angst among lower-ranked players concerning the inadequacy of their pay. Sergiy Stakhovsky, a member of the ATP Player Council and who was at the time ranked 68th, was among the most vocal in the push for higher pay for players who bow out in the earlier rounds. In an interview Stakhovsky intimated that it is not uncommon for lower-ranked players to be in the negative, for certain tour events, if their results weren't stellar.[62] This issue gained the attention of the men's "big four"�Novak Djokovic, Rafael Nadal, Roger Federer, and Andy Murray�as well as the Championships.

          -

          On 23 April 2013, The All England Club announced the largest prize money for a tennis tournament so far. The total prize money has been increased by about 40% from 2012 to �22,560,000. The losers in the earlier singles rounds of the tournament saw a highest 62% increase in their pay while the total prize money of the doubles increased by 22%. The prize money for participants of the qualifying matches saw an increase of 41%. Sergiy Stakhovsky, a member of the ATP Player Council, was the loudest voice for this increase.[63][64]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          2013 Wimbledon Championship prize money (singles)[65]
          ResultPrize moneyIncrease from 2012
          Winner�1,600,00039%
          Finalist�800,00039%
          Semi-finalists�400,00039%
          Quarter-finalists�205,00041%
          Fourth round losers�105,00040%
          Third round losers�63,00062%
          Second round losers�38,00064%
          First round losers�23,50062%
          -

          Ranking points[edit]

          -

          Ranking points for the ATP and WTA have varied at Wimbledon through the years but at present singles players receive the following points:

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          ATPWTA
          First round105
          Second round45100
          Third round90160
          Fourth round180280
          Quarter-finalist360500
          Semi-finalist720900
          Runner-up12001400
          Champion20002000
          -

          Champions[edit]

          - -

          Current champions[edit]

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          EventChampionRunner-upScore
          2013 Men's SinglesUnited Kingdom Andy MurraySerbia Novak Djokovic6-4, 7�5, 6�4
          2013 Women's SinglesFrance Marion BartoliGermany Sabine Lisicki6�1, 6-4
          2013 Men's Doubles - United States Bob Bryan
          - United States Mike Bryan -
          - Croatia Ivan Dodig
          - Brazil Marcelo Melo -
          3�6, 6�3, 6�4, 6�4
          2013 Women's Doubles - Chinese Taipei Hsieh Su-wei
          - China Peng Shuai -
          - Australia Ashleigh Barty
          - Australia Casey Dellacqua -
          7�6(7�1), 6�1
          2013 Mixed Doubles - Canada Daniel Nestor
          - France Kristina Mladenovic -
          - Brazil Bruno Soares
          - United States Lisa Raymond -
          5�7, 6�2, 8�6
          -

          Records[edit]

          -
          -
          - -
          -
          - Record plaque about the longest match ever played at Wimbledon. -
          -
          -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          RecordEraPlayer(s)CountWinning years
          Gentlemen since 1877
          Winner of most Gentlemen's Singles titlesBefore 1968:United Kingdom William Renshaw71881, 1882, 1883, 1884, 1885, 1886, 1889
          After 1967: - United States Pete Sampras
          - Switzerland Roger Federer -
          7 - 1993, 1994, 1995, 1997, 1998, 1999, 2000
          - 2003, 2004, 2005, 2006, 2007, 2009, 2012 -
          Winner of most consecutive Gentlemen's Singles titlesBefore 1968:United Kingdom William Renshaw[68]61881, 1882, 1883, 1884, 1885, 1886
          After 1967: - Sweden Bj�rn Borg
          - Switzerland Roger Federer -
          5 - 1976, 1977, 1978, 1979, 1980
          - 2003, 2004, 2005, 2006, 2007 -
          Winner of most Gentlemen's Doubles titlesBefore 1968: - United Kingdom Reggie Doherty
          - United Kingdom Laurie Doherty -
          81897, 1898, 1899, 1900, 1901, 1903, 1904, 1905
          After 1967:Australia Todd Woodbridge91993, 1994, 1995, 1996, 1997, 2000 (with Mark Woodforde), 2002, 2003, 2004 (with Jonas Bj�rkman)
          Winner of most consecutive Gentlemen's Doubles titlesBefore 1968: - United Kingdom Reggie Doherty
          - United Kingdom Laurie Doherty -
          51897, 1898, 1899, 1900, 1901
          After 1967: - Australia Todd Woodbridge
          - Australia Mark Woodforde -
          51993, 1994, 1995, 1996, 1997
          Winner of most Mixed Doubles titles � GentlemenBefore 1968: - Australia Ken Fletcher -

          United States Vic Seixas

          -
          4 - 1963, 1965, 1966, 1968 (with Margaret Court) -

          1953, 1954, 1955, 1956 (3 with Doris Hart, 1 with Shirley Fry Irvin)

          -
          After 1967:Australia Owen Davidson41967, 1971, 1973, 1974 (with Billie Jean King)
          Winner of most Championships (total: singles, doubles, mixed) � GentlemenBefore 1968:United Kingdom William Renshaw141880�1889 (7 singles, 7 doubles)
          After 1967:Australia Todd Woodbridge101993�2004 (9 doubles, 1 mixed)
          Ladies since 1884
          Winner of most Ladies' Singles titlesBefore 1968:United States Helen Wills81927, 1928, 1929, 1930, 1932, 1933, 1935, 1938
          After 1967:United States Martina Navratilova91978, 1979, 1982, 1983, 1984, 1985, 1986, 1987, 1990
          Winner of most consecutive Ladies' Singles titlesBefore 1968:France Suzanne Lenglen51919, 1920, 1921, 1922, 1923
          After 1967:United States Martina Navratilova61982, 1983, 1984, 1985, 1986, 1987
          Winner of most Ladies' Doubles titlesBefore 1968:United States Elizabeth Ryan121914 (with Agatha Morton), 1919, 1920, 1921, 1922, 1923, 1925 (with Suzanne Lenglen), 1926 (with Mary Browne), 1927, 1930 (with Helen Wills), 1933, 1934 (with Simone Mathieu)
          United States Billie Jean King101961, 1962 (with Karen Hantze Susman), 1965 (with Maria Bueno), 1967, 1968, 1970, 1971, 1973 (with Rosie Casals), 1972 (with Betty St�ve), 1979 (with Martina Navratilova)
          After 1967:United States Martina Navratilova71976 (with Chris Evert), 1979 (with Billie Jean King), 1981, 1982, 1983, 1984, 1986 (with Pam Shriver)
          Winner of most consecutive Ladies' Doubles titlesBefore 1968: - France Suzanne Lenglen
          - United States Elizabeth Ryan -
          51919, 1920, 1921, 1922, 1923
          After 1967: - United States Martina Navratilova
          - United States Pam Shriver -

          Soviet Union/Belarus Natasha Zvereva

          -
          4 - 1981, 1982, 1983, 1984 -

          1991 (with Larisa Neiland), 1992, 1993, 1994 (Gigi Fern�ndez)

          -
          Winner of most Mixed Doubles titles � ladiesBefore 1968:United States Elizabeth Ryan71919, 1921, 1923 (with Randolph Lycett), 1927 (with Frank Hunter), 1928 (with Patrick Spence), 1930 (with Jack Crawford), 1932 (with Enrique Maier)
          After 1967:United States Martina Navratilova41985 (with Paul McNamee), 1993 (with Mark Woodforde), 1995 (with Jonathan Stark), 2003 (with Leander Paes)
          Winner of most Championships (total: singles, doubles, mixed) � ladiesBefore 1968:United States Billie Jean King201961�79 (6 singles, 10 doubles, 4 mixed)
          United States Elizabeth Ryan191914�34 (12 doubles, 7 mixed)
          After 1967:United States Martina Navratilova201976�2003 (9 singles, 7 doubles, 4 mixed)
          Miscellaneous
          Career match winning performance (men) singlesSweden Bj�rn Borg92.72% (51-4)1973-1981 (open era)
          Career match winning performance (women) singlesWest Germany Steffi Graf90.36% (75-8)1984-1999 (open era)
          Won title without losing a set (men) singlesSweden Bj�rn Borg21-01976 (open era)
          Most games won in a finalUnited States Andy Roddick392009
          Most matches played (men)France Jean Borotra2231922�39, 1948�64
          Most matches played (women)United States Martina Navratilova326
          Loser of most singles finals (men or women) - United Kingdom Blanche Bingley Hillyard
          - United States Chris Evert -
          7 - 1885, 1887, 1888, 1891, 1892, 1893, 1901
          - 1973, 1978, 1979, 1980, 1982, 1984, 1985 -
          Lowest-ranked winner (men or women)Croatia Goran Ivani�evic125th2001
          Wildcard winner (men or women)Croatia Goran Ivani�evic2001
          Lowest-ranked winner (women)United States Venus Williams - 31st
          - (23rd seed) -
          2007
          Youngest winner (men)Germany Boris Becker171985
          Youngest winner (Ladies' Singles)United Kingdom Lottie Dod151887
          Youngest winner (Ladies' Doubles)Switzerland Martina Hingis151996
          Longest men's final by time - Switzerland Roger Federer vs
          - Spain Rafael Nadal -
          4hrs 48mins2008
          Longest men's match by time - United States John Isner vs
          - France Nicolas Mahut -
          11hrs 5mins2010
          Longest men's final by games - Switzerland Roger Federer vs
          - United States Andy Roddick -
          77 games2009
          Longest men's match by games - United States John Isner vs
          - France Nicolas Mahut -
          183 games2010
          Longest women's final by time - United States Lindsay Davenport vs
          - United States Venus Williams -
          2hrs 45mins2005
          Longest women's match by time - United States Chanda Rubin vs
          - Canada Patricia Hy-Boulais -
          3hrs 45mins[69]1995
          Set won without losing a point (golden set) - Kazakhstan Yaroslava Shvedova
          - (3rd round vs Italy S Errani, 1st set) -
          15 mins2012
          -

          Singles champions never World No. 1[edit]

          - -

          See also[edit]

          -
          - - - - - - - - - -
          Portal iconTennis portal
          Portal iconUnited Kingdom portal
          -
          - -

          Notes[edit]

          -
          -
            -
          1. ^ Except Centre Court during rain.
          2. -
          3. ^ This means that, in the men's main draws, there are 128 singles (S) and 64 doubles (D), and there are 128 and 16 entrants in the respective qualifying (Q) draws.
          4. -
          5. ^ A Centre Court did not yet exist during the first four years of the championship.[9]
          6. -
          -
          -

          References[edit]

          -
          -
            -
          1. ^ "Wimbledon prize money up 40% and roof planned for Court One". BBC News. 23 April 2013. Retrieved 22 June 2013. 
          2. -
          3. ^ Clarey, Christopher (7 May 2008). "Traditional Final: It's Nadal and Federer". The New York Times. Retrieved 17 July 2008. "Federer said[:] 'I love playing with him, especially here at Wimbledon, the most prestigious tournament we have.'" 
          4. -
          5. ^ Will Kaufman & Heidi Slettedahl Macpherson, ed. (2005). "Tennis". Britain and the Americas. 1 : Culture, Politics, and History. ABC-CLIO. p. 958. ISBN 1-85109-431-8. "this first tennis championship, which later evolved into the Wimbledon Tournament ... continues as the world's most prestigious event." 
          6. -
          7. ^ "Djokovic describes Wimbledon as "the most prestigious event"". BBC News. 26 June 2009. Retrieved 14 September 2010. 
          8. -
          9. ^ Ryan Rudnansky (24 June 2013). "Wimbledon Tennis 2013: Why Historic Tournament Is Most Prestigious Grand Slam". bleacherreport. Retrieved 25 June 2013. 
          10. -
          11. ^ Monte Burke. "What Is The Most Prestigious Grand Slam Tennis Tournament?". Forbes. Retrieved 25 June 2013. 
          12. -
          13. ^ Prichard, DMC (1981). The History Of Croquet. Cassell. ISBN 0-304-30759-9.[page needed]
          14. -
          15. ^ Atkin, Ron. "1877 Wimbledon Championships". Wimbledon.org. Retrieved 5 October 2010. 
          16. -
          17. ^ Little, Alan (2011). Wimbledon Compendium 2011 (21st ed.). London: All England Lawn Tennis & Croquet Club. pp. 9, 102. ISBN 978-1-899039-36-4. 
          18. -
          19. ^ "Long Term Plan". AELTC. Retrieved 4 April 2012. 
          20. -
          21. ^ [1][dead link]
          22. -
          23. ^ Precedently only three finals were played on a Monday due to raein: 1919, 1922 and 2001 (http://www.all-about-tennis.com/wimbledonmenstrivia.html).
          24. -
          25. ^ New Court No. 2[dead link]
          26. -
          27. ^ "The New Court 3". Blog.wimbledon.org. Retrieved 14 September 2010. [dead link]
          28. -
          29. ^ "Wimbledon Event Guide". wimbledon.org. Retrieved 12 November 2010. [dead link]
          30. -
          31. ^ The men who are eligible for the Gentlemen's Invitation Doubles are 35 years old and older.
          32. -
          33. ^ The men who are eligible for the Senior Gentlemen's Invitation Doubles are 45 years old and older.
          34. -
          35. ^ a b There are no age limits for the Wheelchair Doubles events.
          36. -
          37. ^ In a single-elimination tournament, a losing player or team is eliminated from the tournament.
          38. -
          39. ^ "Wimbledon Championships moved back a week from 2015". BBC. 19 July 2012. Retrieved 1 September 2012. 
          40. -
          41. ^ "Wimbledon � Grass Courts". AELTC. Retrieved 1 May 2012. 
          42. -
          43. ^ "Wimbledon � Centre Court roof". AELTC. Retrieved 1 September 2012. 
          44. -
          45. ^ "Tickets - 2013 Wimbledon Championships Website - Official Site by IBM". Aeltc.com. Retrieved 2013-07-06. 
          46. -
          47. ^ "How the �Graveyard of champions� got its name". Blog.wimbledon.org. Retrieved 14 September 2010. [dead link]
          48. -
          49. ^ "Wimbledon Debentures � About Debentures � The Long Term Plan". Aeltc.com. Retrieved 26 July 2010. 
          50. -
          51. ^ Strawberries, cream and BBGs. The Telegraph, 29 June 2006.
          52. -
          53. ^ "Goldings Ballboys". Goldonian.org. 26 June 2004. Retrieved 14 September 2010. 
          54. -
          55. ^ Official Site Ballboys and Ballgirls Schools Information
          56. -
          57. ^ a b Official Site Ballboys and Ballgirls Background Information
          58. -
          59. ^ Official Site About the Ball Boys and Girls
          60. -
          61. ^ "About Wimbledon � Behind the scenes � Ball boys and ball girls". AELTC. Retrieved 1 September 2012. 
          62. -
          63. ^ "Game and All Set for a Match: Wimbledon and our Inner Tennis Player". The Green Rooms. Retrieved 15 January 2014. 
          64. -
          65. ^ "The Players, Guidelines regarding prominently white clothing rule". Wimbledon. 21 August 2013. 
          66. -
          67. ^ "Mrs. P-Y Hardenne" is used to describe Justine Henin. See [2][dead link]. Retrieved 12 November 2010.
          68. -
          69. ^ [3][dead link]
          70. -
          71. ^ See scoreboard behind Andy Murray during his third round match with Stanilsas Wawrinka [4]. Retrieved 30 June 2009.[dead link]
          72. -
          73. ^ "Wimbledon Website � The Championships and The All England Lawn Tennis Club". Wimbledon.org. 23 September 2007. Retrieved 14 September 2010. [dead link]
          74. -
          75. ^ Eden, Richard (15 May 2010). "Advantage Andy Murray as the Queen visits Wimbledon". London: Telegraph. Retrieved 26 July 2010. 
          76. -
          77. ^ "Roger Federer advances to 3rd round". ESPN. 27 June 2012. 
          78. -
          79. ^ "BBC extends deal to broadcast Wimbledon tennis to 2017". Bbc.co.uk. 2011-10-26. Retrieved 2013-07-06. 
          80. -
          81. ^ "Coverage of Sport on Television" (PDF). DCMS. Retrieved 26 July 2010. 
          82. -
          83. ^ HBO Guides, program schedules, 1975 to 1999
          84. -
          85. ^ Sandomir, Richard (3 July 2011). "ESPN Reaches Deal to Carry Wimbledon". The New York Times. 
          86. -
          87. ^ "Tennis � set for change?". The Irish Times. 8 July 1998. Retrieved 22 June 2010. 
          88. -
          89. ^ "TG4'S SUCCESSFUL TENNIS COVERAGE TO CONTINUE WITH WIMBLEDON 2009". TG4. 20 June 2009. Retrieved 2 June 2010. [dead link]
          90. -
          91. ^ "BBC sorry for 'over-talking' Wimbledon commentators". BBC. 5 July 2011. Retrieved 5 July 2011. 
          92. -
          93. ^ "Ballot". AELTC. Retrieved 25 January 2013. 
          94. -
          95. ^ "Tickets". AELTC. Retrieved 1 September 2012. 
          96. -
          97. ^ "Wimbledon Debentures � About Debentures � About Wimbledon Debentures". Aeltc.com. Retrieved 26 July 2010. 
          98. -
          99. ^ "Evening Visitors | Le site officiel de la billetterie Roland-Garros 2013". Rolandgarros.fft-tickets.com. Retrieved 2013-07-06. 
          100. -
          101. ^ "Natee's Blog". Blog.nationmultimedia.com. Retrieved 2013-07-06. 
          102. -
          103. ^ One-Millionth queue card handed out 29 June 2012. wimbledon.org.
          104. -
          105. ^ "Wimbledon � Behind the Scenes � Trophies". AELTC. Retrieved 1 September 2012. 
          106. -
          107. ^ "The Championships, Wimbledon � Prize Money history". wimbledon.org. Retrieved 2 September 2012. 
          108. -
          109. ^ "The Championships, Wimbledon 2009 � 2009 Prize money". Aeltc2009.wimbledon.org. Retrieved 26 July 2010. 
          110. -
          111. ^ Galway racing tips (23 June 2009). "Some are more equal than others... � Lifestyle, Frontpage". The Irish Independent. Retrieved 26 July 2010. 
          112. -
          113. ^ "Women Don't Deserve Equal Prize Money at Wimbledon". Bleacher Report. 2 July 2009. Retrieved 26 July 2010. 
          114. -
          115. ^ Newman, Paul (23 June 2006). "The Big Question: Should women players get paid as much as men at Wimbledon?". The Independent (London). Retrieved 25 May 2010. 
          116. -
          117. ^ "2009 Championships Prize Money". Aeltc2009.wimbledon.org. Retrieved 14 September 2010. 
          118. -
          119. ^ "Wimbledon Increase Prize Money". ATP Tour. 19 April 2011. Retrieved 20 April 2011. 
          120. -
          121. ^ "Wimbledon announce increase in prize money for losers". http://www.independent.co.uk. 24 April 2012. Retrieved 10 July 2012. 
          122. -
          123. ^ Eugene Shvets (4 April 2012). "?????? ??????????: ??????? ????????? ??????????? � ??? ??????? ????????" [Sergiy Stakhovsky: big earnings tennis players - it is an illusion]. LB.ua (in Russian). Retrieved 3 November 2012. 
          124. -
          125. ^ "The top guns rake it in from sponsors, but �23,500 minimum prize at Wimbledon will help us humans, says world No 117 and Players' Council rep Stakhovsky". The Daily Mail. Retrieved 25 June 2013. 
          126. -
          127. ^ "WIMBLEDON ANNOUNCES 40 PER CENT PRIZE MONEY INCREASE FOR 2013 CHAMPIONSHIPS". ATP World Tour. Retrieved 25 June 2013. 
          128. -
          129. ^ "The Championships, Wimbledon � Prize Money". AELTC. Retrieved 25 June 2013. 
          130. -
          131. ^ Last British Gentlemen's Singles champion: Fred Perry (1936)
          132. -
          133. ^ Last British Ladies' Singles champion: Virginia Wade (1977)
          134. -
          135. ^ In Renshaw's era, the defending champion was exempt from playing in the main draw, playing only in the final. This policy was abolished in 1922.
          136. -
          137. ^ "Schiavone-Kuznetsova Epic is Second-Longest Ever Women's Match". World Tennis Magazine. 23 January 2011. Retrieved 8 June 2012. 
          138. -
          139. ^ Collins, Bud (2008). The Bud Collins History of Tennis: An Authoritative Encyclopedia and Record Book. New York, N.Y: New Chapter Press. pp. 695, 701�4. ISBN 0-942257-41-3. 
          140. -
          -
          -

          Further reading[edit]

          -
          - -
          -

          External links[edit]

          - - - - - - - - - - - - - -
          - Preceded by
          - French Open -
          - Grand Slam Tournament
          - June�July -
          - Succeeded by
          - US Open -
          -

          Coordinates: 51�26'1.48?N 0�12'50.63?W? / ?51.4337444�N 0.2140639�W? / 51.4337444; -0.2140639

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

          - - - - - -
          -
          -
          -
          -
          -

          Navigation menu

          -
          - -
          - - -
          -
          - - - -
          -
          - -
          - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/zoopla.html b/tests/FSharp.Data.Core.Tests/Data/zoopla.html deleted file mode 100644 index 2f2e594c1..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/zoopla.html +++ /dev/null @@ -1,27849 +0,0 @@ - - - - - - - - - 1 bedroom property to rent in London - 1 bed flats & houses to rent in London - Zoopla - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - -
          - -
          - -
          - - - - - - - - - - - -
          - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - -
          - - - - - - - - - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/Data/zoopla2.html b/tests/FSharp.Data.Core.Tests/Data/zoopla2.html deleted file mode 100644 index 6c681d24f..000000000 --- a/tests/FSharp.Data.Core.Tests/Data/zoopla2.html +++ /dev/null @@ -1,8285 +0,0 @@ - - - - - - - - - 1 bedroom property to rent in London - 1 bed flats & houses to rent in London - Zoopla - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - -
          - -
          - - - - - - - - - - - - - - -
          - -
          - - -
          - -
          - - -
          - -
          - - -
          - - - - - - - - - - - - - - - - - - - - - - - -
          - -
          - -
          - - - - - - - - - - -
          - - - - - - -
          - - -
          - - - - - - - -
          - - -

          - - - - - - 1 bedroom property to rent - - - - in London - - - - - - -

          - -
          - - -
          - -
          - - - - - - - - - - - - - - - - - - -
          - -
          - - - 1 - 10 of 278 - - - - - - - -
          - -
          - - - - Keywords and filters like garden and parking live here - - -
          - -
          - - - - - - - - -
          - - - - - - - - -
          - - - - - - - - - - - - - - - - - - - - -
          - -Pages: - - - - - - 1 - - - - - 2 - - - - - 3 - - - - - 4 - - - - - 5 - - - - - 6 - - - - - 7 - - - - - 8 - - - - - 9 - - - - - 10 - - - - - 11 - - - - - ... - - 28 - - - - Next - - -
          - - - - - - - - - -
          - -
          - - - - Contact relevant estate agents & new homes developers - Send a message to agents and developers matching your search for 1 bedroom property to rent in London - - - - -
          - -
          - - - - - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - -
          - -
          - -
          - -
          - - Enter details - -
            - - - -
          1. - - - - - - - - - - - -
          2. - - - - - -
          3. - - - - - - - -Characters remaining: 500 - - - -
          4. - - - - -
          5. - - - - - - - - - - - - - - - -
          6. - - - - -
          7. - - - - - - - - - - - - - - - - -
          8. - - - - - -
          9. - - - -
          10. - - -
          11. - - - -
          12. - -
          - - - - - - - - - - -
          - -
          - -
          - -
          - -
          - - Select agents (37 matching your search) - -
          - -
          - - Select: - - All | - - - Featured | - - - None - -
          - -
          - - 0 out of 37 selected - -
          - -
          - -
          - - - -
            - - -
          1. - - - -
          2. - - -
          3. - - - -
          4. - - -
          5. - - - -
          6. - - -
          7. - - - -
          8. - - -
          9. - - - -
          10. - - -
          11. - - - -
          12. - - -
          13. - - - -
          14. - - -
          15. - - - -
          16. - - -
          17. - - - -
          18. - - -
          19. - - - -
          20. - - -
          21. - - - -
          22. - - -
          23. - - - -
          24. - - -
          25. - - - -
          26. - - -
          27. - - - -
          28. - - -
          29. - - - -
          30. - - -
          31. - - - -
          32. - - -
          33. - - - -
          34. - - -
          35. - - - -
          36. - - -
          37. - - - -
          38. - - -
          39. - - - -
          40. - - -
          41. - - - -
          42. - - -
          43. - - - -
          44. - - -
          45. - - - -
          46. - - -
          47. - - - -
          48. - - -
          49. - - - -
          50. - - -
          51. - - - -
          52. - - -
          53. - - - -
          54. - - -
          55. - - - -
          56. - - -
          57. - - - -
          58. - - -
          59. - - - -
          60. - - -
          61. - - - -
          62. - - -
          63. - - - -
          64. - - -
          65. - - - -
          66. - - -
          67. - - - -
          68. - - -
          69. - - - -
          70. - - -
          71. - - - -
          72. - - -
          73. - - - -
          74. - - -
          - - - - - - - -
          - -
          - -
          - -
          - -
          - -
          - -

          - - By submitting this form, you accept our Terms of Use. - -

          - - - -
          - -
          - -
          - - - -
          - -
          - -
          - -
          - -
          - - - - - - - - - - - - - -

          - - - Latest London 1 bedroom property to rent
          - - - - Zoopla is one of the UK's leading property portals, helping you to find property for sale and to rent and make smarter decisions when buying and renting homes in the UK. Discover information on homes in London by researching London property values, London house prices paid, our London property market overview and find London agents. - - -

          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - - - -
          - -
          - -
          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          - - - -
          - - - - - - - - - - - - - - - - diff --git a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj index 4c32a7133..c88316bfa 100644 --- a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj +++ b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj @@ -14,7 +14,7 @@ - + PreserveNewest diff --git a/tests/FSharp.Data.Core.Tests/HtmlParser.fs b/tests/FSharp.Data.Core.Tests/HtmlParser.fs index b22feb528..f593cf1e4 100644 --- a/tests/FSharp.Data.Core.Tests/HtmlParser.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlParser.fs @@ -589,7 +589,7 @@ let ``Can handle html without html tag``() = [] let ``Can find header when nested in a div``() = let tables = - HtmlDocument.Load "Data/wimbledon_wikipedia.html" + HtmlDocument.Load "wimbledon_wikipedia.html" |> getTables false |> List.map (fun t -> t.Name, t) |> Map.ofList @@ -599,7 +599,7 @@ let ``Can find header when nested in a div``() = [] let ``Can parse tables imdb chart``() = - let imdb = HtmlDocument.Load "Data/imdb_chart.htm" + let imdb = HtmlDocument.Load "imdb_chart.htm" let tables = imdb |> getTables false tables.Length |> should equal 2 tables.[0].Name |> should equal "Top 250" @@ -608,12 +608,12 @@ let ``Can parse tables imdb chart``() = [] let ``Can parse tables ebay cars``() = - let ebay = HtmlDocument.Load "Data/ebay_cars.htm" + let ebay = HtmlDocument.Load "ebay_cars.htm" true |> should equal true [] let ``Does not crash when parsing us presidents``() = - let table = HtmlDocument.Load "Data/us_presidents_wikipedia.html" |> getTables false + let table = HtmlDocument.Load "us_presidents_wikipedia.html" |> getTables false true |> should equal true [] @@ -859,33 +859,33 @@ let ``Drops whitespace outside pre``() = [] let ``Can parse national rail mobile site correctly``() = - HtmlDocument.Load "Data/UKDepartures.html" + HtmlDocument.Load "UKDepartures.html" |> HtmlDocument.descendantsNamed false [ "li" ] |> Seq.length |> should equal 68 - HtmlDocument.Load "Data/UKLiveProgress.html" + HtmlDocument.Load "UKLiveProgress.html" |> HtmlDocument.descendantsNamed false [ "li" ] |> Seq.length |> should equal 15 - HtmlDocument.Load "Data/UKDepartures.html" + HtmlDocument.Load "UKDepartures.html" |> HtmlDocument.descendantsNamed false [ "li"; "hr" ] |> Seq.length |> should equal 69 - HtmlDocument.Load "Data/UKLiveProgress.html" + HtmlDocument.Load "UKLiveProgress.html" |> HtmlDocument.descendantsNamed false [ "li"; "hr" ] |> Seq.length |> should equal 17 [] let ``Can parse old zoopla site correctly``() = - HtmlDocument.Load "Data/zoopla.html" + HtmlDocument.Load "zoopla.html" |> HtmlDocument.descendants false (fun x -> HtmlNode.hasName "li" x && HtmlNode.hasAttribute "itemtype" "http://schema.org/Place" x) |> Seq.length |> should equal 100 [] let ``Can parse new zoopla site correctly``() = - HtmlDocument.Load "Data/zoopla2.html" + HtmlDocument.Load "zoopla2.html" |> HtmlDocument.descendants false (fun x -> HtmlNode.hasName "li" x && HtmlNode.hasAttribute "itemtype" "http://schema.org/Residence" x) |> Seq.length |> should equal 10 From 93351ac1473dbb45c085d6c370a4ca25704e7600 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 15 Aug 2022 22:07:52 +0100 Subject: [PATCH 04/11] add fantomasignore, fix packaging --- .fantomasignore | 2 + build.fsx | 13 +- docs/library/CsvFile.fsx | 20 +- docs/library/CsvProvider.fsx | 116 ++++++----- docs/library/HtmlCssSelectors.fsx | 67 ++++--- docs/library/HtmlParser.fsx | 24 ++- docs/library/HtmlProvider.fsx | 65 +++--- docs/library/Http.fsx | 105 +++++----- docs/library/JsonProvider.fsx | 85 ++++---- docs/library/JsonValue.fsx | 30 ++- docs/library/WorldBank.fsx | 41 ++-- docs/library/XmlProvider.fsx | 128 +++++++----- docs/tutorials/JsonAnonymizer.fsx | 186 ++++++++++-------- docs/tutorials/JsonToXml.fsx | 140 ++++++------- src/AssemblyInfo.Core.fs | 8 +- src/AssemblyInfo.DesignTime.fs | 8 +- src/AssemblyInfo.fs | 8 +- .../FSharp.Data.DesignTime.fsproj | 1 + src/Json/JsonDocument.fs | 1 - src/Json/JsonValue.fs | 1 - src/SetupTesting.fsx | 42 ++-- src/Test.fsx | 90 ++++++--- src/Xml/XmlExtensions.fs | 1 - 23 files changed, 647 insertions(+), 535 deletions(-) create mode 100644 .fantomasignore diff --git a/.fantomasignore b/.fantomasignore new file mode 100644 index 000000000..cfdc4db2d --- /dev/null +++ b/.fantomasignore @@ -0,0 +1,2 @@ +paket-files/ +tests/ diff --git a/build.fsx b/build.fsx index 80c548248..8b625467a 100644 --- a/build.fsx +++ b/build.fsx @@ -141,7 +141,8 @@ Target.create "Pack" (fun _ -> ("PublishRepositoryUrl", "true") ("EmbedUntrackedSources", "true") ("IncludeSymbols", "true") - ("SymbolPackageFormat", "snupkg") ] + //("SymbolPackageFormat", "snupkg") + ] DotNet.pack (fun p -> @@ -149,15 +150,7 @@ Target.create "Pack" (fun _ -> Configuration = DotNet.BuildConfiguration.Release OutputPath = Some "bin" MSBuildParams = { p.MSBuildParams with Properties = properties } }) - "src/FSharp.Data.Core/FSharp.Data.Core.fsproj" - - DotNet.pack - (fun p -> - { p with - Configuration = DotNet.BuildConfiguration.Release - OutputPath = Some "bin" - MSBuildParams = { p.MSBuildParams with Properties = properties } }) - "src/FSharp.Data/FSharp.Data.fsproj") + "FSharp.Data.sln") // -------------------------------------------------------------------------------------- // Generate the documentation diff --git a/docs/library/CsvFile.fsx b/docs/library/CsvFile.fsx index ef3316694..b4f2a3486 100644 --- a/docs/library/CsvFile.fsx +++ b/docs/library/CsvFile.fsx @@ -10,14 +10,14 @@ index: 2 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -48,12 +48,14 @@ points to a live CSV file on the Yahoo finance web site: *) // Download the stock prices -let msft = CsvFile.Load(__SOURCE_DIRECTORY__ + "/../data/MSFT.csv").Cache() +let msft = + CsvFile + .Load(__SOURCE_DIRECTORY__ + "/../data/MSFT.csv") + .Cache() // Print the prices in the HLOC format for row in msft.Rows |> Seq.truncate 10 do - printfn "HLOC: (%s, %s, %s)" - (row.GetColumn "High") (row.GetColumn "Low") (row.GetColumn "Date") + printfn "HLOC: (%s, %s, %s)" (row.GetColumn "High") (row.GetColumn "Low") (row.GetColumn "Date") (*** include-fsi-merged-output ***) (** @@ -92,8 +94,7 @@ The following example shows how to process the sample previous CSV sample using open FSharp.Data.CsvExtensions for row in msft.Rows |> Seq.truncate 10 do - printfn "HLOC: (%f, %M, %O)" - (row.["High"].AsFloat()) (row?Low.AsDecimal()) (row?Date.AsDateTime()) + printfn "HLOC: (%f, %M, %O)" (row.["High"].AsFloat()) (row?Low.AsDecimal()) (row?Date.AsDateTime()) (*** include-fsi-merged-output ***) @@ -108,7 +109,8 @@ separator and quote characters when saving. *) // Saving the first 10 stock prices where the closing price is higher than the opening price in TSV format: -msft.Filter(fun row -> row?Close.AsFloat() > row?Open.AsFloat()) +msft + .Filter(fun row -> row?Close.AsFloat() > row?Open.AsFloat()) .Truncate(10) .SaveToString('\t') diff --git a/docs/library/CsvProvider.fsx b/docs/library/CsvProvider.fsx index 059fff799..8a9eaa434 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -10,14 +10,14 @@ index: 1 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  @@ -84,7 +84,10 @@ The following sample calls the `Load` method with an URL that points to a live C *) // Download the stock prices -let msft = Stocks.Load(__SOURCE_DIRECTORY__ + "/../data/MSFT.csv").Cache() +let msft = + Stocks + .Load(__SOURCE_DIRECTORY__ + "/../data/MSFT.csv") + .Cache() // Look at the most recent row. Note the 'Date' property // is of type 'DateTime' and 'Open' has a type 'decimal' @@ -94,7 +97,7 @@ let lastOpen = firstRow.Open // Print the first 10 prices in the HLOC format for row in msft.Rows |> Seq.truncate 10 do - printfn "HLOC: (%A, %A, %A, %A)" row.High row.Low row.Open row.Close + printfn "HLOC: (%A, %A, %A, %A)" row.High row.Low row.Open row.Close (*** include-fsi-merged-output ***) @@ -127,7 +130,8 @@ a static argument. Also note that in this case we're using the same data at runt so we use the `GetSample` method instead of calling `Load` and passing the same parameter again. *) -let small = CsvProvider<"../data/SmallTest.csv", ResolutionFolder=ResolutionFolder>.GetSample() +let small = + CsvProvider<"../data/SmallTest.csv", ResolutionFolder=ResolutionFolder>.GetSample () (*** include-fsi-merged-output ***) @@ -135,7 +139,8 @@ let small = CsvProvider<"../data/SmallTest.csv", ResolutionFolder=ResolutionFold We can also use the default constructor instead of the `GetSample` static method: *) -let small2 = new CsvProvider<"../data/SmallTest.csv", ResolutionFolder=ResolutionFolder>() +let small2 = + new CsvProvider<"../data/SmallTest.csv", ResolutionFolder=ResolutionFolder>() (*** include-fsi-merged-output ***) @@ -151,9 +156,10 @@ following simple calculation: open FSharp.Data.UnitSystems.SI.UnitNames for row in small.Rows do - let speed = row.Distance / row.Time - if speed > 15.0M then - printfn "%s (%A m/s)" row.Name speed + let speed = row.Distance / row.Time + + if speed > 15.0M then + printfn "%s (%A m/s)" row.Name speed (*** include-fsi-merged-output ***) @@ -178,8 +184,8 @@ type AirQuality = CsvProvider<"../data/AirQuality.csv", ";", ResolutionFolder=Re let airQuality = new AirQuality() for row in airQuality.Rows |> Seq.truncate 10 do - if row.Month > 6 then - printfn "Temp: %i Ozone: %f " row.Temp row.Ozone + if row.Month > 6 then + printfn "Temp: %i Ozone: %f " row.Temp row.Ozone (*** include-fsi-merged-output ***) @@ -195,18 +201,21 @@ we also set `IgnoreErrors` static parameter to `true` so that lines with incorre are automatically skipped (the sample file ([`data/MortalityNY.csv`](../data/MortalityNY.tsv)) contains additional unstructured data at the end): *) -let mortalityNy = CsvProvider<"../data/MortalityNY.tsv", IgnoreErrors=true, ResolutionFolder=ResolutionFolder>.GetSample() +let mortalityNy = + CsvProvider<"../data/MortalityNY.tsv", IgnoreErrors=true, ResolutionFolder=ResolutionFolder>.GetSample () // Find the name of a cause based on code // (Pedal cyclist injured in an accident) -let cause = mortalityNy.Rows |> Seq.find (fun r -> - r.``Cause of death Code`` = "V13.4") +let cause = + mortalityNy.Rows + |> Seq.find (fun r -> r.``Cause of death Code`` = "V13.4") // Print the number of injured cyclists printfn "CAUSE: %s" cause.``Cause of death`` + for r in mortalityNy.Rows do - if r.``Cause of death Code`` = "V13.4" then - printfn "%s (%d cases)" r.County r.Count + if r.``Cause of death Code`` = "V13.4" then + printfn "%s (%d cases)" r.County r.Count (*** include-fsi-merged-output ***) @@ -229,8 +238,9 @@ the `MissingValues` static parameter of `CsvProvider` as a comma-separated strin For example, to ignore `this` and `that` we could do: *) -CsvProvider<"X,Y,Z\nthis,that,1.0", - MissingValues="this,that">.GetSample().Rows +CsvProvider<"X,Y,Z\nthis,that,1.0", MissingValues="this,that"> + .GetSample() + .Rows (*** include-fsi-merged-output ***) (** @@ -241,11 +251,11 @@ each row, then remove missing values and then use the standard `Seq.average` fun open System let mean = - airQuality.Rows - |> Seq.toArray - |> Array.map (fun row -> row.Ozone) - |> Array.filter (fun elem -> not (Double.IsNaN elem)) - |> Array.average + airQuality.Rows + |> Seq.toArray + |> Array.map (fun row -> row.Ozone) + |> Array.filter (fun elem -> not (Double.IsNaN elem)) + |> Array.average (*** include-fsi-merged-output ***) @@ -320,15 +330,12 @@ consider that row as a data row. In that case, the columns will be named `Column names are overridden using the `Schema` parameter. Note that you can override only the name in the `Schema` parameter and still have the provider infer the type for you. Example: *) -type OneTwoThree = - CsvProvider<"1,2,3", HasHeaders = false, Schema = "Duration (float),foo,float option"> +type OneTwoThree = CsvProvider<"1,2,3", HasHeaders=false, Schema="Duration (float),foo,float option"> let csv = OneTwoThree.GetSample() + for row in csv.Rows do - printfn "%f %d %f" - (row.Duration/1.0) - row.Foo - (defaultArg row.Column3 1.0) + printfn "%f %d %f" (row.Duration / 1.0) row.Foo (defaultArg row.Column3 1.0) (*** include-fsi-merged-output ***) @@ -342,14 +349,12 @@ the other columns blank in the schema (you also don't need to add all the traili *) type Titanic1 = - CsvProvider<"../data/Titanic.csv", - Schema=",,Passenger Class,,,float", - ResolutionFolder=ResolutionFolder> + CsvProvider<"../data/Titanic.csv", Schema=",,Passenger Class,,,float", ResolutionFolder=ResolutionFolder> let titanic1 = Titanic1.GetSample() + for row in titanic1.Rows |> Seq.truncate 10 do - printfn "%s Class = %d Fare = %g" - row.Name row.``Passenger Class`` row.Fare + printfn "%s Class = %d Fare = %g" row.Name row.``Passenger Class`` row.Fare (*** include-fsi-merged-output ***) @@ -359,14 +364,12 @@ Alternatively, you can rename and override the type of any column by name instea *) type Titanic2 = - CsvProvider<"../data/Titanic.csv", - Schema="Fare=float,PClass->Passenger Class", - ResolutionFolder=ResolutionFolder> + CsvProvider<"../data/Titanic.csv", Schema="Fare=float,PClass->Passenger Class", ResolutionFolder=ResolutionFolder> let titanic2 = Titanic2.GetSample() + for row in titanic2.Rows |> Seq.truncate 10 do - printfn "%s Class = %d Fare = %g" - row.Name row.``Passenger Class`` row.Fare + printfn "%s Class = %d Fare = %g" row.Name row.``Passenger Class`` row.Fare (*** include-fsi-merged-output ***) @@ -385,11 +388,11 @@ the `Save` method. You can also use the `SaveToString()` to get the output direc // Saving the first 10 rows that don't have missing values to a new csv file airQuality - .Filter(fun row -> - not (Double.IsNaN row.Ozone) && - not (Double.IsNaN row.``Solar.R``)) - .Truncate(10) - .SaveToString() + .Filter(fun row -> + not (Double.IsNaN row.Ozone) + && not (Double.IsNaN row.``Solar.R``)) + .Truncate(10) + .SaveToString() (*** include-fsi-merged-output ***) @@ -400,10 +403,7 @@ It's also possible to transform the columns themselves by using `Map` and the co *) let doubleOzone = - airQuality.Map(fun row -> - AirQuality.Row - ( row.Ozone * 2.0, row.``Solar.R``, - row.Wind, row.Temp, row.Month, row.Day)) + airQuality.Map(fun row -> AirQuality.Row(row.Ozone * 2.0, row.``Solar.R``, row.Wind, row.Temp, row.Month, row.Day)) (*** include-fsi-merged-output ***) @@ -414,12 +414,12 @@ You can also append new rows, either by creating them directly as in the previou *) let newRows = - AirQuality.ParseRows - ("""41;190;7.4;67;5;1 - 36;118;8;72;5;2""") + AirQuality.ParseRows( + """41;190;7.4;67;5;1 + 36;118;8;72;5;2""" + ) -let airQualityWithExtraRows = - airQuality.Append newRows +let airQualityWithExtraRows = airQuality.Append newRows (*** include-fsi-merged-output ***) @@ -429,13 +429,11 @@ It's even possible to create csv files without parsing at all: *) -type MyCsvType = - CsvProvider +type MyCsvType = CsvProvider let myRows = - [ MyCsvType.Row(1, "a", None) - MyCsvType.Row(2, "B", Some System.DateTime.Now) ] + [ MyCsvType.Row(1, "a", None) + MyCsvType.Row(2, "B", Some System.DateTime.Now) ] let myCsv = new MyCsvType(myRows) myCsv.SaveToString() diff --git a/docs/library/HtmlCssSelectors.fsx b/docs/library/HtmlCssSelectors.fsx index 06c68177e..1875171e5 100644 --- a/docs/library/HtmlCssSelectors.fsx +++ b/docs/library/HtmlCssSelectors.fsx @@ -10,14 +10,14 @@ index: 4 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -52,11 +52,15 @@ Then we can , for example, use the direct descendants selector to select another id `ires`. The CSS selector to do so is `div#search > div#ires`: *) let links = - doc.CssSelect("div#search > div#ires div.g > div.s div.kv cite") - |> List.map (fun n -> - match n.InnerText() with - | t when (t.StartsWith("https://") || t.StartsWith("http://"))-> t - | t -> "http://" + t ) + doc.CssSelect("div#search > div#ires div.g > div.s div.kv cite") + |> List.map (fun n -> + match n.InnerText() with + | t when + (t.StartsWith("https://") + || t.StartsWith("http://")) + -> + t + | t -> "http://" + t) (*** include-fsi-merged-output ***) @@ -87,8 +91,8 @@ let doc2 = HtmlDocument.Load(fsys) let books = doc2.CssSelect("div.g h3.r a") - |> List.map(fun a -> a.InnerText().Trim(), a.AttributeValue("href")) - |> List.filter(fun (title, href) -> title.Contains("F#")) + |> List.map (fun a -> a.InnerText().Trim(), a.AttributeValue("href")) + |> List.filter (fun (title, href) -> title.Contains("F#")) (*** include-fsi-merged-output ***) @@ -103,7 +107,9 @@ You can also refer to the table below for a complete list of supported selectors Finds all links with an english hreflang attribute. *) -let englishDoc = HtmlDocument.Parse(""" +let englishDoc = + HtmlDocument.Parse( + """ @@ -111,10 +117,10 @@ let englishDoc = HtmlDocument.Parse(""" Some other text will not be outlined - """) + """ + ) -let englishLinks = - englishDoc.CssSelect("a[hreflang|=en]") +let englishLinks = englishDoc.CssSelect("a[hreflang|=en]") (*** include-fsi-merged-output ***) (** @@ -122,7 +128,9 @@ let englishLinks = Finds all inputs with a name containing "man". This includes results where "man" is a substring: *) -let manDoc = HtmlDocument.Parse(""" +let manDoc = + HtmlDocument.Parse( + """ @@ -134,10 +142,10 @@ let manDoc = HtmlDocument.Parse(""" - """) + """ + ) -let manElems = - manDoc.CssSelect("input[name*='man']") +let manElems = manDoc.CssSelect("input[name*='man']") (*** include-fsi-merged-output ***) (** @@ -145,8 +153,7 @@ let manElems = Finds all inputs with a name containing the word "man". This requires a whitespace around the word: *) -let manWordElems = - manDoc.CssSelect("input[name~='man']") +let manWordElems = manDoc.CssSelect("input[name~='man']") (*** include-fsi-merged-output ***) @@ -155,8 +162,7 @@ let manWordElems = Finds all inputs with a name ending with "man". *) -let manEndElemes = - manDoc.CssSelect("input[name$='man']") +let manEndElemes = manDoc.CssSelect("input[name$='man']") (*** include-fsi-merged-output ***) @@ -166,8 +172,7 @@ let manEndElemes = Finds all inputs with a name equal to "man". *) -let manEqElemes = - manDoc.CssSelect("input[name='man']") +let manEqElemes = manDoc.CssSelect("input[name='man']") (*** include-fsi-merged-output ***) @@ -176,8 +181,7 @@ let manEqElemes = Finds all inputs with a name different to "man". *) -let notManElems = - manDoc.CssSelect("input[name!='man']") +let notManElems = manDoc.CssSelect("input[name!='man']") (*** include-fsi-merged-output ***) @@ -187,8 +191,7 @@ let notManElems = Finds all inputs with a name starting with "man". *) -let manStartElems = - manDoc.CssSelect("input[name^='man']") +let manStartElems = manDoc.CssSelect("input[name^='man']") (*** include-fsi-merged-output ***) @@ -198,7 +201,9 @@ let manStartElems = There are some syntax shortcuts to find forms controls. *) -let htmlForm = HtmlDocument.Parse(""" +let htmlForm = + HtmlDocument.Parse( + """ @@ -221,7 +226,8 @@ let htmlForm = HtmlDocument.Parse(""" - """) + """ + ) (** You can use `:prop` to find CSS elements with the specified value of the `type` attribute @@ -331,4 +337,3 @@ Selector name|Status|specification [1] :root Selector seems to be useless in our case because with the HTML parser the root is always the html node. *) - diff --git a/docs/library/HtmlParser.fsx b/docs/library/HtmlParser.fsx index 28f2872f5..4c4f3f6bc 100644 --- a/docs/library/HtmlParser.fsx +++ b/docs/library/HtmlParser.fsx @@ -10,14 +10,14 @@ index: 3 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -57,11 +57,10 @@ which in this case is the url that the search result is pointing to, and additio we are looking at. *) let links = - results.Descendants ["a"] + results.Descendants [ "a" ] |> Seq.choose (fun x -> - x.TryGetAttribute("href") - |> Option.map (fun a -> x.InnerText(), a.Value()) - ) + x.TryGetAttribute("href") + |> Option.map (fun a -> x.InnerText(), a.Value())) |> Seq.truncate 10 |> Seq.toList @@ -78,8 +77,13 @@ and `Seq.map`. let searchResults = links |> List.filter (fun (name, url) -> - name <> "Cached" && name <> "Similar" && url.StartsWith("/url?")) - |> List.map (fun (name, url) -> name, url.Substring(0, url.IndexOf("&sa=")).Replace("/url?q=", "")) + name <> "Cached" + && name <> "Similar" + && url.StartsWith("/url?")) + |> List.map (fun (name, url) -> + name, + url + .Substring(0, url.IndexOf("&sa=")) + .Replace("/url?q=", "")) (*** include-fsi-merged-output ***) - diff --git a/docs/library/HtmlProvider.fsx b/docs/library/HtmlProvider.fsx index 488d23baa..3fcfc31c4 100644 --- a/docs/library/HtmlProvider.fsx +++ b/docs/library/HtmlProvider.fsx @@ -10,14 +10,14 @@ index: 2 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -70,12 +70,11 @@ The `Load` method allows reading the data from a file or web resource. We could The following sample calls the `Load` method with an URL that points to a live version of the same page on wikipedia. *) let url = - "https://en.wikipedia.org/wiki/" + - "2017_FIA_Formula_One_World_Championship" + "https://en.wikipedia.org/wiki/" + + "2017_FIA_Formula_One_World_Championship" // Download the latest market depth information -let f1Calendar = - F1_2017.Load(url).Tables.``Season calendar`` +let f1Calendar = F1_2017.Load(url).Tables.``Season calendar`` // Look at the most recent row. Note the 'Date' property // is of type 'DateTime' and 'Open' has a type 'decimal' @@ -86,8 +85,7 @@ let date = firstRow.Date // Print the bid / offer volumes for each row for row in f1Calendar.Rows do - printfn "Race, round %A is hosted at %A on %A" - row.Round row.``Grand Prix`` row.Date + printfn "Race, round %A is hosted at %A on %A" row.Round row.``Grand Prix`` row.Date (*** include-fsi-merged-output ***) @@ -113,24 +111,30 @@ Note that we're using the live URL as the sample, so we can just use the default // Configure the type provider -type NugetStats = - HtmlProvider<"https://www.nuget.org/packages/FSharp.Data"> +type NugetStats = HtmlProvider<"https://www.nuget.org/packages/FSharp.Data"> // load the live package stats for FSharp.Data let rawStats = NugetStats().Tables.Table4 // helper function to analyze version numbers from nuget -let getMinorVersion (v:string) = - System.Text.RegularExpressions.Regex(@"\d.\d").Match(v).Value +let getMinorVersion (v: string) = + System + .Text + .RegularExpressions + .Regex( + @"\d.\d" + ) + .Match( + v + ) + .Value // group by minor version and calculate download count let stats = - rawStats.Rows - |> Seq.groupBy (fun r -> - getMinorVersion r.Version) - |> Seq.map (fun (k, xs) -> - k, xs |> Seq.sumBy (fun x -> x.Downloads)) - |> Seq.toArray + rawStats.Rows + |> Seq.groupBy (fun r -> getMinorVersion r.Version) + |> Seq.map (fun (k, xs) -> k, xs |> Seq.sumBy (fun x -> x.Downloads)) + |> Seq.toArray (*** include-fsi-merged-output ***) @@ -143,22 +147,23 @@ This sample shows some more screen scraping from Wikipedia: *) (*** define-output:doctorWhoChart ***) -let [] DrWho = - "https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(1963%E2%80%931989)" +[] +let DrWho = + "https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(1963%E2%80%931989)" let doctorWho = new HtmlProvider() // Get the average number of viewers for each doctor's series run let viewersByDoctor = - doctorWho.Tables.``Season 1 (1963-1964) Edit``.Rows - |> Seq.groupBy (fun season -> season.``Directed by``) - |> Seq.map (fun (doctor, seasons) -> - let averaged = - seasons - |> Seq.averageBy (fun season -> - season.``UK viewers (millions)``) - doctor, averaged) - |> Seq.toArray + doctorWho.Tables.``Season 1 (1963-1964) Edit``.Rows + |> Seq.groupBy (fun season -> season.``Directed by``) + |> Seq.map (fun (doctor, seasons) -> + let averaged = + seasons + |> Seq.averageBy (fun season -> season.``UK viewers (millions)``) + + doctor, averaged) + |> Seq.toArray (*** include-fsi-merged-output ***) diff --git a/docs/library/Http.fsx b/docs/library/Http.fsx index 31f92da29..7367210ce 100644 --- a/docs/library/Http.fsx +++ b/docs/library/Http.fsx @@ -10,14 +10,14 @@ index: 1 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -56,8 +56,10 @@ can use `cref:M:FSharp.Data.Http.RequestString` and `cref:M:FSharp.Data.Http.Asy Http.RequestString("http://tomasp.net") // Download web site asynchronously -async { let! html = Http.AsyncRequestString("http://tomasp.net") - printfn "%d" html.Length } +async { + let! html = Http.AsyncRequestString("http://tomasp.net") + printfn "%d" html.Length +} |> Async.Start (*** include-fsi-merged-output ***) @@ -74,9 +76,7 @@ can pass them using the optional parameter `query`. The following example also e specifies the GET method, but it will be set automatically for you if you omit it: *) -Http.RequestString - ( "http://httpbin.org/get", - query=["test", "foo"], httpMethod="GET" ) +Http.RequestString("http://httpbin.org/get", query = [ "test", "foo" ], httpMethod = "GET") (*** include-fsi-merged-output ***) @@ -96,10 +96,12 @@ provide your API key: let apiKey = "" // Run the HTTP web request -Http.RequestString - ( "http://api.themoviedb.org/3/search/movie", httpMethod = "GET", - query = [ "api_key", apiKey; "query", "batman" ], - headers = [ "Accept", "application/json" ]) +Http.RequestString( + "http://api.themoviedb.org/3/search/movie", + httpMethod = "GET", + query = [ "api_key", apiKey; "query", "batman" ], + headers = [ "Accept", "application/json" ] +) (** The library supports a simple and unchecked string based API (used in the previous example), @@ -115,10 +117,11 @@ open FSharp.Data.HttpRequestHeaders (*** do-not-eval ***) // Run the HTTP web request -Http.RequestString - ( "http://api.themoviedb.org/3/search/movie", - query = [ "api_key", apiKey; "query", "batman" ], - headers = [ Accept HttpContentTypes.Json ]) +Http.RequestString( + "http://api.themoviedb.org/3/search/movie", + query = [ "api_key", apiKey; "query", "batman" ], + headers = [ Accept HttpContentTypes.Json ] +) (** ## Getting extra information @@ -143,7 +146,8 @@ instead of the `cref:M:FSharp.Data.Http.RequestString` method: *) -let response = Http.Request("http://api.themoviedb.org/3/search/movie", silentHttpErrors = true) +let response = + Http.Request("http://api.themoviedb.org/3/search/movie", silentHttpErrors = true) // Examine information about the response response.Headers @@ -168,7 +172,7 @@ The following example uses the [httpbin.org](http://httpbin.org) service which returns the request details: *) -Http.RequestString("http://httpbin.org/post", body = FormValues ["test", "foo"]) +Http.RequestString("http://httpbin.org/post", body = FormValues [ "test", "foo" ]) (*** include-fsi-merged-output ***) @@ -178,10 +182,11 @@ or `application/octet-stream`, depending on which kind of `HttpRequestBody` you this behaviour by adding `content-type` to the list of headers using the optional argument `headers`: *) -Http.RequestString - ( "http://httpbin.org/post", +Http.RequestString( + "http://httpbin.org/post", headers = [ ContentType HttpContentTypes.Json ], - body = TextRequest """ {"test": 42} """) + body = TextRequest """ {"test": 42} """ +) (*** include-fsi-merged-output ***) @@ -198,8 +203,8 @@ The following is an old sample showing how this is set. // Build URL with documentation for a given class let msdnUrl className = - let root = "http://msdn.microsoft.com" - sprintf "%s/en-gb/library/%s.aspx" root className + let root = "http://msdn.microsoft.com" + sprintf "%s/en-gb/library/%s.aspx" root className // Get the page and search for F# code let docInCSharp = Http.RequestString(msdnUrl "system.web.httprequest") @@ -209,16 +214,19 @@ open System.Net let cc = CookieContainer() // Send a request to switch the language -Http.RequestString - ( msdnUrl "system.datetime", - query = ["cs-save-lang", "1"; "cs-lang","fsharp"], - cookieContainer = cc) |> ignore +Http.RequestString( + msdnUrl "system.datetime", + query = + [ "cs-save-lang", "1" + "cs-lang", "fsharp" ], + cookieContainer = cc +) +|> ignore // Request the documentation again & search for F# let docInFSharp = - Http.RequestString - ( msdnUrl "system.web.httprequest", - cookieContainer = cc ) + Http.RequestString(msdnUrl "system.web.httprequest", cookieContainer = cc) + docInFSharp.Contains "F#" (** @@ -230,11 +238,10 @@ The `cref:M:FSharp.Data.Http.RequestString` method will always return the respon *) let logoUrl = "https://raw.github.com/fsharp/FSharp.Data/master/misc/logo.png" + match Http.Request(logoUrl).Body with -| Text text -> - printfn "Got text content: %s" text -| Binary bytes -> - printfn "Got %d bytes of binary content" bytes.Length +| Text text -> printfn "Got text content: %s" text +| Binary bytes -> printfn "Got %d bytes of binary content" bytes.Length (** ## Customizing the HTTP request @@ -254,14 +261,16 @@ Assuming the certificate is stored in `myCertificate.pfx`: open System.Security.Cryptography.X509Certificates // Load the certificate from local file -let clientCert = - new X509Certificate2(".\myCertificate.pfx", "password") +let clientCert = new X509Certificate2(".\myCertificate.pfx", "password") // Send the request with certificate -Http.Request - ( "http://yourprotectedresouce.com/data", - customizeHttpRequest = fun req -> - req.ClientCertificates.Add(clientCert) |> ignore; req) +Http.Request( + "http://yourprotectedresouce.com/data", + customizeHttpRequest = + fun req -> + req.ClientCertificates.Add(clientCert) |> ignore + req +) (** ## Handling multipart form data @@ -277,14 +286,14 @@ uploads of arbitrary size. let largeFilePath = "//path/to/large/file.mp4" let data = System.IO.File.OpenRead(largeFilePath) :> System.IO.Stream -Http.Request - ( "http://endpoint/for/multipart/data", - body = Multipart( - boundary = "define a custom boundary here", // this is used to separate the items you're streaming - parts = [ - MultipartItem("formFieldName", System.IO.Path.GetFileName(largeFilePath), data) - ] - )) +Http.Request( + "http://endpoint/for/multipart/data", + body = + Multipart( + boundary = "define a custom boundary here", // this is used to separate the items you're streaming + parts = [ MultipartItem("formFieldName", System.IO.Path.GetFileName(largeFilePath), data) ] + ) +) (** ## Related articles diff --git a/docs/library/JsonProvider.fsx b/docs/library/JsonProvider.fsx index 6f1a261d7..37b3573af 100644 --- a/docs/library/JsonProvider.fsx +++ b/docs/library/JsonProvider.fsx @@ -10,14 +10,14 @@ index: 3 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -124,14 +124,15 @@ following example uses two records - one with `name` and `age` and the second wi If we want to just use the same text used for the schema at runtime, we can use the `GetSamples` method: *) -type People = JsonProvider<""" +type People = + JsonProvider<""" [ { "name":"John", "age":94 }, { "name":"Tomas" } ] """> for item in People.GetSamples() do - printf "%s " item.Name - item.Age |> Option.iter (printf "(%d)") - printfn "" + printf "%s " item.Name + item.Age |> Option.iter (printf "(%d)") + printfn "" (*** include-fsi-merged-output ***) @@ -150,10 +151,10 @@ as follows: type Values = JsonProvider<""" [{"value":94 }, {"value":"Tomas" }] """> for item in Values.GetSamples() do - match item.Value.Number, item.Value.String with - | Some num, _ -> printfn "Numeric: %d" num - | _, Some str -> printfn "Text: %s" str - | _ -> printfn "Some other value!" + match item.Value.Number, item.Value.String with + | Some num, _ -> printfn "Numeric: %d" num + | _, Some str -> printfn "Text: %s" str + | _ -> printfn "Some other value!" (*** include-fsi-merged-output ***) @@ -174,7 +175,8 @@ Applied to the previous example this would be: *) -type People2 = JsonProvider<""" +type People2 = + JsonProvider<""" [ { "name":"John", "age":94 }, { "name":"Tomas" } ] """, SampleIsList=true> @@ -204,12 +206,12 @@ Let's consider an example where this can be useful: *) type AmbiguousEntity = - JsonProvider + """, SampleIsList=true> + let code = (AmbiguousEntity.GetSamples()[1]).Code let length = (AmbiguousEntity.GetSamples()[1]).Length @@ -226,13 +228,12 @@ Now let's enable inline schemas: open FSharp.Data.Runtime.StructuralInference type AmbiguousEntity2 = - JsonProvider", "length":"typeof>" } { "code":"123", "length":"42" } { "code":"4E5", "length":"1.83" } - """, - SampleIsList = true, - InferenceMode = InferenceMode.ValuesAndInlineSchemasOverrides> + """, SampleIsList=true, InferenceMode=InferenceMode.ValuesAndInlineSchemasOverrides> + let code2 = (AmbiguousEntity2.GetSamples()[1]).Code let length2 = (AmbiguousEntity2.GetSamples()[1]).Length @@ -260,7 +261,7 @@ Inline schemas also enable support for units of measure. In the previous example, the `Length` property is now inferred as a `float` with the `metre` unit of measure (from the default SI units). -Warning: units of measures are discarded when merged with types without a unit or with a different unit. +Warning: units of measures are discarded when merged with types without a unit or with a different unit. As mentioned previously, with the `ValuesAndInlineSchemasHints` inference mode, inline schemas types are merged with other inferred types with the same precedence. Since values-inferred types never have units, inline-schemas-inferred types will lose their @@ -304,11 +305,10 @@ let doc = WorldBank.GetSample() (** Note that we can also load the data directly from the web both in the `Load` method and in the type provider sample parameter, and there's an asynchronous `AsyncLoad` method available too: *) let wbReq = - "http://api.worldbank.org/country/cz/indicator/" + - "GC.DOD.TOTL.GD.ZS?format=json" + "http://api.worldbank.org/country/cz/indicator/" + + "GC.DOD.TOTL.GD.ZS?format=json" -let docAsync = - WorldBank.AsyncLoad(wbReq) +let docAsync = WorldBank.AsyncLoad(wbReq) (*** include-fsi-merged-output ***) @@ -320,13 +320,12 @@ provider infers that there is only one record and one array. We can print the da // Print general information let info = doc.Record -printfn "Showing page %d of %d. Total records %d" - info.Page info.Pages info.Total +printfn "Showing page %d of %d. Total records %d" info.Page info.Pages info.Total // Print all data points for record in doc.Array do - record.Value |> Option.iter (fun value -> - printfn "%d: %f" record.Date value) + record.Value + |> Option.iter (fun value -> printfn "%d: %f" record.Date value) (*** include-fsi-merged-output ***) @@ -348,11 +347,13 @@ provider that the sample is actually a _list of samples_: *) type Tweet = JsonProvider<"../data/TwitterStream.json", SampleIsList=true, ResolutionFolder=ResolutionFolder> -let text = (*[omit:(omitted)]*)""" {"in_reply_to_status_id_str":null,"text":"\u5927\u91d1\u6255\u3063\u3066\u904a\u3070\u3057\u3066\u3082\u3089\u3046\u3002\u3082\u3046\u3053\u306e\u4e0a\u306a\u3044\u8d05\u6ca2\u3002\u3067\u3082\uff0c\u5b9f\u969b\u306b\u306f\u305d\u306e\u8d05\u6ca2\u306e\u672c\u8cea\u3092\u6e80\u55ab\u3067\u304d\u308b\u4eba\u306f\u9650\u3089\u308c\u3066\u308b\u3002\u305d\u3053\u306b\u76ee\u306b\u898b\u3048\u306a\u3044\u968e\u5c64\u304c\u3042\u308b\u3068\u304a\u3082\u3046\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686155776","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"FFFFFF","location":"Kodaira Tokyo Japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"17451B","description":"KS(Green62)\/WasedaUniv.(Schl Adv Sci\/Eng)\/SynBio\/ChronoBio\/iGEM2010-2012\/Travel\/Airplane\/ \u5bfa\u30fb\u5ead\u3081\u3050\u308a","favourites_count":17,"screen_name":"Merlin_wand","profile_sidebar_border_color":"000000","id_str":"94788486","verified":false,"lang":"ja","statuses_count":8641,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","listed_count":31,"geo_enabled":true,"created_at":"Sat Dec 05 13:07:32 +0000 2009","profile_text_color":"000000","name":"Marin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","friends_count":629,"url":null,"id":94788486,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","utc_offset":32400,"profile_link_color":"ADADAD","followers_count":426},"id":263290764686155776,"contributors":null,"favorited":false} """(*[/omit]*) + +let text = (*[omit:(omitted)]*) + """ {"in_reply_to_status_id_str":null,"text":"\u5927\u91d1\u6255\u3063\u3066\u904a\u3070\u3057\u3066\u3082\u3089\u3046\u3002\u3082\u3046\u3053\u306e\u4e0a\u306a\u3044\u8d05\u6ca2\u3002\u3067\u3082\uff0c\u5b9f\u969b\u306b\u306f\u305d\u306e\u8d05\u6ca2\u306e\u672c\u8cea\u3092\u6e80\u55ab\u3067\u304d\u308b\u4eba\u306f\u9650\u3089\u308c\u3066\u308b\u3002\u305d\u3053\u306b\u76ee\u306b\u898b\u3048\u306a\u3044\u968e\u5c64\u304c\u3042\u308b\u3068\u304a\u3082\u3046\u3002","in_reply_to_user_id_str":null,"retweet_count":0,"geo":null,"source":"web","retweeted":false,"truncated":false,"id_str":"263290764686155776","entities":{"user_mentions":[],"hashtags":[],"urls":[]},"in_reply_to_user_id":null,"in_reply_to_status_id":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"created_at":"Tue Oct 30 14:46:24 +0000 2012","user":{"notifications":null,"contributors_enabled":false,"time_zone":"Tokyo","profile_background_color":"FFFFFF","location":"Kodaira Tokyo Japan","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","default_profile_image":false,"follow_request_sent":null,"profile_sidebar_fill_color":"17451B","description":"KS(Green62)\/WasedaUniv.(Schl Adv Sci\/Eng)\/SynBio\/ChronoBio\/iGEM2010-2012\/Travel\/Airplane\/ \u5bfa\u30fb\u5ead\u3081\u3050\u308a","favourites_count":17,"screen_name":"Merlin_wand","profile_sidebar_border_color":"000000","id_str":"94788486","verified":false,"lang":"ja","statuses_count":8641,"profile_use_background_image":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1172376796\/70768_100000537851636_3599485_q_normal.jpg","listed_count":31,"geo_enabled":true,"created_at":"Sat Dec 05 13:07:32 +0000 2009","profile_text_color":"000000","name":"Marin","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","friends_count":629,"url":null,"id":94788486,"is_translator":false,"default_profile":false,"following":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/612807391\/twitter_free1.br.jpg","utc_offset":32400,"profile_link_color":"ADADAD","followers_count":426},"id":263290764686155776,"contributors":null,"favorited":false} """ (*[/omit]*) + let tweet = Tweet.Parse(text) -printfn "%s (retweeted %d times)\n:%s" - tweet.User.Value.Name tweet.RetweetCount.Value tweet.Text.Value +printfn "%s (retweeted %d times)\n:%s" tweet.User.Value.Name tweet.RetweetCount.Value tweet.Text.Value (*** include-fsi-merged-output ***) @@ -393,7 +394,8 @@ we need to post a JSON value similar to this: *) [] -let issueSample = """ +let issueSample = + """ { "title": "Found a bug", "body": "I'm having a problem with this.", @@ -418,12 +420,14 @@ create an instance, and send a POST request: type GitHubIssue = JsonProvider let newIssue = - GitHubIssue.Issue - ( "Test issue", - "This is a test issue created in FSharp.Data documentation", - assignee = "", - labels = [| |], - milestone = 0) + GitHubIssue.Issue( + "Test issue", + "This is a test issue created in FSharp.Data documentation", + assignee = "", + labels = [||], + milestone = 0 + ) + newIssue.JsonValue.Request "https://api.github.com/repos/fsharp/FSharp.Data/issues" (** @@ -442,9 +446,8 @@ static parameter `EmbeddedResource` (don't forget then to [include the file](htt project file). If you are building a library `MyLib.dll`, you can write: *) -type WB = JsonProvider<"../data/WorldBank.json", - EmbeddedResource="MyLib, MyLib.data.worldbank.json", - ResolutionFolder=ResolutionFolder> +type WB = + JsonProvider<"../data/WorldBank.json", EmbeddedResource="MyLib, MyLib.data.worldbank.json", ResolutionFolder=ResolutionFolder> (** You still need to specify the local path, but this is only used when compiling `MyLib.dll`. diff --git a/docs/library/JsonValue.fsx b/docs/library/JsonValue.fsx index 7a0451a29..7db682d95 100644 --- a/docs/library/JsonValue.fsx +++ b/docs/library/JsonValue.fsx @@ -10,14 +10,14 @@ index: 5 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -45,9 +45,11 @@ to parse strings formatted using JSON as follows: *) let info = - JsonValue.Parse(""" + JsonValue.Parse( + """ { "name": "Tomas", "born": 1985, - "siblings": [ "Jan", "Alexander" ] } """) + "siblings": [ "Jan", "Alexander" ] } """ + ) (*** include-fsi-merged-output ***) @@ -103,7 +105,7 @@ printfn "%s (%d)" (info?name.AsString()) (info?born.AsInteger()) // Print names of all siblings for sib in info?siblings do - printfn "%s" (sib.AsString()) + printfn "%s" (sib.AsString()) (*** include-fsi-merged-output ***) @@ -142,11 +144,10 @@ let value = JsonValue.Load(__SOURCE_DIRECTORY__ + "../../data/WorldBank.json") asynchronous version available too: *) let wbReq = - "http://api.worldbank.org/country/cz/indicator/" + - "GC.DOD.TOTL.GD.ZS?format=json" + "http://api.worldbank.org/country/cz/indicator/" + + "GC.DOD.TOTL.GD.ZS?format=json" -let valueAsync = - JsonValue.AsyncLoad(wbReq) +let valueAsync = JsonValue.AsyncLoad(wbReq) (*** include-fsi-merged-output ***) @@ -159,15 +160,12 @@ match value with | JsonValue.Array [| info; data |] -> // Print overall information let page, pages, total = info?page, info?pages, info?total - printfn - "Showing page %d of %d. Total records %d" - (page.AsInteger()) (pages.AsInteger()) (total.AsInteger()) + printfn "Showing page %d of %d. Total records %d" (page.AsInteger()) (pages.AsInteger()) (total.AsInteger()) // Print every non-null data point for record in data do - if record?value <> JsonValue.Null then - printfn "%d: %f" (record?date.AsInteger()) - (record?value.AsFloat()) + if record?value <> JsonValue.Null then + printfn "%d: %f" (record?date.AsInteger()) (record?value.AsFloat()) | _ -> printfn "failed" (*** include-fsi-merged-output ***) diff --git a/docs/library/WorldBank.fsx b/docs/library/WorldBank.fsx index fa2afe250..2937f6eed 100644 --- a/docs/library/WorldBank.fsx +++ b/docs/library/WorldBank.fsx @@ -10,14 +10,14 @@ index: 5 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects/FSharp.Data/gh-pages?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -54,9 +54,7 @@ open FSharp.Data let data = WorldBankData.GetDataContext() -data - .Countries.``United Kingdom`` - .Indicators.``Gross capital formation (% of GDP)`` +data.Countries.``United Kingdom``.Indicators.``Gross capital formation (% of GDP)`` |> Seq.maxBy fst (*** include-fsi-merged-output ***) @@ -103,20 +101,20 @@ let wb = WorldBank.GetDataContext() // Create a list of countries to process let countries = - [| wb.Countries.``Arab World`` - wb.Countries.``European Union`` - wb.Countries.Australia - wb.Countries.Brazil - wb.Countries.Canada - wb.Countries.Chile - wb.Countries.``Czech Republic`` - wb.Countries.Denmark - wb.Countries.France - wb.Countries.Greece - wb.Countries.``Low income`` - wb.Countries.``High income`` - wb.Countries.``United Kingdom`` - wb.Countries.``United States`` |] + [| wb.Countries.``Arab World`` + wb.Countries.``European Union`` + wb.Countries.Australia + wb.Countries.Brazil + wb.Countries.Canada + wb.Countries.Chile + wb.Countries.``Czech Republic`` + wb.Countries.Denmark + wb.Countries.France + wb.Countries.Greece + wb.Countries.``Low income`` + wb.Countries.``High income`` + wb.Countries.``United Kingdom`` + wb.Countries.``United States`` |] (** To download the information in parallel, we can create a list of asynchronous @@ -124,8 +122,7 @@ computations, compose them using `Async.Parallel` and then run the (single) obta computation to perform all the downloads: *) -[ for c in countries -> - c.Indicators.``Gross capital formation (% of GDP)`` ] +[ for c in countries -> c.Indicators.``Gross capital formation (% of GDP)`` ] |> Async.Parallel |> Async.RunSynchronously diff --git a/docs/library/XmlProvider.fsx b/docs/library/XmlProvider.fsx index bd71471d2..0c5614af6 100644 --- a/docs/library/XmlProvider.fsx +++ b/docs/library/XmlProvider.fsx @@ -10,14 +10,14 @@ index: 4 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** [![Binder](../img/badge-binder.svg)](https://mybinder.org/v2/gh/fsprojects.github.io/FSharp.Data/main?filepath={{fsdocs-source-basename}}.ipynb)  [![Script](../img/badge-script.svg)]({{root}}/{{fsdocs-source-basename}}.fsx)  @@ -48,6 +48,7 @@ is located in the `../../bin` directory, we can load it in F# Interactive as fol `XDocument` type internally): *) #r "System.Xml.Linq.dll" + open FSharp.Data (** @@ -99,7 +100,9 @@ all, what if a node contains some value, but also has some attributes? *) type Detailed = XmlProvider<"""Karl Popper"""> -let info = Detailed.Parse("""Thomas Kuhn""") + +let info = + Detailed.Parse("""Thomas Kuhn""") printfn "%s (full=%b)" info.Name.Value info.Name.Full @@ -122,7 +125,7 @@ contains multiple `` nodes (note that if we leave out the parameter to th type Test = XmlProvider<"13"> for v in Test.GetSample().Values do - printfn "%d" v + printfn "%d" v (** The type provider generates a property `Values` that returns an array with the @@ -145,12 +148,12 @@ Let's consider an example where this can be useful: *) type AmbiguousEntity = - XmlProvider - """, - SampleIsList = true> + """, SampleIsList=true> + let code = (AmbiguousEntity.GetSamples()[1]).Code let length = (AmbiguousEntity.GetSamples()[1]).Length @@ -167,13 +170,12 @@ Now let's enable inline schemas: open FSharp.Data.Runtime.StructuralInference type AmbiguousEntity2 = - XmlProvider - """, - SampleIsList = true, - InferenceMode = InferenceMode.ValuesAndInlineSchemasOverrides> + """, SampleIsList=true, InferenceMode=InferenceMode.ValuesAndInlineSchemasOverrides> + let code2 = (AmbiguousEntity2.GetSamples()[1]).Code let length2 = (AmbiguousEntity2.GetSamples()[1]).Length @@ -199,7 +201,7 @@ Inline schemas also enable support for units of measure. In the previous example, the `Length` property is now inferred as a `float` with the `metre` unit of measure (from the default SI units). -Warning: units of measures are discarded when merged with types without a unit or with a different unit. +Warning: units of measures are discarded when merged with types without a unit or with a different unit. As mentioned previously, with the `ValuesAndInlineSchemasHints` inference mode, inline schemas types are merged with other inferred types with the same precedence. Since values-inferred types never have units, inline-schemas-inferred types will lose their @@ -225,7 +227,8 @@ At runtime, we use the generated type provider to parse the following string one of the `author` nodes also contains a `died` attribute): *) -let authors = """ +let authors = + """ @@ -245,6 +248,7 @@ type Authors = XmlProvider<"../data/Writers.xml", ResolutionFolder=ResolutionFol let topic = Authors.Parse(authors) printfn "%s" topic.Topic + for author in topic.Authors do printf " - %s" author.Name author.Born |> Option.iter (printf " (%d)") @@ -297,11 +301,12 @@ that takes `Html.Div` and acts as follows: *) /// Prints the content of a
          element -let rec printDiv (div:Html.Div) = - div.Spans |> Seq.iter (printfn "%s") - div.Divs |> Seq.iter printDiv - if div.Spans.Length = 0 && div.Divs.Length = 0 then - div.Value |> Option.iter (printfn "%s") +let rec printDiv (div: Html.Div) = + div.Spans |> Seq.iter (printfn "%s") + div.Divs |> Seq.iter printDiv + + if div.Spans.Length = 0 && div.Divs.Length = 0 then + div.Value |> Option.iter (printfn "%s") // Print the root
          element with all children printDiv html @@ -355,7 +360,7 @@ let data = Census.Load("https://api.census.gov/data.xml") let apiLinks = data.Datasets - |> Array.map (fun ds -> ds.Title,ds.Distribution.AccessUrl) + |> Array.map (fun ds -> ds.Title, ds.Distribution.AccessUrl) |> Array.truncate 10 (*** include-fsi-merged-output ***) @@ -376,16 +381,19 @@ and then post each link over (for example) a message queue. This is where `AsyncLoad` comes into play: *) -let enqueue (title,apiUrl) = - // do the real message enqueueing here instead of - printfn "%s -> %s" title apiUrl +let enqueue (title, apiUrl) = + // do the real message enqueueing here instead of + printfn "%s -> %s" title apiUrl // helper task which gets scheduled on some background thread somewhere... -let cacheJanitor() = async { - let! reloadData = Census.AsyncLoad("https://api.census.gov/data.xml") - reloadData.Datasets |> Array.map (fun ds -> ds.Title,ds.Distribution.AccessUrl) - |> Array.iter enqueue -} +let cacheJanitor () = + async { + let! reloadData = Census.AsyncLoad("https://api.census.gov/data.xml") + + reloadData.Datasets + |> Array.map (fun ds -> ds.Title, ds.Distribution.AccessUrl) + |> Array.iter enqueue + } (*** include-fsi-merged-output ***) @@ -419,7 +427,7 @@ printfn "%s" blog.Channel.Title // Get all item nodes and print title with link for item in blog.Channel.Items do - printfn " - %s (%s)" item.Title item.Link + printfn " - %s (%s)" item.Title item.Link (*** include-fsi-merged-output ***) @@ -432,7 +440,8 @@ Consider the problem of flattening a data set. Let's say you have xml data that *) [] -let customersXmlSample = """ +let customersXmlSample = + """ @@ -455,7 +464,8 @@ and you want to transform it into something like this: *) [] -let orderLinesXmlSample = """ +let orderLinesXmlSample = + """ @@ -471,15 +481,11 @@ type InputXml = XmlProvider type OutputXml = XmlProvider let orderLines = - OutputXml.OrderLines [| - for customer in InputXml.GetSample().Customers do - for order in customer.Orders do - for line in order.OrderLines do - yield OutputXml.OrderLine - ( customer.Name, - order.Number, - line.Item, - line.Quantity ) |] + OutputXml.OrderLines + [| for customer in InputXml.GetSample().Customers do + for order in customer.Orders do + for line in order.OrderLines do + yield OutputXml.OrderLine(customer.Name, order.Number, line.Item, line.Quantity) |] (*** include-fsi-merged-output ***) @@ -492,7 +498,8 @@ The value of the parameter can be either the name of a schema file or plain text like in the following example: *) -type Person = XmlProvider @@ -505,7 +512,9 @@ type Person = XmlProvider """> -let turing = Person.Parse """ +let turing = + Person.Parse + """ Turing 1912-06-23 @@ -529,7 +538,7 @@ When the file includes other schema files, the `ResolutionFolder` parameter can The uri may also refer to online resources: *) -type RssXsd = XmlProvider +type RssXsd = XmlProvider (** @@ -537,7 +546,8 @@ The schema is expected to define a root element (a global element with complex t In case of multiple root elements: *) -type TwoRoots = XmlProvider @@ -560,15 +570,15 @@ the provided type has an optional property for each alternative: *) let e1 = TwoRoots.Parse "" + match e1.Root1, e1.Root2 with -| Some x, None -> - printfn "Foo = %s and Fow = %A" x.Foo x.Fow +| Some x, None -> printfn "Foo = %s and Fow = %A" x.Foo x.Fow | _ -> failwith "Unexpected" let e2 = TwoRoots.Parse "" + match e2.Root1, e2.Root2 with -| None, Some x -> - printfn "Bar = %s and Baz = %O" x.Bar x.Baz +| None, Some x -> printfn "Bar = %s and Baz = %O" x.Bar x.Baz | _ -> failwith "Unexpected" (*** include-fsi-merged-output ***) @@ -583,7 +593,8 @@ The following xsd defines `foo` as a sequence made of an arbitrary number of `bar` elements followed by a single `baz` element. *) -type FooSequence = XmlProvider @@ -600,7 +611,9 @@ type FooSequence = XmlProvider 42 43 @@ -614,7 +627,8 @@ printfn "%d" fooSequence.Baz.Year // 1957 (** Instead of a sequence we may have a `choice`: *) -type FooChoice = XmlProvider @@ -636,12 +650,15 @@ in type providers) but also preferred because it improves discoverability: intellisense can show both alternatives. There is a lack of precision but this is not the main goal. *) -let fooChoice = FooChoice.Parse """ +let fooChoice = + FooChoice.Parse + """ 1957-08-13 """ printfn "%d items" fooChoice.Bars.Length // 0 items + match fooChoice.Baz with | Some date -> printfn "%d" date.Year // 1957 | None -> () @@ -659,7 +676,8 @@ XML Schema provides various extensibility mechanisms. The following example is a terse summary mixing substitution groups with abstract recursive definitions. *) -type Prop = XmlProvider @@ -673,7 +691,9 @@ type Prop = XmlProvider """> -let formula = Prop.Parse """ +let formula = + Prop.Parse + """ p1 diff --git a/docs/tutorials/JsonAnonymizer.fsx b/docs/tutorials/JsonAnonymizer.fsx index 11d869ade..527a0f2e2 100644 --- a/docs/tutorials/JsonAnonymizer.fsx +++ b/docs/tutorials/JsonAnonymizer.fsx @@ -10,14 +10,14 @@ index: 1 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** # Anonymizing JSON @@ -48,86 +48,112 @@ open FSharp.Data type JsonAnonymizer(?propertiesToSkip, ?valuesToSkip) = - let propertiesToSkip = Set.ofList (defaultArg propertiesToSkip []) - let valuesToSkip = Set.ofList (defaultArg valuesToSkip []) - - let rng = Random() - - let digits = [| '0' .. '9' |] - let lowerLetters = [| 'a' .. 'z' |] - let upperLetters = [| 'A' .. 'Z' |] - - let getRandomChar (c:char) = - if Char.IsDigit c then digits.[rng.Next(10)] - elif Char.IsLetter c then - if Char.IsLower c - then lowerLetters.[rng.Next(26)] - else upperLetters.[rng.Next(26)] - else c - - let randomize (str:string) = - String(str.ToCharArray() |> Array.map getRandomChar) - - let isType testType typ = - match typ with - | Runtime.StructuralTypes.InferedType.Primitive (typ, _, _, _) -> typ = testType - | _ -> false - - let rec anonymize json = - match json with - | JsonValue.String s when valuesToSkip.Contains s -> json - | JsonValue.String s -> - let typ = - Runtime.StructuralInference.inferPrimitiveType - Runtime.StructuralInference.defaultUnitsOfMeasureProvider - Runtime.StructuralInference.InferenceMode'.ValuesOnly - CultureInfo.InvariantCulture s None - - ( if typ |> isType typeof then Guid.NewGuid().ToString() - elif typ |> isType typeof || - typ |> isType typeof then s - elif typ |> isType typeof then s + let propertiesToSkip = Set.ofList (defaultArg propertiesToSkip []) + let valuesToSkip = Set.ofList (defaultArg valuesToSkip []) + + let rng = Random() + + let digits = [| '0' .. '9' |] + let lowerLetters = [| 'a' .. 'z' |] + let upperLetters = [| 'A' .. 'Z' |] + + let getRandomChar (c: char) = + if Char.IsDigit c then + digits.[rng.Next(10)] + elif Char.IsLetter c then + if Char.IsLower c then + lowerLetters.[rng.Next(26)] else - let prefix, s = - if s.StartsWith "http://" then - "http://", s.Substring("http://".Length) - elif s.StartsWith "https://" then - "https://", s.Substring("https://".Length) - else "", s - prefix + randomize s ) - |> JsonValue.String - | JsonValue.Number d -> - let typ = - Runtime.StructuralInference.inferPrimitiveType - Runtime.StructuralInference.defaultUnitsOfMeasureProvider - Runtime.StructuralInference.InferenceMode'.ValuesOnly - CultureInfo.InvariantCulture (d.ToString()) None - if typ |> isType typeof || - typ |> isType typeof then json - else d.ToString() |> randomize |> Decimal.Parse |> JsonValue.Number - | JsonValue.Float f -> - f.ToString() - |> randomize - |> Double.Parse - |> JsonValue.Float - | JsonValue.Boolean _ | JsonValue.Null -> json - | JsonValue.Record props -> - props - |> Array.map (fun (key, value) -> - let newValue = if propertiesToSkip.Contains key then value else anonymize value - key, newValue) - |> JsonValue.Record - | JsonValue.Array array -> - array - |> Array.map anonymize - |> JsonValue.Array - - member _.Anonymize json = anonymize json - -let json = JsonValue.Load (__SOURCE_DIRECTORY__ + "../../data/TwitterStream.json") + upperLetters.[rng.Next(26)] + else + c + + let randomize (str: string) = + String(str.ToCharArray() |> Array.map getRandomChar) + + let isType testType typ = + match typ with + | Runtime.StructuralTypes.InferedType.Primitive (typ, _, _, _) -> typ = testType + | _ -> false + + let rec anonymize json = + match json with + | JsonValue.String s when valuesToSkip.Contains s -> json + | JsonValue.String s -> + let typ = + Runtime.StructuralInference.inferPrimitiveType + Runtime.StructuralInference.defaultUnitsOfMeasureProvider + Runtime.StructuralInference.InferenceMode'.ValuesOnly + CultureInfo.InvariantCulture + s + None + + (if typ |> isType typeof then + Guid.NewGuid().ToString() + elif typ |> isType typeof + || typ |> isType typeof then + s + elif typ |> isType typeof then + s + else + let prefix, s = + if s.StartsWith "http://" then + "http://", s.Substring("http://".Length) + elif s.StartsWith "https://" then + "https://", s.Substring("https://".Length) + else + "", s + + prefix + randomize s) + |> JsonValue.String + | JsonValue.Number d -> + let typ = + Runtime.StructuralInference.inferPrimitiveType + Runtime.StructuralInference.defaultUnitsOfMeasureProvider + Runtime.StructuralInference.InferenceMode'.ValuesOnly + CultureInfo.InvariantCulture + (d.ToString()) + None + + if typ |> isType typeof + || typ |> isType typeof then + json + else + d.ToString() + |> randomize + |> Decimal.Parse + |> JsonValue.Number + | JsonValue.Float f -> + f.ToString() + |> randomize + |> Double.Parse + |> JsonValue.Float + | JsonValue.Boolean _ + | JsonValue.Null -> json + | JsonValue.Record props -> + props + |> Array.map (fun (key, value) -> + let newValue = + if propertiesToSkip.Contains key then + value + else + anonymize value + + key, newValue) + |> JsonValue.Record + | JsonValue.Array array -> array |> Array.map anonymize |> JsonValue.Array + + member _.Anonymize json = anonymize json + +let json = + JsonValue.Load( + __SOURCE_DIRECTORY__ + + "../../data/TwitterStream.json" + ) + printfn "%O" json -let anonymizedJson = (JsonAnonymizer ["lang"]).Anonymize json +let anonymizedJson = (JsonAnonymizer [ "lang" ]).Anonymize json printfn "%O" anonymizedJson (** diff --git a/docs/tutorials/JsonToXml.fsx b/docs/tutorials/JsonToXml.fsx index 7862b442c..6cca00469 100644 --- a/docs/tutorials/JsonToXml.fsx +++ b/docs/tutorials/JsonToXml.fsx @@ -10,14 +10,14 @@ index: 2 (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" -#endif // FSX +#endif (*** condition: ipynb ***) #if IPYNB #r "nuget: FSharp.Data,{{fsdocs-package-version}}" Formatter.SetPreferredMimeTypesFor(typeof, "text/plain") -Formatter.Register(fun (x:obj) (writer: TextWriter) -> fprintfn writer "%120A" x ) -#endif // IPYNB +Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A" x) +#endif (** # Converting between JSON and XML @@ -47,6 +47,7 @@ We will be using the LINQ to XML API (available in `System.Xml.Linq.dll`) and th *) #r "System.Xml.Linq.dll" + open System.Xml.Linq open FSharp.Data @@ -92,33 +93,32 @@ attributes to a corresponding JSON type: *) /// Creates a JSON representation of a XML element -let rec fromXml (xml:XElement) = - - // Create a collection of key/value pairs for all attributes - let attrs = - [ for attr in xml.Attributes() -> - (attr.Name.LocalName, JsonValue.String attr.Value) ] - - // Function that turns a collection of XElement values - // into an array of JsonValue (using fromXml recursively) - let createArray xelems = - [| for xelem in xelems -> fromXml xelem |] - |> JsonValue.Array - - // Group child elements by their name and then turn all single- - // element groups into a record (recursively) and all multi- - // element groups into a JSON array using createArray - let children = - xml.Elements() - |> Seq.groupBy (fun x -> x.Name.LocalName) - |> Seq.map (fun (key, childs) -> - match Seq.toList childs with - | [child] -> key, fromXml child - | children -> key + "s", createArray children ) - - // Concatenate elements produced for child elements & attributes - Array.append (Array.ofList attrs) (Array.ofSeq children) - |> JsonValue.Record +let rec fromXml (xml: XElement) = + + // Create a collection of key/value pairs for all attributes + let attrs = + [ for attr in xml.Attributes() -> (attr.Name.LocalName, JsonValue.String attr.Value) ] + + // Function that turns a collection of XElement values + // into an array of JsonValue (using fromXml recursively) + let createArray xelems = + [| for xelem in xelems -> fromXml xelem |] + |> JsonValue.Array + + // Group child elements by their name and then turn all single- + // element groups into a record (recursively) and all multi- + // element groups into a JSON array using createArray + let children = + xml.Elements() + |> Seq.groupBy (fun x -> x.Name.LocalName) + |> Seq.map (fun (key, childs) -> + match Seq.toList childs with + | [ child ] -> key, fromXml child + | children -> key + "s", createArray children) + + // Concatenate elements produced for child elements & attributes + Array.append (Array.ofList attrs) (Array.ofSeq children) + |> JsonValue.Record (** @@ -155,44 +155,48 @@ and record construct nested element(s) or attribute: /// Creates an XML representation of a JSON value (works /// only when the top-level value is an object or an array) -let toXml(x:JsonValue) = - // Helper functions for constructing XML - // attributes and XML elements - let attr name value = - XAttribute(XName.Get name, value) :> XObject - let elem name (value:obj) = - XElement(XName.Get name, value) :> XObject - - // Inner recursive function that implements the conversion - let rec toXml = function - // Primitive values are returned as objects - | JsonValue.Null -> null - | JsonValue.Boolean b -> b :> obj - | JsonValue.Number number -> number :> obj - | JsonValue.Float number -> number :> obj - | JsonValue.String s -> s :> obj - - // JSON object becomes a collection of XML - // attributes (for primitives) or child elements - | JsonValue.Record properties -> - properties - |> Array.map (fun (key, value) -> - match value with - | JsonValue.String s -> attr key s - | JsonValue.Boolean b -> attr key b - | JsonValue.Number n -> attr key n - | JsonValue.Float n -> attr key n - | _ -> elem key (toXml value)) :> obj - - // JSON array is turned into a - // sequence of elements - | JsonValue.Array elements -> - elements |> Array.map (fun item -> - elem "item" (toXml item)) :> obj - - // Perform the conversion and cast the result to sequence - // of objects (may fail for unexpected inputs!) - (toXml x) :?> XObject seq +let toXml (x: JsonValue) = + // Helper functions for constructing XML + // attributes and XML elements + let attr name value = + XAttribute(XName.Get name, value) :> XObject + + let elem name (value: obj) = + XElement(XName.Get name, value) :> XObject + + // Inner recursive function that implements the conversion + let rec toXml = + function + // Primitive values are returned as objects + | JsonValue.Null -> null + | JsonValue.Boolean b -> b :> obj + | JsonValue.Number number -> number :> obj + | JsonValue.Float number -> number :> obj + | JsonValue.String s -> s :> obj + + // JSON object becomes a collection of XML + // attributes (for primitives) or child elements + | JsonValue.Record properties -> + properties + |> Array.map (fun (key, value) -> + match value with + | JsonValue.String s -> attr key s + | JsonValue.Boolean b -> attr key b + | JsonValue.Number n -> attr key n + | JsonValue.Float n -> attr key n + | _ -> elem key (toXml value)) + :> obj + + // JSON array is turned into a + // sequence of elements + | JsonValue.Array elements -> + elements + |> Array.map (fun item -> elem "item" (toXml item)) + :> obj + + // Perform the conversion and cast the result to sequence + // of objects (may fail for unexpected inputs!) + (toXml x) :?> XObject seq (** diff --git a/src/AssemblyInfo.Core.fs b/src/AssemblyInfo.Core.fs index 437f63310..52753a0be 100644 --- a/src/AssemblyInfo.Core.fs +++ b/src/AssemblyInfo.Core.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FSharp.Data.Core" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "4.2.10.0" - let [] AssemblyFileVersion = "4.2.10.0" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.DesignTime.fs b/src/AssemblyInfo.DesignTime.fs index 0507cc3ff..41ddeca05 100644 --- a/src/AssemblyInfo.DesignTime.fs +++ b/src/AssemblyInfo.DesignTime.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FSharp.Data.DesignTime" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "4.2.10.0" - let [] AssemblyFileVersion = "4.2.10.0" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.fs b/src/AssemblyInfo.fs index 760839d85..8be140ac9 100644 --- a/src/AssemblyInfo.fs +++ b/src/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FSharp.Data" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "4.2.10.0" - let [] AssemblyFileVersion = "4.2.10.0" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj index 53d027d7c..b0a54e9bc 100755 --- a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj +++ b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj @@ -1,6 +1,7 @@ + false netstandard2.0 IS_DESIGNTIME;NO_GENERATIVE;$(DefineConstants) --warnon:1182 diff --git a/src/Json/JsonDocument.fs b/src/Json/JsonDocument.fs index 2d2133435..61447c204 100644 --- a/src/Json/JsonDocument.fs +++ b/src/Json/JsonDocument.fs @@ -95,4 +95,3 @@ type JsonDocument = | [| JsonValue.Array array |] -> array | array -> array |> Array.mapi (fun i value -> JsonDocument.Create(value, "[" + (string i) + "]")) - diff --git a/src/Json/JsonValue.fs b/src/Json/JsonValue.fs index 96dad059c..708ab1fb1 100644 --- a/src/Json/JsonValue.fs +++ b/src/Json/JsonValue.fs @@ -496,4 +496,3 @@ type JsonValue with [] member x.Post(uri: string, [] ?headers) = x.Request(uri, ?headers = headers) - diff --git a/src/SetupTesting.fsx b/src/SetupTesting.fsx index 9ce599560..7118966d2 100644 --- a/src/SetupTesting.fsx +++ b/src/SetupTesting.fsx @@ -4,39 +4,55 @@ open System open System.IO open System.Xml.Linq -let generateSetupScript dir proj = +let generateSetupScript dir proj = let getElemName name = XName.Get name - let getElemValue name (parent:XElement) = + let getElemValue name (parent: XElement) = let elem = parent.Element(getElemName name) - if elem = null || String.IsNullOrEmpty elem.Value then None else Some(elem.Value) - - let getAttrValue name (elem:XElement) = + + if elem = null || String.IsNullOrEmpty elem.Value then + None + else + Some(elem.Value) + + let getAttrValue name (elem: XElement) = let attr = elem.Attribute(XName.Get name) - if attr = null || String.IsNullOrEmpty attr.Value then None else Some(attr.Value) + + if attr = null || String.IsNullOrEmpty attr.Value then + None + else + Some(attr.Value) let (|??) (option1: 'a Option) option2 = - if option1.IsSome then option1 else option2 + if option1.IsSome then + option1 + else + option2 let fsProjFile = Path.Combine(dir, proj + ".fsproj") let fsProjXml = XDocument.Load fsProjFile - let refs = + let refs = fsProjXml.Document.Descendants(getElemName "Reference") - |> Seq.choose (fun elem -> getElemValue "HintPath" elem |?? getAttrValue "Include" elem) + |> Seq.choose (fun elem -> + getElemValue "HintPath" elem + |?? getAttrValue "Include" elem) |> Seq.map (fun ref -> ref.Replace(@"\", @"\\").Split(',').[0]) - |> Seq.filter (fun ref -> ref <> "mscorlib" && ref <> "FSharp.Core" && not (ref.EndsWith "FSharp.Core.dll")) + |> Seq.filter (fun ref -> + ref <> "mscorlib" + && ref <> "FSharp.Core" + && not (ref.EndsWith "FSharp.Core.dll")) |> Seq.map (fun ref -> "#r \"" + ref + "\"") |> Seq.toList - let fsFiles = + let fsFiles = fsProjXml.Document.Descendants(getElemName "Compile") |> Seq.choose (fun elem -> getAttrValue "Include" elem) |> Seq.filter (Path.GetExtension >> (<>) ".fsi") |> Seq.filter (Path.GetFileName >> (<>) "Test.fs") |> Seq.map (fun path -> "#load \"" + path.Replace(@"\", @"\\") + "\"") |> Seq.toList - + let tempFile = Path.Combine(dir, "__setup__" + proj + "__.fsx") - File.WriteAllLines(tempFile, refs @ fsFiles) + File.WriteAllLines(tempFile, refs @ fsFiles) diff --git a/src/Test.fsx b/src/Test.fsx index 2a4f953e7..d1314bb87 100644 --- a/src/Test.fsx +++ b/src/Test.fsx @@ -2,6 +2,7 @@ let dir = __SOURCE_DIRECTORY__ + "/FSharp.Data.DesignTime" let proj = "FSharp.Data.DesignTime" SetupTesting.generateSetupScript (__SOURCE_DIRECTORY__ + "/FSharp.Data.DesignTime") "FSharp.Data.DesignTime" + #load "FSharp.Data.DesignTime/__setup__FSharp.Data.DesignTime__.fsx" #load "../paket-files/fsprojects/FSharp.TypeProviders.SDK/src/ProvidedTypesTesting.fs" #load "../tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs" @@ -14,21 +15,44 @@ open FSharp.Data open FSharp.Data.Runtime let (++) a b = Path.Combine(a, b) -let resolutionFolder = __SOURCE_DIRECTORY__ ++ ".." ++ "tests" ++ "FSharp.Data.Tests" ++ "Data" -let outputFolder = __SOURCE_DIRECTORY__ ++ ".." ++ "tests" ++ "FSharp.Data.DesignTime.Tests" ++ "expected" + +let resolutionFolder = + __SOURCE_DIRECTORY__ + ++ ".." + ++ "tests" + ++ "FSharp.Data.Tests" + ++ "Data" + +let outputFolder = + __SOURCE_DIRECTORY__ + ++ ".." + ++ "tests" + ++ "FSharp.Data.DesignTime.Tests" + ++ "expected" + let assemblyName = "FSharp.Data.dll" -let dump signatureOnly ignoreOutput saveToFileSystem (inst:TypeProviderInstantiation) = +let dump signatureOnly ignoreOutput saveToFileSystem (inst: TypeProviderInstantiation) = let root = __SOURCE_DIRECTORY__ ++ ".." ++ "bin" let runtimeAssembly = root ++ "netstandard2.0" ++ assemblyName - let runtimeAssemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs () - inst.Dump(resolutionFolder, (if saveToFileSystem then outputFolder else ""), runtimeAssembly, runtimeAssemblyRefs, signatureOnly, ignoreOutput) + let runtimeAssemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() + + inst.Dump( + resolutionFolder, + (if saveToFileSystem then + outputFolder + else + ""), + runtimeAssembly, + runtimeAssemblyRefs, + signatureOnly, + ignoreOutput + ) |> Console.WriteLine -let dumpAll inst = - dump false false false inst +let dumpAll inst = dump false false false inst -let parameters : HtmlInference.Parameters = +let parameters: HtmlInference.Parameters = { MissingValues = TextConversions.DefaultMissingValues CultureInfo = CultureInfo.InvariantCulture UnitsOfMeasureProvider = StructuralInference.defaultUnitsOfMeasureProvider @@ -36,7 +60,7 @@ let parameters : HtmlInference.Parameters = let includeLayout = false -let printTable tableName (url:string) = +let printTable tableName (url: string) = url |> HtmlDocument.Load |> HtmlRuntime.getTables (Some parameters) includeLayout @@ -45,28 +69,31 @@ let printTable tableName (url:string) = printTable "Overview" "https://en.wikipedia.org/wiki/List_of_Doctor_Who_serials" -Html { Sample = "doctor_who3.html" - PreferOptionals = false - IncludeLayoutTables = false - MissingValues = "NaN,NA,N/A,#N/A,:,-,TBA,TBD" - Culture = "" - Encoding = "" - ResolutionFolder = "" - EmbeddedResource = "" } +Html + { Sample = "doctor_who3.html" + PreferOptionals = false + IncludeLayoutTables = false + MissingValues = "NaN,NA,N/A,#N/A,:,-,TBA,TBD" + Culture = "" + Encoding = "" + ResolutionFolder = "" + EmbeddedResource = "" } |> dumpAll -Json { Sample = "optionals.json" - SampleIsList = false - RootName = "" - Culture = "" - Encoding = "" - ResolutionFolder = "" - EmbeddedResource = "" - InferTypesFromValues = true - PreferDictionaries = false } +Json + { Sample = "optionals.json" + SampleIsList = false + RootName = "" + Culture = "" + Encoding = "" + ResolutionFolder = "" + EmbeddedResource = "" + InferTypesFromValues = true + PreferDictionaries = false } |> dumpAll -Xml { Sample = "JsonInXml.xml" +Xml + { Sample = "JsonInXml.xml" SampleIsList = true Global = false Culture = "" @@ -77,7 +104,8 @@ Xml { Sample = "JsonInXml.xml" Schema = "" } |> dumpAll -Csv { Sample = "AirQuality.csv" +Csv + { Sample = "AirQuality.csv" Separators = ";" InferRows = Int32.MaxValue Schema = "" @@ -96,7 +124,11 @@ Csv { Sample = "AirQuality.csv" |> dumpAll let testCases = - __SOURCE_DIRECTORY__ ++ ".." ++ "tests" ++ "FSharp.Data.DesignTime.Tests" ++ "SignatureTestCases.config" + __SOURCE_DIRECTORY__ + ++ ".." + ++ "tests" + ++ "FSharp.Data.DesignTime.Tests" + ++ "SignatureTestCases.config" |> File.ReadAllLines |> Array.map (TypeProviderInstantiation.Parse >> snd) diff --git a/src/Xml/XmlExtensions.fs b/src/Xml/XmlExtensions.fs index c4073f142..4ea19829d 100644 --- a/src/Xml/XmlExtensions.fs +++ b/src/Xml/XmlExtensions.fs @@ -66,4 +66,3 @@ module XElementExtensions = headers = headers, httpMethod = httpMethod ) - From 3f7dd97d1772dd24cc22e79946cfd7761c5097b1 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Mon, 15 Aug 2022 22:23:36 +0100 Subject: [PATCH 05/11] fix doc generation --- docs/library/CsvFile.fsx | 1 + docs/library/CsvProvider.fsx | 1 + docs/library/HtmlCssSelectors.fsx | 1 + docs/library/HtmlParser.fsx | 1 + docs/library/HtmlProvider.fsx | 1 + docs/library/Http.fsx | 1 + docs/library/JsonProvider.fsx | 1 + docs/library/JsonValue.fsx | 1 + docs/library/WorldBank.fsx | 1 + docs/library/XmlProvider.fsx | 1 + docs/tutorials/JsonAnonymizer.fsx | 1 + docs/tutorials/JsonToXml.fsx | 1 + 12 files changed, 12 insertions(+) diff --git a/docs/library/CsvFile.fsx b/docs/library/CsvFile.fsx index b4f2a3486..736fec1ad 100644 --- a/docs/library/CsvFile.fsx +++ b/docs/library/CsvFile.fsx @@ -6,6 +6,7 @@ index: 2 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/CsvProvider.fsx b/docs/library/CsvProvider.fsx index 8a9eaa434..701e5d884 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -6,6 +6,7 @@ index: 1 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/HtmlCssSelectors.fsx b/docs/library/HtmlCssSelectors.fsx index 1875171e5..2b969124c 100644 --- a/docs/library/HtmlCssSelectors.fsx +++ b/docs/library/HtmlCssSelectors.fsx @@ -6,6 +6,7 @@ index: 4 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/HtmlParser.fsx b/docs/library/HtmlParser.fsx index 4c4f3f6bc..618bf8231 100644 --- a/docs/library/HtmlParser.fsx +++ b/docs/library/HtmlParser.fsx @@ -6,6 +6,7 @@ index: 3 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/HtmlProvider.fsx b/docs/library/HtmlProvider.fsx index 3fcfc31c4..bef0dbad4 100644 --- a/docs/library/HtmlProvider.fsx +++ b/docs/library/HtmlProvider.fsx @@ -6,6 +6,7 @@ index: 2 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/Http.fsx b/docs/library/Http.fsx index 7367210ce..85d160e8a 100644 --- a/docs/library/Http.fsx +++ b/docs/library/Http.fsx @@ -6,6 +6,7 @@ index: 1 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/JsonProvider.fsx b/docs/library/JsonProvider.fsx index 37b3573af..fe06b7947 100644 --- a/docs/library/JsonProvider.fsx +++ b/docs/library/JsonProvider.fsx @@ -6,6 +6,7 @@ index: 3 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/JsonValue.fsx b/docs/library/JsonValue.fsx index 7db682d95..f780c9c22 100644 --- a/docs/library/JsonValue.fsx +++ b/docs/library/JsonValue.fsx @@ -6,6 +6,7 @@ index: 5 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/WorldBank.fsx b/docs/library/WorldBank.fsx index 2937f6eed..b1e713974 100644 --- a/docs/library/WorldBank.fsx +++ b/docs/library/WorldBank.fsx @@ -6,6 +6,7 @@ index: 5 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/XmlProvider.fsx b/docs/library/XmlProvider.fsx index 0c5614af6..183afcae9 100644 --- a/docs/library/XmlProvider.fsx +++ b/docs/library/XmlProvider.fsx @@ -6,6 +6,7 @@ index: 4 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/tutorials/JsonAnonymizer.fsx b/docs/tutorials/JsonAnonymizer.fsx index 527a0f2e2..f8145c9f2 100644 --- a/docs/tutorials/JsonAnonymizer.fsx +++ b/docs/tutorials/JsonAnonymizer.fsx @@ -6,6 +6,7 @@ index: 1 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/tutorials/JsonToXml.fsx b/docs/tutorials/JsonToXml.fsx index 6cca00469..f3742bfec 100644 --- a/docs/tutorials/JsonToXml.fsx +++ b/docs/tutorials/JsonToXml.fsx @@ -6,6 +6,7 @@ index: 2 --- *) (*** condition: prepare ***) +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX From 8f77652451edd2f4d58b1f5a99ee3de496fa2d1d Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 14:41:26 +0100 Subject: [PATCH 06/11] make inference logic private, hide representation and inferred types in HTML table --- CONTRIBUTING.md | 12 +- Directory.Build.props | 9 ++ FSharp.Data.sln | 32 +++- RELEASE_NOTES.md | 9 +- build.fsx | 20 +-- docs/library/CsvFile.fsx | 3 +- docs/library/CsvProvider.fsx | 3 +- docs/library/HtmlCssSelectors.fsx | 5 +- docs/library/HtmlParser.fsx | 5 +- docs/library/HtmlProvider.fsx | 15 +- docs/library/Http.fsx | 3 +- docs/library/JsonProvider.fsx | 3 +- docs/library/JsonValue.fsx | 3 +- docs/library/WorldBank.fsx | 3 +- docs/library/XmlProvider.fsx | 4 +- docs/tutorials/JsonAnonymizer.fsx | 4 +- docs/tutorials/JsonToXml.fsx | 6 +- nuget/FSharp.Data.Core.nuspec | 32 ---- nuget/FSharp.Data.nuspec | 44 ------ nuget/linqpad-samples/GitHub.linq | 19 --- nuget/linqpad-samples/Jira.linq | 15 -- nuget/linqpad-samples/TypeInference.linq | 27 ---- nuget/publish.cmd | 1 - src/AssemblyInfo.Csv.Core.fs | 17 +++ src/AssemblyInfo.Html.Core.fs | 17 +++ ...emblyInfo.Core.fs => AssemblyInfo.Http.fs} | 4 +- src/AssemblyInfo.Json.Core.fs | 17 +++ src/AssemblyInfo.WorldBank.Core.fs | 17 +++ src/AssemblyInfo.Xml.Core.fs | 17 +++ .../ConversionsGenerator.fs | 2 +- src/CommonProviderImplementation/Helpers.fs | 4 +- src/CommonRuntime/Caching.fs | 2 +- src/CommonRuntime/StructuralInference.fs | 6 +- src/CommonRuntime/StructuralTypes.fs | 22 +-- src/Csv/CsvInference.fs | 2 +- src/FSharp.Data.Core/InternalsVisibleTo.fs | 9 -- .../FSharp.Data.Csv.Core.fsproj | 29 ++++ .../InternalsVisibleTo.fs | 10 ++ .../paket.references | 0 .../FSharp.Data.DesignTime.fsproj | 10 +- .../FSharp.Data.Html.Core.fsproj | 35 +++++ .../InternalsVisibleTo.fs | 9 ++ src/FSharp.Data.Html.Core/paket.references | 2 + .../FSharp.Data.Http.fsproj} | 29 +--- src/FSharp.Data.Http/InternalsVisibleTo.fs | 14 ++ src/FSharp.Data.Http/paket.references | 2 + .../FSharp.Data.Json.Core.fsproj | 31 ++++ .../InternalsVisibleTo.fs | 11 ++ src/FSharp.Data.Json.Core/paket.references | 2 + .../FSharp.Data.WorldBank.Core.fsproj | 27 ++++ .../InternalsVisibleTo.fs | 9 ++ .../paket.references | 2 + .../FSharp.Data.Xml.Core.fsproj | 30 ++++ .../InternalsVisibleTo.fs | 9 ++ src/FSharp.Data.Xml.Core/paket.references | 2 + src/FSharp.Data/FSharp.Data.fsproj | 10 +- src/Html/HtmlInference.fs | 8 +- src/Html/HtmlParser.fs | 137 +++++++++--------- src/Html/HtmlRuntime.fs | 59 +++++--- src/Json/JsonConversionsGenerator.fs | 4 +- src/Json/JsonInference.fs | 2 +- src/Runtime.fs | 2 +- src/Xml/XmlInference.fs | 2 +- src/Xml/XsdInference.fs | 2 +- .../FSharp.Data.Core.Tests.CSharp.csproj | 7 +- .../FSharp.Data.Core.Tests.fsproj | 7 +- tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs | 2 +- .../HtmlCssSelectors.fs | 2 +- .../FSharp.Data.Core.Tests/HtmlOperations.fs | 2 +- tests/FSharp.Data.Core.Tests/Http.fs | 2 +- .../FSharp.Data.Core.Tests/JsonConversions.fs | 2 +- tests/FSharp.Data.Core.Tests/JsonValue.fs | 2 +- tests/FSharp.Data.Core.Tests/NameUtils.fs | 2 +- .../FSharp.Data.Core.Tests/TextConversions.fs | 2 +- .../InferenceTests.fs | 35 ++--- .../SignatureTestCases.config | 3 +- .../SignatureTests.fs | 34 ++--- .../TypeProviderInstantiation.fs | 29 ++-- 78 files changed, 619 insertions(+), 414 deletions(-) delete mode 100644 nuget/FSharp.Data.Core.nuspec delete mode 100755 nuget/FSharp.Data.nuspec delete mode 100644 nuget/linqpad-samples/GitHub.linq delete mode 100644 nuget/linqpad-samples/Jira.linq delete mode 100644 nuget/linqpad-samples/TypeInference.linq delete mode 100644 nuget/publish.cmd create mode 100644 src/AssemblyInfo.Csv.Core.fs create mode 100644 src/AssemblyInfo.Html.Core.fs rename src/{AssemblyInfo.Core.fs => AssemblyInfo.Http.fs} (85%) create mode 100644 src/AssemblyInfo.Json.Core.fs create mode 100644 src/AssemblyInfo.WorldBank.Core.fs create mode 100644 src/AssemblyInfo.Xml.Core.fs delete mode 100644 src/FSharp.Data.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj create mode 100644 src/FSharp.Data.Csv.Core/InternalsVisibleTo.fs rename src/{FSharp.Data.Core => FSharp.Data.Csv.Core}/paket.references (100%) create mode 100644 src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj create mode 100644 src/FSharp.Data.Html.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Html.Core/paket.references rename src/{FSharp.Data.Core/FSharp.Data.Core.fsproj => FSharp.Data.Http/FSharp.Data.Http.fsproj} (50%) create mode 100644 src/FSharp.Data.Http/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Http/paket.references create mode 100644 src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj create mode 100644 src/FSharp.Data.Json.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Json.Core/paket.references create mode 100644 src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj create mode 100644 src/FSharp.Data.WorldBank.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.WorldBank.Core/paket.references create mode 100644 src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj create mode 100644 src/FSharp.Data.Xml.Core/InternalsVisibleTo.fs create mode 100644 src/FSharp.Data.Xml.Core/paket.references diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1b3a53ff1..37251f12f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,12 +32,16 @@ Type providers consist of two components: CSV provider, this component does the type inference and generates types (that are mapped to runtime components by the compiler). -We need a _runtime component_ for .NET Standard 2.0 (netstandard2.0). We also need a _design time_ -component for each, to be able to host the type provider in .NET Core-based tooling. +We need _runtime components_ for .NET Standard 2.0 (netstandard2.0). We also need a _design time_ +component, to be able to host the type providers in .NET Core-based tooling. -The _core_ runtime component is the following project. No type providers are activated if you reference this: +The _core_ runtime components are the following projects. No type providers are activated if you reference these: - * **FSharp.Data.Core** + * **FSharp.Data.Http** + * **FSharp.Data.Csv.Core** + * **FSharp.Data.Html.Core** + * **FSharp.Data.Json.Core** + * **FSharp.Data.Xml.Core** The _enhanced_ runtime component that mentions the associated the design-time component is in the following project: diff --git a/Directory.Build.props b/Directory.Build.props index 3459447c8..cfbaeddd4 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -11,5 +11,14 @@ https://fsprojects.github.io/FSharp.Data https://raw.githubusercontent.com/fsprojects/FSharp.Data/master/docs/img/logo.png git + true + $(MSBuildThisFileDirectory)src\keyfile.snk + false + $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb + true + true + true + true + snupkg diff --git a/FSharp.Data.sln b/FSharp.Data.sln index 03e1574d6..019afa28d 100755 --- a/FSharp.Data.sln +++ b/FSharp.Data.sln @@ -88,12 +88,22 @@ Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.DesignTime.Test EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FSharp.Data.Core.Tests.CSharp", "tests\FSharp.Data.Core.Tests.CSharp\FSharp.Data.Core.Tests.CSharp.csproj", "{290FED0C-D7C8-486F-AACF-3D7A1304C863}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Core", "src\FSharp.Data.Core\FSharp.Data.Core.fsproj", "{DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Json.Core", "src\FSharp.Data.Json.Core\FSharp.Data.Json.Core.fsproj", "{DAEBFBCF-84CD-40BB-B8F6-99B1A9C4641F}" EndProject Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Tests", "tests\FSharp.Data.Tests\FSharp.Data.Tests.fsproj", "{750148EC-6A05-421D-96A4-E5AC9D18AF58}" EndProject Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.DesignTime", "src\FSharp.Data.DesignTime\FSharp.Data.DesignTime.fsproj", "{44E0DF97-D8FD-4805-8A84-B888D9589C8A}" EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Html.Core", "src\FSharp.Data.Html.Core\FSharp.Data.Html.Core.fsproj", "{E91BF68E-257C-43E6-BDE9-672D4E3BFAFA}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Http", "src\FSharp.Data.Http\FSharp.Data.Http.fsproj", "{29EDED03-D2D6-415C-A17D-00806C52035A}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Xml.Core", "src\FSharp.Data.Xml.Core\FSharp.Data.Xml.Core.fsproj", "{1ECEFFEE-1040-40ED-9EB5-CE720A33058D}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Csv.Core", "src\FSharp.Data.Csv.Core\FSharp.Data.Csv.Core.fsproj", "{0A1B8B61-268D-4061-B567-A47141C608E4}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.WorldBank.Core", "src\FSharp.Data.WorldBank.Core\FSharp.Data.WorldBank.Core.fsproj", "{A69D007B-EAF0-4866-A8B4-A2EDF2614E56}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -132,6 +142,26 @@ Global {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Debug|Any CPU.Build.0 = Debug|Any CPU {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Release|Any CPU.ActiveCfg = Release|Any CPU {44E0DF97-D8FD-4805-8A84-B888D9589C8A}.Release|Any CPU.Build.0 = Release|Any CPU + {E91BF68E-257C-43E6-BDE9-672D4E3BFAFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E91BF68E-257C-43E6-BDE9-672D4E3BFAFA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E91BF68E-257C-43E6-BDE9-672D4E3BFAFA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E91BF68E-257C-43E6-BDE9-672D4E3BFAFA}.Release|Any CPU.Build.0 = Release|Any CPU + {29EDED03-D2D6-415C-A17D-00806C52035A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {29EDED03-D2D6-415C-A17D-00806C52035A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {29EDED03-D2D6-415C-A17D-00806C52035A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {29EDED03-D2D6-415C-A17D-00806C52035A}.Release|Any CPU.Build.0 = Release|Any CPU + {1ECEFFEE-1040-40ED-9EB5-CE720A33058D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1ECEFFEE-1040-40ED-9EB5-CE720A33058D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1ECEFFEE-1040-40ED-9EB5-CE720A33058D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1ECEFFEE-1040-40ED-9EB5-CE720A33058D}.Release|Any CPU.Build.0 = Release|Any CPU + {0A1B8B61-268D-4061-B567-A47141C608E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0A1B8B61-268D-4061-B567-A47141C608E4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0A1B8B61-268D-4061-B567-A47141C608E4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0A1B8B61-268D-4061-B567-A47141C608E4}.Release|Any CPU.Build.0 = Release|Any CPU + {A69D007B-EAF0-4866-A8B4-A2EDF2614E56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A69D007B-EAF0-4866-A8B4-A2EDF2614E56}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A69D007B-EAF0-4866-A8B4-A2EDF2614E56}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A69D007B-EAF0-4866-A8B4-A2EDF2614E56}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d1d031514..21da41fe3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,12 @@ ### 5.0.1 - Aug 15 2022 -* There are now two packages - FSharp.Data.Core and FSharp.Data. The first does not include the type providers. - (Future revisions may split into `FSharp.Data.Json.Core`, `FSharp.Data.Html.Core` and so on). +* There are now multiple packages + * FSharp.Data -- includes everything + * FSharp.Data.Http -- http types/helpers + * FSharp.Data.Csv.Core -- csv types/helpers + * FSharp.Data.Json.Core -- json types/helpers + * FSharp.Data.Html.Core -- html types/helpers + * FSharp.Data.Xml.Core -- xml types/helpers ### 4.2.10 - Aug 12 2022 diff --git a/build.fsx b/build.fsx index 8b625467a..46d0a3f5f 100644 --- a/build.fsx +++ b/build.fsx @@ -36,9 +36,15 @@ let summary = "Library of F# type providers and data access tools" let description = """ - The FSharp.Data.Core and FSharp.Data packages contain type providers and utilities to access - common data formats (CSV, HTML, JSON and XML in your F# applications and scripts. It also - contains helpers for parsing CSV, HTML and JSON files and for sending HTTP requests.""" + The FSharp.Data packages contain type providers and utilities to access + common data formats (CSV, HTML, JSON and XML in your F# applications and scripts. + + * FSharp.Data -- includes everything + * FSharp.Data.Http -- http types/helpers + * FSharp.Data.Csv.Core -- csv types/helpers + * FSharp.Data.Json.Core -- json types/helpers + * FSharp.Data.Html.Core -- html types/helpers + * FSharp.Data.Xml.Core -- xml types/helpers""" let tags = "F# fsharp data typeprovider WorldBank CSV HTML CSS JSON XML HTTP linqpad-samples" @@ -136,13 +142,7 @@ Target.create "Pack" (fun _ -> ("PackageLicenseExpression", license) ("PackageReleaseNotes", releaseNotes) ("Summary", summary) - ("PackageDescription", description) - ("EnableSourceLink", "true") - ("PublishRepositoryUrl", "true") - ("EmbedUntrackedSources", "true") - ("IncludeSymbols", "true") - //("SymbolPackageFormat", "snupkg") - ] + ("PackageDescription", description) ] DotNet.pack (fun p -> diff --git a/docs/library/CsvFile.fsx b/docs/library/CsvFile.fsx index 736fec1ad..70bc22bf1 100644 --- a/docs/library/CsvFile.fsx +++ b/docs/library/CsvFile.fsx @@ -6,7 +6,8 @@ index: 2 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/CsvProvider.fsx b/docs/library/CsvProvider.fsx index 701e5d884..d62078e90 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -6,7 +6,8 @@ index: 1 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/HtmlCssSelectors.fsx b/docs/library/HtmlCssSelectors.fsx index 2b969124c..a93bb1450 100644 --- a/docs/library/HtmlCssSelectors.fsx +++ b/docs/library/HtmlCssSelectors.fsx @@ -6,8 +6,9 @@ index: 4 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Html.Core.dll" (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" diff --git a/docs/library/HtmlParser.fsx b/docs/library/HtmlParser.fsx index 618bf8231..78668932a 100644 --- a/docs/library/HtmlParser.fsx +++ b/docs/library/HtmlParser.fsx @@ -6,8 +6,9 @@ index: 3 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Html.Core.dll" (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" diff --git a/docs/library/HtmlProvider.fsx b/docs/library/HtmlProvider.fsx index bef0dbad4..532baee1c 100644 --- a/docs/library/HtmlProvider.fsx +++ b/docs/library/HtmlProvider.fsx @@ -6,7 +6,9 @@ index: 2 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Html.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX @@ -59,9 +61,10 @@ first row is headers. (This behaviour is likely to get smarter in later releases *) [] -let ResolutionFolder = __SOURCE_DIRECTORY__ +let F1_2017_URL = + "https://en.wikipedia.org/wiki/2017_FIA_Formula_One_World_Championship" -type F1_2017 = HtmlProvider<"../data/2017_F1.htm", ResolutionFolder=ResolutionFolder> +type F1_2017 = HtmlProvider (** The generated type provides a type space of tables that it has managed to parse out of the given HTML Document. @@ -70,12 +73,8 @@ entities exist then the table will simply be named `Tablexx` where xx is the pos The `Load` method allows reading the data from a file or web resource. We could also have used a web URL instead of a local file in the sample parameter of the type provider. The following sample calls the `Load` method with an URL that points to a live version of the same page on wikipedia. *) -let url = - "https://en.wikipedia.org/wiki/" - + "2017_FIA_Formula_One_World_Championship" - // Download the latest market depth information -let f1Calendar = F1_2017.Load(url).Tables.``Season calendar`` +let f1Calendar = F1_2017.Load(F1_2017_URL).Tables.``Season calendarEdit`` // Look at the most recent row. Note the 'Date' property // is of type 'DateTime' and 'Open' has a type 'decimal' diff --git a/docs/library/Http.fsx b/docs/library/Http.fsx index 85d160e8a..a69fecd1a 100644 --- a/docs/library/Http.fsx +++ b/docs/library/Http.fsx @@ -6,8 +6,7 @@ index: 1 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" diff --git a/docs/library/JsonProvider.fsx b/docs/library/JsonProvider.fsx index fe06b7947..a49a3aa9e 100644 --- a/docs/library/JsonProvider.fsx +++ b/docs/library/JsonProvider.fsx @@ -6,7 +6,8 @@ index: 3 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Json.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/JsonValue.fsx b/docs/library/JsonValue.fsx index f780c9c22..7d6092286 100644 --- a/docs/library/JsonValue.fsx +++ b/docs/library/JsonValue.fsx @@ -6,7 +6,8 @@ index: 5 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Json.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/WorldBank.fsx b/docs/library/WorldBank.fsx index b1e713974..d6ce9936f 100644 --- a/docs/library/WorldBank.fsx +++ b/docs/library/WorldBank.fsx @@ -6,7 +6,8 @@ index: 5 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.WorldBank.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/library/XmlProvider.fsx b/docs/library/XmlProvider.fsx index 183afcae9..a0f24d825 100644 --- a/docs/library/XmlProvider.fsx +++ b/docs/library/XmlProvider.fsx @@ -6,7 +6,9 @@ index: 4 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Xml.Core.dll" #r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" (*** condition: fsx ***) #if FSX diff --git a/docs/tutorials/JsonAnonymizer.fsx b/docs/tutorials/JsonAnonymizer.fsx index f8145c9f2..f7e1096b2 100644 --- a/docs/tutorials/JsonAnonymizer.fsx +++ b/docs/tutorials/JsonAnonymizer.fsx @@ -6,8 +6,8 @@ index: 1 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Json.Core.dll" (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" diff --git a/docs/tutorials/JsonToXml.fsx b/docs/tutorials/JsonToXml.fsx index f3742bfec..88e55b78d 100644 --- a/docs/tutorials/JsonToXml.fsx +++ b/docs/tutorials/JsonToXml.fsx @@ -6,8 +6,10 @@ index: 2 --- *) (*** condition: prepare ***) -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Core.dll" -#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Http.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Csv.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Json.Core.dll" +#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.Xml.Core.dll" (*** condition: fsx ***) #if FSX #r "nuget: FSharp.Data,{{fsdocs-package-version}}" diff --git a/nuget/FSharp.Data.Core.nuspec b/nuget/FSharp.Data.Core.nuspec deleted file mode 100644 index 99ddd79ce..000000000 --- a/nuget/FSharp.Data.Core.nuspec +++ /dev/null @@ -1,32 +0,0 @@ - - - - @project@ - FSharp.Data - @build.number@ - @authors@ - @authors@ - Apache-2.0 - https://fsprojects.github.io/FSharp.Data - https://raw.github.com/fsharp/FSharp.Data/master/misc/logo.png - false - @summary@ - @description@ - @releaseNotes@ - Copyright 2021 - @tags@ - - - - - - - - - - - - - - - diff --git a/nuget/FSharp.Data.nuspec b/nuget/FSharp.Data.nuspec deleted file mode 100755 index eea6ef7a4..000000000 --- a/nuget/FSharp.Data.nuspec +++ /dev/null @@ -1,44 +0,0 @@ - - - - @project@ - FSharp.Data - @build.number@ - @authors@ - @authors@ - Apache-2.0 - https://fsprojects.github.io/FSharp.Data - https://raw.github.com/fsharp/FSharp.Data/master/misc/logo.png - false - @summary@ - @description@ - @releaseNotes@ - Copyright 2021 - @tags@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/nuget/linqpad-samples/GitHub.linq b/nuget/linqpad-samples/GitHub.linq deleted file mode 100644 index 2bd722d42..000000000 --- a/nuget/linqpad-samples/GitHub.linq +++ /dev/null @@ -1,19 +0,0 @@ - - FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - <ProgramFilesX86>\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\4.3.0.0\FSharp.Core.dll - FSharp.Data - - -open FSharp.Data - -// Beware of rate limiting while running this sample: https://developer.github.com/v3/#rate-limiting -type GitHub = JsonProvider<"https://api.github.com/repos/fsharp/FSharp.Data/issues"> - -let topRecentlyUpdatedIssues = - GitHub.GetSamples() - |> Seq.filter (fun issue -> issue.State = "open") - |> Seq.sortBy (fun issue -> System.DateTime.Now - issue.UpdatedAt) - |> Seq.truncate 5 - -for issue in topRecentlyUpdatedIssues do - printfn "#%d %s" issue.Number issue.Title \ No newline at end of file diff --git a/nuget/linqpad-samples/Jira.linq b/nuget/linqpad-samples/Jira.linq deleted file mode 100644 index b6569d997..000000000 --- a/nuget/linqpad-samples/Jira.linq +++ /dev/null @@ -1,15 +0,0 @@ - - FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - <ProgramFilesX86>\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\4.3.0.0\FSharp.Core.dll - FSharp.Data - - -open FSharp.Data - -[] -let apiUrl = "https://jira.atlassian.com/rest/api/2/search?filter=-4" // all issues -type Jira = JsonProvider -let jira = Jira.Load(apiUrl) - -let tickets = jira.Issues |> Array.map (fun ticket -> (ticket.Id, ticket.Fields.Summary)) -tickets |> Dump \ No newline at end of file diff --git a/nuget/linqpad-samples/TypeInference.linq b/nuget/linqpad-samples/TypeInference.linq deleted file mode 100644 index 193198cd4..000000000 --- a/nuget/linqpad-samples/TypeInference.linq +++ /dev/null @@ -1,27 +0,0 @@ - - FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - <ProgramFilesX86>\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\4.3.0.0\FSharp.Core.dll - FSharp.Data - - -open FSharp.Data - -// The JsonProvider<...> takes one static parameter of type string. The parameter can be either a sample string or a sample file -// (relative to the current folder or online accessible via http or https). It is not likely that this could lead to ambiguities. -type Simple = JsonProvider<""" { "name":"John", "age":94 } """> -let simple = Simple.Parse(""" { "name":"Tomas", "age":4 } """) -simple.Age |> Dump -simple.Name |> Dump - -// A list may mix integers and floats. When the sample is a collection, the type provider generates a type -// that can be used to store all values in the sample. In this case, the resulting type is decimal, because one of the values is not an integer -type Numbers = JsonProvider<""" [1, 2, 3, 3.14] """> -Numbers.Parse(""" [1.2, 45.1, 98.2, 5] """) |> Dump - -// Other primitive types cannot be combined into a single type. For example, if the list contains numbers and strings. -// In this case, the provider generates two methods that can be used to get values that match one of the types: -type Mixed = JsonProvider<""" [1, 2, "hello", "world"] """> -let mixed = Mixed.Parse(""" [4, 5, "hello", "world" ] """) - -mixed.Numbers |> Seq.sum |> Dump -mixed.Strings |> String.concat ", " |> Dump \ No newline at end of file diff --git a/nuget/publish.cmd b/nuget/publish.cmd deleted file mode 100644 index 6a30dc533..000000000 --- a/nuget/publish.cmd +++ /dev/null @@ -1 +0,0 @@ -@for %%f in (..\bin\*.nupkg) do @..\packages\NuGet.CommandLine\tools\NuGet.exe push %%f \ No newline at end of file diff --git a/src/AssemblyInfo.Csv.Core.fs b/src/AssemblyInfo.Csv.Core.fs new file mode 100644 index 000000000..1435009f3 --- /dev/null +++ b/src/AssemblyInfo.Csv.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.Csv.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Html.Core.fs b/src/AssemblyInfo.Html.Core.fs new file mode 100644 index 000000000..abdf3989a --- /dev/null +++ b/src/AssemblyInfo.Html.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.Html.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Core.fs b/src/AssemblyInfo.Http.fs similarity index 85% rename from src/AssemblyInfo.Core.fs rename to src/AssemblyInfo.Http.fs index 52753a0be..6c5e57bcf 100644 --- a/src/AssemblyInfo.Core.fs +++ b/src/AssemblyInfo.Http.fs @@ -2,7 +2,7 @@ namespace System open System.Reflection -[] +[] [] [] [] @@ -10,7 +10,7 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Core" + let [] AssemblyTitle = "FSharp.Data.Http" let [] AssemblyProduct = "FSharp.Data" let [] AssemblyDescription = "Library of F# type providers and data access tools" let [] AssemblyVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Json.Core.fs b/src/AssemblyInfo.Json.Core.fs new file mode 100644 index 000000000..cd44992b1 --- /dev/null +++ b/src/AssemblyInfo.Json.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.Json.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.WorldBank.Core.fs b/src/AssemblyInfo.WorldBank.Core.fs new file mode 100644 index 000000000..5f7c194b3 --- /dev/null +++ b/src/AssemblyInfo.WorldBank.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.WorldBank.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Xml.Core.fs b/src/AssemblyInfo.Xml.Core.fs new file mode 100644 index 000000000..b2cc61a9b --- /dev/null +++ b/src/AssemblyInfo.Xml.Core.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FSharp.Data.Xml.Core" + let [] AssemblyProduct = "FSharp.Data" + let [] AssemblyDescription = "Library of F# type providers and data access tools" + let [] AssemblyVersion = "5.0.1.0" + let [] AssemblyFileVersion = "5.0.1.0" diff --git a/src/CommonProviderImplementation/ConversionsGenerator.fs b/src/CommonProviderImplementation/ConversionsGenerator.fs index 3a5d56fd4..3a9af5722 100644 --- a/src/CommonProviderImplementation/ConversionsGenerator.fs +++ b/src/CommonProviderImplementation/ConversionsGenerator.fs @@ -67,7 +67,7 @@ let getBackConversionQuotation missingValuesStr cultureStr typ value : Expr and converts it to /// an expression of other type - the type is specified by `field` -let convertStringValue missingValuesStr cultureStr (field: PrimitiveInferedProperty) = +let internal convertStringValue missingValuesStr cultureStr (field: PrimitiveInferedProperty) = let fieldName = field.Name let field = field.Value diff --git a/src/CommonProviderImplementation/Helpers.fs b/src/CommonProviderImplementation/Helpers.fs index 392b6f0b5..1ad38bd5e 100644 --- a/src/CommonProviderImplementation/Helpers.fs +++ b/src/CommonProviderImplementation/Helpers.fs @@ -743,6 +743,6 @@ module internal ProviderHelpers = spec.GeneratedType) -[] -[] +[] +[] do () diff --git a/src/CommonRuntime/Caching.fs b/src/CommonRuntime/Caching.fs index efcd624dc..37afa2a48 100644 --- a/src/CommonRuntime/Caching.fs +++ b/src/CommonRuntime/Caching.fs @@ -1,5 +1,5 @@ /// Implements caching using in-memory and local file system -module FSharp.Data.Runtime.Caching +module internal FSharp.Data.Runtime.Caching open System open System.Collections.Concurrent diff --git a/src/CommonRuntime/StructuralInference.fs b/src/CommonRuntime/StructuralInference.fs index cbd3941e8..630e77e8f 100644 --- a/src/CommonRuntime/StructuralInference.fs +++ b/src/CommonRuntime/StructuralInference.fs @@ -1,5 +1,5 @@ /// Implements type inference for unstructured documents like XML or JSON -module FSharp.Data.Runtime.StructuralInference +module internal FSharp.Data.Runtime.StructuralInference open System open System.Diagnostics @@ -97,8 +97,8 @@ let supportsUnitsOfMeasure typ = List.exists ((=) typ) numericTypes /// Returns a tag of a type - a tag represents a 'kind' of type /// (essentially it describes the different bottom types we have) -let typeTag = - function +let typeTag inferredType = + match inferredType with | InferedType.Record (name = n) -> InferedTypeTag.Record n | InferedType.Collection _ -> InferedTypeTag.Collection | InferedType.Null diff --git a/src/CommonRuntime/StructuralTypes.fs b/src/CommonRuntime/StructuralTypes.fs index 11483deb1..79bb4b51a 100644 --- a/src/CommonRuntime/StructuralTypes.fs +++ b/src/CommonRuntime/StructuralTypes.fs @@ -11,7 +11,7 @@ open FSharp.Data.Runtime /// /// Types that represent the result of static type inference. /// -type InferedProperty = +type internal InferedProperty = { Name: string mutable Type: InferedType } override x.ToString() = sprintf "%A" x @@ -19,7 +19,7 @@ type InferedProperty = /// For heterogeneous types (types that have multiple possible forms /// such as differently named XML nodes or records and arrays mixed together) /// this type represents the number of occurrences of individual forms -type InferedMultiplicity = +type internal InferedMultiplicity = | Single | OptionalSingle | Multiple @@ -27,7 +27,7 @@ type InferedMultiplicity = /// For heterogeneous types, this represents the tag that defines the form /// (that is either primitive type, collection, named record etc.) [] -type InferedTypeTag = +type internal InferedTypeTag = // Unknown type | Null // Primitive types @@ -61,7 +61,7 @@ type InferedTypeTag = /// we would lose information about multiplicity and so we would not be able /// to generate nicer types! [] -type InferedType = +type internal InferedType = | Primitive of typ: Type * unit: option * optional: bool * shouldOverrideOnMerge: bool | Record of name: string option * fields: InferedProperty list * optional: bool | Json of typ: InferedType * optional: bool @@ -141,7 +141,7 @@ type InferedType = // ------------------------------------------------------------------------------------------------ // Additional operations for working with the inferred representation -type InferedTypeTag with +type internal InferedTypeTag with member x.NiceName = match x with | Null -> failwith "Null nodes should be skipped" @@ -184,21 +184,21 @@ type InferedTypeTag with /// Dummy type to represent that only "0" was found. /// Will be generated as 'int', unless it's converted to Bit. -type Bit0 = Bit0 +type internal Bit0 = Bit0 /// Dummy type to represent that only "1" was found /// Will be generated as 'int', unless it's converted to Bit -type Bit1 = Bit1 +type internal Bit1 = Bit1 /// Dummy type to represent that only one of "0" and "1" were found /// Will be generated as a 'bool', unless it's converted to another numerical type -type Bit = Bit +type internal Bit = Bit // ------------------------------------------------------------------------------------------------ /// Represents a transformation of a type [] -type TypeWrapper = +type internal TypeWrapper = /// No transformation will be made to the type | None /// The type T will be converter to type T option @@ -211,7 +211,7 @@ type TypeWrapper = /// Represents type information about a primitive value (used mainly in the CSV provider) /// This type captures the type, unit of measure and handling of missing values (if we /// infer that the value may be missing, we can generate option or nullable) -type PrimitiveInferedValue = +type internal PrimitiveInferedValue = { InferedType: Type RuntimeType: Type UnitOfMeasure: Type option @@ -236,7 +236,7 @@ type PrimitiveInferedValue = /// Represents type information about a primitive property (used mainly in the CSV provider) /// This type captures the type, unit of measure and handling of missing values (if we /// infer that the value may be missing, we can generate option or nullable) -type PrimitiveInferedProperty = +type internal PrimitiveInferedProperty = { Name: string Value: PrimitiveInferedValue } static member Create(name, typ, (typWrapper: TypeWrapper), unit) = diff --git a/src/Csv/CsvInference.fs b/src/Csv/CsvInference.fs index e5139a879..d228e03a0 100644 --- a/src/Csv/CsvInference.fs +++ b/src/Csv/CsvInference.fs @@ -414,7 +414,7 @@ type CsvFile with /// - Assumes all columns can have missing values /// - when set to true, inference will prefer to use the option type instead of nullable types, double.NaN or "" for missing values /// - optional function to resolve Units of Measure - member x.InferColumnTypes + member internal x.InferColumnTypes ( inferRows, missingValues, diff --git a/src/FSharp.Data.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Core/InternalsVisibleTo.fs deleted file mode 100644 index cc29667cc..000000000 --- a/src/FSharp.Data.Core/InternalsVisibleTo.fs +++ /dev/null @@ -1,9 +0,0 @@ -namespace FSharp.Data - -open System.Runtime.CompilerServices - -[] -[] -[] -[] -do () diff --git a/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj b/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj new file mode 100644 index 000000000..582667ec5 --- /dev/null +++ b/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj @@ -0,0 +1,29 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + + true + + + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.Csv.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Csv.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..04aff9db8 --- /dev/null +++ b/src/FSharp.Data.Csv.Core/InternalsVisibleTo.fs @@ -0,0 +1,10 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Core/paket.references b/src/FSharp.Data.Csv.Core/paket.references similarity index 100% rename from src/FSharp.Data.Core/paket.references rename to src/FSharp.Data.Csv.Core/paket.references diff --git a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj index b0a54e9bc..8fd29d917 100755 --- a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj +++ b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj @@ -7,9 +7,6 @@ --warnon:1182 false false - true - ..\keyfile.snk - false true @@ -41,7 +38,12 @@ - + + + + + + diff --git a/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj b/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj new file mode 100644 index 000000000..a5452d5f2 --- /dev/null +++ b/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj @@ -0,0 +1,35 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + + true + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.Html.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Html.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..73b5e6d63 --- /dev/null +++ b/src/FSharp.Data.Html.Core/InternalsVisibleTo.fs @@ -0,0 +1,9 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Html.Core/paket.references b/src/FSharp.Data.Html.Core/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.Html.Core/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data.Core/FSharp.Data.Core.fsproj b/src/FSharp.Data.Http/FSharp.Data.Http.fsproj similarity index 50% rename from src/FSharp.Data.Core/FSharp.Data.Core.fsproj rename to src/FSharp.Data.Http/FSharp.Data.Http.fsproj index ca840d442..d2b6c5887 100644 --- a/src/FSharp.Data.Core/FSharp.Data.Core.fsproj +++ b/src/FSharp.Data.Http/FSharp.Data.Http.fsproj @@ -7,9 +7,6 @@ true false logo.png - false - true - ..\keyfile.snk true @@ -23,31 +20,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/FSharp.Data.Http/InternalsVisibleTo.fs b/src/FSharp.Data.Http/InternalsVisibleTo.fs new file mode 100644 index 000000000..b514a2b6b --- /dev/null +++ b/src/FSharp.Data.Http/InternalsVisibleTo.fs @@ -0,0 +1,14 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +[] +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Http/paket.references b/src/FSharp.Data.Http/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.Http/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj b/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj new file mode 100644 index 000000000..5220531cb --- /dev/null +++ b/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj @@ -0,0 +1,31 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + + true + + + + + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.Json.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Json.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..a59db0192 --- /dev/null +++ b/src/FSharp.Data.Json.Core/InternalsVisibleTo.fs @@ -0,0 +1,11 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Json.Core/paket.references b/src/FSharp.Data.Json.Core/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.Json.Core/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj b/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj new file mode 100644 index 000000000..8f38d8784 --- /dev/null +++ b/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj @@ -0,0 +1,27 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + + true + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.WorldBank.Core/InternalsVisibleTo.fs b/src/FSharp.Data.WorldBank.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..73b5e6d63 --- /dev/null +++ b/src/FSharp.Data.WorldBank.Core/InternalsVisibleTo.fs @@ -0,0 +1,9 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.WorldBank.Core/paket.references b/src/FSharp.Data.WorldBank.Core/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.WorldBank.Core/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj b/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj new file mode 100644 index 000000000..97ab438b1 --- /dev/null +++ b/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj @@ -0,0 +1,30 @@ + + + + Library + netstandard2.0 + --warnon:1182 --nowarn:10001 + true + false + logo.png + + true + + + + + + + + + + + + + + + + + + + diff --git a/src/FSharp.Data.Xml.Core/InternalsVisibleTo.fs b/src/FSharp.Data.Xml.Core/InternalsVisibleTo.fs new file mode 100644 index 000000000..73b5e6d63 --- /dev/null +++ b/src/FSharp.Data.Xml.Core/InternalsVisibleTo.fs @@ -0,0 +1,9 @@ +namespace FSharp.Data + +open System.Runtime.CompilerServices + +[] +[] +[] +[] +do () diff --git a/src/FSharp.Data.Xml.Core/paket.references b/src/FSharp.Data.Xml.Core/paket.references new file mode 100644 index 000000000..c89b441a0 --- /dev/null +++ b/src/FSharp.Data.Xml.Core/paket.references @@ -0,0 +1,2 @@ +Microsoft.SourceLink.GitHub +FSharp.Core diff --git a/src/FSharp.Data/FSharp.Data.fsproj b/src/FSharp.Data/FSharp.Data.fsproj index 00a3de16e..9c1dbdd10 100755 --- a/src/FSharp.Data/FSharp.Data.fsproj +++ b/src/FSharp.Data/FSharp.Data.fsproj @@ -9,9 +9,6 @@ logo.png typeproviders typeproviders - false - true - ..\keyfile.snk true @@ -25,7 +22,12 @@ true all - + + + + + + diff --git a/src/Html/HtmlInference.fs b/src/Html/HtmlInference.fs index 8882a4736..03db0ffcb 100644 --- a/src/Html/HtmlInference.fs +++ b/src/Html/HtmlInference.fs @@ -7,14 +7,14 @@ open FSharp.Data.Runtime open FSharp.Data.Runtime.StructuralInference open FSharp.Data.Runtime.StructuralTypes -type Parameters = +type internal Parameters = { MissingValues: string[] CultureInfo: CultureInfo UnitsOfMeasureProvider: IUnitsOfMeasureProvider PreferOptionals: bool InferenceMode: InferenceMode' } -let inferColumns parameters (headerNamesAndUnits: _[]) rows = +let internal inferColumns parameters (headerNamesAndUnits: _[]) rows = let inferRows = 0 let schema = Array.init headerNamesAndUnits.Length (fun _ -> None) @@ -32,7 +32,7 @@ let inferColumns parameters (headerNamesAndUnits: _[]) rows = parameters.PreferOptionals parameters.UnitsOfMeasureProvider -let inferHeaders parameters (rows: string[][]) = +let internal inferHeaders parameters (rows: string[][]) = if rows.Length <= 2 then false, None, None, None //Not enough info to infer anything, assume first row data else @@ -51,7 +51,7 @@ let inferHeaders parameters (rows: string[][]) = let headerNames, units = Array.unzip headerNamesAndUnits true, Some headerNames, Some units, Some dataRowsType -let inferListType parameters (values: string[]) = +let internal inferListType parameters (values: string[]) = if values.Length > 0 then let inferedtype value = diff --git a/src/Html/HtmlParser.fs b/src/Html/HtmlParser.fs index 5757ca865..1ab2ff3c7 100644 --- a/src/Html/HtmlParser.fs +++ b/src/Html/HtmlParser.fs @@ -93,20 +93,20 @@ module internal HtmlParser = | CDATAMode -> "cdata" type HtmlState = - { Attributes: (CharList * CharList) list ref - CurrentTag: CharList ref - Content: CharList ref - HasFormattedParent: bool ref - InsertionMode: InsertionMode ref - Tokens: HtmlToken list ref + { mutable Attributes: (CharList * CharList) list + mutable CurrentTag: CharList + mutable Content: CharList + mutable HasFormattedParent: bool + mutable InsertionMode: InsertionMode + mutable Tokens: HtmlToken list Reader: TextReader } static member Create(reader: TextReader) = - { Attributes = ref [] - CurrentTag = ref CharList.Empty - Content = ref CharList.Empty - HasFormattedParent = ref false - InsertionMode = ref DefaultMode - Tokens = ref [] + { Attributes = [] + CurrentTag = CharList.Empty + Content = CharList.Empty + HasFormattedParent = false + InsertionMode = DefaultMode + Tokens = [] Reader = reader } member x.Pop() = x.Reader.Read() |> ignore @@ -116,30 +116,28 @@ module internal HtmlParser = [| 0 .. (count - 1) |] |> Array.map (fun _ -> x.Reader.ReadChar()) - member x.Contents = (!x.Content).ToString() - member x.ContentLength = (!x.Content).Length + member x.Contents = x.Content.ToString() + member x.ContentLength = x.Content.Length member x.NewAttribute() = - x.Attributes - := (CharList.Empty, CharList.Empty) - :: (!x.Attributes) + x.Attributes <- (CharList.Empty, CharList.Empty) :: x.Attributes member x.ConsAttrName() = - match !x.Attributes with + match x.Attributes with | [] -> x.NewAttribute() x.ConsAttrName() | (h, _) :: _ -> h.Cons(Char.ToLowerInvariant(x.Reader.ReadChar())) - member x.CurrentTagName() = (!x.CurrentTag).ToString().Trim() + member x.CurrentTagName() = x.CurrentTag.ToString().Trim() member x.CurrentAttrName() = - match !x.Attributes with + match x.Attributes with | [] -> String.Empty | (h, _) :: _ -> h.ToString() member x.ConsAttrValue(c) = - match !x.Attributes with + match x.Attributes with | [] -> x.NewAttribute() x.ConsAttrValue(c) @@ -148,7 +146,7 @@ module internal HtmlParser = member x.ConsAttrValue() = x.ConsAttrValue(x.Reader.ReadChar()) member x.GetAttributes() = - !x.Attributes + x.Attributes |> List.choose (fun (key, value) -> if key.Length > 0 then Some @@ -158,12 +156,12 @@ module internal HtmlParser = |> List.rev member x.EmitSelfClosingTag() = - let name = (!x.CurrentTag).ToString().Trim() + let name = x.CurrentTag.ToString().Trim() let result = Tag(true, name, x.GetAttributes()) - x.CurrentTag := CharList.Empty - x.InsertionMode := DefaultMode - x.Attributes := [] - x.Tokens := result :: !x.Tokens + x.CurrentTag <- CharList.Empty + x.InsertionMode <- DefaultMode + x.Attributes <- [] + x.Tokens <- result :: x.Tokens member x.IsFormattedTag = match x.CurrentTagName().ToLower() with @@ -177,7 +175,7 @@ module internal HtmlParser = | _ -> false member x.EmitTag(isEnd) = - let name = (!x.CurrentTag).ToString().Trim() + let name = x.CurrentTag.ToString().Trim() let result = if isEnd then @@ -192,38 +190,37 @@ module internal HtmlParser = // pre is the only default formatted tag, nested pres are not // allowed in the spec. if x.IsFormattedTag then - x.HasFormattedParent := not isEnd + x.HasFormattedParent <- not isEnd else - x.HasFormattedParent - := !x.HasFormattedParent || x.IsFormattedTag + x.HasFormattedParent <- x.HasFormattedParent || x.IsFormattedTag - x.InsertionMode - := if x.IsScriptTag && (not isEnd) then + x.InsertionMode <- + if x.IsScriptTag && (not isEnd) then ScriptMode else DefaultMode - x.CurrentTag := CharList.Empty - x.Attributes := [] - x.Tokens := result :: !x.Tokens + x.CurrentTag <- CharList.Empty + x.Attributes <- [] + x.Tokens <- result :: x.Tokens member x.EmitToAttributeValue() = - assert (!x.InsertionMode = InsertionMode.CharRefMode) - let content = (!x.Content).ToString() |> HtmlCharRefs.substitute + assert (x.InsertionMode = InsertionMode.CharRefMode) + let content = x.Content.ToString() |> HtmlCharRefs.substitute for c in content.ToCharArray() do x.ConsAttrValue c - x.Content := CharList.Empty - x.InsertionMode := DefaultMode + x.Content <- CharList.Empty + x.InsertionMode <- DefaultMode member x.Emit() : unit = let result = - let content = (!x.Content).ToString() + let content = x.Content.ToString() - match !x.InsertionMode with + match x.InsertionMode with | DefaultMode -> - if !x.HasFormattedParent then + if x.HasFormattedParent then Text content else let normalizedContent = wsRegex.Value.Replace(content, " ") @@ -238,24 +235,24 @@ module internal HtmlParser = | DocTypeMode -> DocType content | CDATAMode -> CData(content.Replace("", "")) - x.Content := CharList.Empty - x.InsertionMode := DefaultMode + x.Content <- CharList.Empty + x.InsertionMode <- DefaultMode match result with | Text t when String.IsNullOrEmpty(t) -> () - | _ -> x.Tokens := result :: !x.Tokens + | _ -> x.Tokens <- result :: x.Tokens - member x.Cons() = (!x.Content).Cons(x.Reader.ReadChar()) - member x.Cons(char) = (!x.Content).Cons(char) - member x.Cons(char) = Array.iter ((!x.Content).Cons) char + member x.Cons() = x.Content.Cons(x.Reader.ReadChar()) + member x.Cons(char) = x.Content.Cons(char) + member x.Cons(char) = Array.iter (x.Content.Cons) char member x.Cons(char: string) = x.Cons(char.ToCharArray()) member x.ConsTag() = match x.Reader.ReadChar() with | TextParser.Whitespace _ -> () - | a -> (!x.CurrentTag).Cons(Char.ToLowerInvariant a) + | a -> x.CurrentTag.Cons(Char.ToLowerInvariant a) - member x.ClearContent() = (!x.Content).Clear() + member x.ClearContent() = x.Content.Clear() // Tokenises a stream into a sequence of HTML tokens. let private tokenise reader = @@ -269,15 +266,15 @@ module internal HtmlParser = else state.Pop() tagOpen state - | TextParser.EndOfFile _ -> state.Tokens := EOF :: !state.Tokens + | TextParser.EndOfFile _ -> state.Tokens <- EOF :: state.Tokens | '&' -> if state.ContentLength > 0 then state.Emit() else - state.InsertionMode := CharRefMode + state.InsertionMode <- CharRefMode charRef state | _ -> - match !state.InsertionMode with + match state.InsertionMode with | DefaultMode -> state.Cons() data state @@ -541,7 +538,7 @@ module internal HtmlParser = | '>' -> state.Cons([| '<'; '/' |]) state.Cons(state.CurrentTagName()) - (!state.CurrentTag).Clear() + state.CurrentTag.Clear() script state | TextParser.Letter _ -> state.ConsTag() @@ -598,7 +595,7 @@ module internal HtmlParser = | _ -> state.Cons([| '<'; '/' |]) state.Cons(state.CurrentTagName()) - (!state.CurrentTag).Clear() + state.CurrentTag.Clear() script state and charRef state = @@ -635,7 +632,7 @@ module internal HtmlParser = and bogusComment state = let rec bogusComment' (state: HtmlState) = let exitBogusComment state = - state.InsertionMode := CommentMode + state.InsertionMode <- CommentMode state.Emit() match state.Peek() with @@ -667,10 +664,10 @@ module internal HtmlParser = cData (i + 1) state | '>' when i = 2 -> state.Cons() - state.InsertionMode := CDATAMode + state.InsertionMode <- CDATAMode state.Emit() | TextParser.EndOfFile _ -> - state.InsertionMode := CDATAMode + state.InsertionMode <- CDATAMode state.Emit() | _ -> state.Cons() @@ -680,7 +677,7 @@ module internal HtmlParser = match state.Peek() with | '>' -> state.Pop() - state.InsertionMode := DocTypeMode + state.InsertionMode <- DocTypeMode state.Emit() | _ -> state.Cons() @@ -692,7 +689,7 @@ module internal HtmlParser = state.Pop() commentEndDash state | TextParser.EndOfFile _ -> - state.InsertionMode := CommentMode + state.InsertionMode <- CommentMode state.Emit() | _ -> state.Cons() @@ -704,7 +701,7 @@ module internal HtmlParser = state.Pop() commentEndState state | TextParser.EndOfFile _ -> - state.InsertionMode := CommentMode + state.InsertionMode <- CommentMode state.Emit() | _ -> state.Cons() @@ -714,10 +711,10 @@ module internal HtmlParser = match state.Peek() with | '>' -> state.Pop() - state.InsertionMode := CommentMode + state.InsertionMode <- CommentMode state.Emit() | TextParser.EndOfFile _ -> - state.InsertionMode := CommentMode + state.InsertionMode <- CommentMode state.Emit() | _ -> state.Cons() @@ -843,7 +840,7 @@ module internal HtmlParser = state.EmitTag(false) | '&' -> assert (state.ContentLength = 0) - state.InsertionMode := InsertionMode.CharRefMode + state.InsertionMode <- InsertionMode.CharRefMode attributeValueUnquotedCharRef [ '/'; '>' ] state | _ -> state.ConsAttrValue() @@ -865,7 +862,7 @@ module internal HtmlParser = afterAttributeValueQuoted state | '&' -> assert (state.ContentLength = 0) - state.InsertionMode := InsertionMode.CharRefMode + state.InsertionMode <- InsertionMode.CharRefMode attributeValueQuotedCharRef quote state | _ -> state.ConsAttrValue() @@ -919,13 +916,13 @@ module internal HtmlParser = state.NewAttribute() attributeName state - let next = ref (state.Reader.Peek()) + let mutable next = state.Reader.Peek() - while !next <> -1 do + while next <> -1 do data state - next := state.Reader.Peek() + next <- state.Reader.Peek() - !state.Tokens |> List.rev + state.Tokens |> List.rev let private parse reader = let canNotHaveChildren (name: string) = diff --git a/src/Html/HtmlRuntime.fs b/src/Html/HtmlRuntime.fs index e7fbcf21a..8a5ca62c6 100644 --- a/src/Html/HtmlRuntime.fs +++ b/src/Html/HtmlRuntime.fs @@ -30,18 +30,33 @@ type HtmlTableCell = | Cell (_, d) -> d /// Representation of an HTML table cell -type HtmlTable = - { Name: string - HeaderNamesAndUnits: (string * Type option)[] option // always set at designtime, never at runtime - InferedProperties: PrimitiveInferedProperty list option // sometimes set at designtime, never at runtime - HasHeaders: bool option // always set at designtime, never at runtime - Rows: string[][] - Html: HtmlNode } +type HtmlTable + internal ( + name: string, + headerNamesAndUnits: (string * Type option)[] option, // always set at designtime, never at runtime + inferedProperties: PrimitiveInferedProperty list option, // sometimes set at designtime, never at runtime + hasHeaders: bool option, // always set at designtime, never at runtime + rows: string[][], + html: HtmlNode + ) = + member _.Name = name + + // always set at designtime, never at runtime + member internal _.HeaderNamesAndUnits = headerNamesAndUnits - override x.ToString() = + // sometimes set at designtime, never at runtime + member internal _.InferedProperties = inferedProperties + + member _.HasHeaders = hasHeaders // always set at designtime, never at runtime + + member _.Rows = rows + + member _.Html = html + + override _.ToString() = let sb = StringBuilder() - sb.AppendLine x.Name |> ignore - let data = array2D x.Rows + sb.AppendLine name |> ignore + let data = array2D rows let rows = data.GetLength(0) let columns = data.GetLength(1) let widths = Array.zeroCreate columns @@ -90,10 +105,11 @@ type HtmlDefinitionList = sb.ToString() /// Representation of an HTML table, list, or definition list -type HtmlObject = +type HtmlObjectDescription = | Table of HtmlTable | List of HtmlList | DefinitionList of HtmlDefinitionList + member x.Name = match x with | Table t -> t.Name @@ -280,13 +296,13 @@ module HtmlRuntime = | HtmlElement ("th", _, contents) -> Cell(true, getContents contents) | _ -> Empty - let col_i = ref colindex + let mutable col_i = colindex - while !col_i < res.[rowindex].Length - && res.[rowindex].[!col_i] <> Empty do - incr (col_i) + while col_i < res.[rowindex].Length + && res.[rowindex].[col_i] <> Empty do + col_i <- col_i + 1 - for j in [ !col_i .. (!col_i + colSpan cell - 1) ] do + for j in [ col_i .. (col_i + colSpan cell - 1) ] do for i in [ rowindex .. (rowindex + rowSpan cell - 1) ] do if i < rows.Length && j < numberOfColumns then res.[i].[j] <- data @@ -340,12 +356,7 @@ module HtmlRuntime = let rows = res |> Array.map (Array.map (fun x -> x.Data)) - { Name = name - HeaderNamesAndUnits = headerNamesAndUnits - InferedProperties = inferedProperties - HasHeaders = hasHeaders - Rows = rows - Html = table } + HtmlTable(name, headerNamesAndUnits, inferedProperties, hasHeaders, rows, table) |> Some let private parseList makeUnique index (list: HtmlNode, parents: HtmlNode list) = @@ -406,7 +417,7 @@ module HtmlRuntime = Html = definitionList } |> Some - let getTables inferenceParameters includeLayoutTables (doc: HtmlDocument) = + let internal getTables inferenceParameters includeLayoutTables (doc: HtmlDocument) = let tableElements = doc.DescendantsWithPath "table" |> List.ofSeq let tableElements = @@ -438,7 +449,7 @@ module HtmlRuntime = |> List.mapi (parseDefinitionList (NameUtils.uniqueGenerator id)) |> List.choose id - let getHtmlObjects inferenceParameters includeLayoutTables (doc: HtmlDocument) = + let internal getHtmlObjects inferenceParameters includeLayoutTables (doc: HtmlDocument) = Seq.concat [ doc |> getTables inferenceParameters includeLayoutTables diff --git a/src/Json/JsonConversionsGenerator.fs b/src/Json/JsonConversionsGenerator.fs index ab2ab2988..c0beb4d22 100644 --- a/src/Json/JsonConversionsGenerator.fs +++ b/src/Json/JsonConversionsGenerator.fs @@ -41,14 +41,14 @@ let getConversionQuotation missingValuesStr cultureStr typ (value: Expr and converts it to /// an expression of other type - the type is specified by `field` -let convertJsonValue missingValuesStr cultureStr canPassAllConversionCallingTypes (field: PrimitiveInferedValue) = +let internal convertJsonValue missingValuesStr cultureStr canPassAllConversionCallingTypes (field: PrimitiveInferedValue) = let returnType = diff --git a/src/Json/JsonInference.fs b/src/Json/JsonInference.fs index f42e41da9..1699e66b9 100644 --- a/src/Json/JsonInference.fs +++ b/src/Json/JsonInference.fs @@ -14,7 +14,7 @@ open FSharp.Data.Runtime.StructuralInference /// functionality is handled in `StructureInference` (most notably, by /// `inferCollectionType` and various functions to find common subtype), so /// here we just need to infer types of primitive JSON values. -let rec inferType unitsOfMeasureProvider inferenceMode cultureInfo parentName json = +let rec internal inferType unitsOfMeasureProvider inferenceMode cultureInfo parentName json = let inline inRangeDecimal lo hi (v: decimal) : bool = (v >= decimal lo) && (v <= decimal hi) let inline inRangeFloat lo hi (v: float) : bool = (v >= float lo) && (v <= float hi) let inline isIntegerDecimal (v: decimal) : bool = Math.Round v = v diff --git a/src/Runtime.fs b/src/Runtime.fs index c8067358e..5ab8e0003 100644 --- a/src/Runtime.fs +++ b/src/Runtime.fs @@ -4,5 +4,5 @@ open System.Runtime.CompilerServices open FSharp.Core.CompilerServices [] -[] +[] do () diff --git a/src/Xml/XmlInference.fs b/src/Xml/XmlInference.fs index 66de70472..fc63fd9a0 100644 --- a/src/Xml/XmlInference.fs +++ b/src/Xml/XmlInference.fs @@ -2,7 +2,7 @@ // Implements type inference for XML // -------------------------------------------------------------------------------------- -module ProviderImplementation.XmlInference +module internal ProviderImplementation.XmlInference open System open System.Xml.Linq diff --git a/src/Xml/XsdInference.fs b/src/Xml/XsdInference.fs index 5f073db5e..81fc8c739 100644 --- a/src/Xml/XsdInference.fs +++ b/src/Xml/XsdInference.fs @@ -208,7 +208,7 @@ module XsdParsing = /// Element definitions in a schema are mapped to InferedType instances -module XsdInference = +module internal XsdInference = open XsdModel open FSharp.Data.Runtime.StructuralTypes diff --git a/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj index 15b2c9d70..e3d286443 100644 --- a/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj +++ b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj @@ -19,7 +19,12 @@ - + + + + + + diff --git a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj index c88316bfa..7e937280f 100644 --- a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj +++ b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj @@ -31,7 +31,12 @@ - + + + + + + \ No newline at end of file diff --git a/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs b/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs index 7cc433971..6be3f42c7 100644 --- a/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.HtmlCharRefs +module FSharp.Data.Tests.HtmlCharRefs open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs b/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs index e7bbe2711..aa8a701ad 100644 --- a/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.HtmlCssSelectors +module FSharp.Data.Tests.HtmlCssSelectors open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Core.Tests/HtmlOperations.fs b/tests/FSharp.Data.Core.Tests/HtmlOperations.fs index bcba7aade..b8cb4223d 100644 --- a/tests/FSharp.Data.Core.Tests/HtmlOperations.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlOperations.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.HtmlOperations +module FSharp.Data.Tests.HtmlOperations open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Core.Tests/Http.fs b/tests/FSharp.Data.Core.Tests/Http.fs index 19fd57149..30b240e7a 100644 --- a/tests/FSharp.Data.Core.Tests/Http.fs +++ b/tests/FSharp.Data.Core.Tests/Http.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.Http +module FSharp.Data.Tests.Http open FsUnit open NUnit.Framework diff --git a/tests/FSharp.Data.Core.Tests/JsonConversions.fs b/tests/FSharp.Data.Core.Tests/JsonConversions.fs index 259cf5178..ef8a8917f 100644 --- a/tests/FSharp.Data.Core.Tests/JsonConversions.fs +++ b/tests/FSharp.Data.Core.Tests/JsonConversions.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.JsonConversions +module FSharp.Data.Tests.JsonConversions open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.Core.Tests/JsonValue.fs b/tests/FSharp.Data.Core.Tests/JsonValue.fs index cf9ffd894..1e0ee911a 100644 --- a/tests/FSharp.Data.Core.Tests/JsonValue.fs +++ b/tests/FSharp.Data.Core.Tests/JsonValue.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.JsonValue +module FSharp.Data.Tests.JsonValue open NUnit.Framework open System diff --git a/tests/FSharp.Data.Core.Tests/NameUtils.fs b/tests/FSharp.Data.Core.Tests/NameUtils.fs index 19811b2a7..6f902dd57 100644 --- a/tests/FSharp.Data.Core.Tests/NameUtils.fs +++ b/tests/FSharp.Data.Core.Tests/NameUtils.fs @@ -2,7 +2,7 @@ // Tests for a utility that generates nice PascalCase and camelCase names for members // -------------------------------------------------------------------------------------- -module FSharp.Data.Core.Tests.NameUtils +module FSharp.Data.Tests.NameUtils open FsUnit open NUnit.Framework diff --git a/tests/FSharp.Data.Core.Tests/TextConversions.fs b/tests/FSharp.Data.Core.Tests/TextConversions.fs index 6a3dc370f..16d064145 100644 --- a/tests/FSharp.Data.Core.Tests/TextConversions.fs +++ b/tests/FSharp.Data.Core.Tests/TextConversions.fs @@ -1,4 +1,4 @@ -module FSharp.Data.Core.Tests.Conversions +module FSharp.Data.Tests.Conversions open NUnit.Framework open FsUnit diff --git a/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs b/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs index 72a589f9a..5e13f1c50 100644 --- a/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs +++ b/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs @@ -3,6 +3,9 @@ module FSharp.Data.DesignTime.Tests.InferenceTests open FsUnit open System open System.Globalization +open System.Xml +open System.Xml.Linq +open System.Xml.Schema open NUnit.Framework open FSharp.Data open FSharp.Data.Runtime @@ -12,19 +15,18 @@ open FSharp.Data.Runtime.StructuralInference open ProviderImplementation /// A collection containing just one type -let SimpleCollection typ = +let internal SimpleCollection typ = InferedType.Collection([ typeTag typ], Map.ofSeq [typeTag typ, (InferedMultiplicity.Multiple, typ)]) let culture = TextRuntime.GetCulture "" -let inferenceMode = InferenceMode'.ValuesOnly -let unitsOfMeasureProvider = ProviderHelpers.unitsOfMeasureProvider +let internal inferenceMode = InferenceMode'.ValuesOnly +let internal unitsOfMeasureProvider = ProviderHelpers.unitsOfMeasureProvider -let inferType (csv:CsvFile) inferRows missingValues cultureInfo schema assumeMissingValues preferOptionals = +let internal inferType (csv:CsvFile) inferRows missingValues cultureInfo schema assumeMissingValues preferOptionals = let headerNamesAndUnits, schema = parseHeaders csv.Headers csv.NumberOfColumns schema unitsOfMeasureProvider inferType headerNamesAndUnits schema (csv.Rows |> Seq.map (fun x -> x.Columns)) inferRows missingValues inferenceMode cultureInfo assumeMissingValues preferOptionals unitsOfMeasureProvider -let toRecord fields = InferedType.Record(None, fields, false) - +let internal toRecord fields = InferedType.Record(None, fields, false) [] let ``List.pairBy helper function works``() = @@ -383,7 +385,6 @@ let ``Inference with % suffix``() = let expected = toRecord [ propFloat ; propInteger ] actual |> should equal expected - [] let ``Inference with $ prefix``() = let source = CsvFile.Parse("float,integer\n$2.0,$2\n$4.0,$3\n") @@ -393,27 +394,21 @@ let ``Inference with $ prefix``() = let expected = toRecord [ propFloat ; propInteger ] actual |> should equal expected - -open System.Xml -open System.Xml.Linq -open System.Xml.Schema - -let getInferedTypeFromSamples samples = +let internal getInferedTypeFromSamples samples = let culture = System.Globalization.CultureInfo.InvariantCulture samples |> Array.map XElement.Parse |> XmlInference.inferType unitsOfMeasureProvider inferenceMode culture false false |> Seq.fold (subtypeInfered false) InferedType.Top - -let getInferedTypeFromSchema xsd = +let internal getInferedTypeFromSchema xsd = xsd |> XmlSchema.parseSchema "" |> XsdParsing.getElements |> List.ofSeq |> XsdInference.inferElements -let isValid xsd = +let internal isValid xsd = let xmlSchemaSet = XmlSchema.parseSchema "" xsd fun xml -> let settings = XmlReaderSettings(ValidationType = ValidationType.Schema) @@ -426,8 +421,7 @@ let isValid xsd = printfn "%s/n%s" e.Message xml false - -let getInferedTypes xsd xmlSamples = +let internal getInferedTypes xsd xmlSamples = //printfn "%s/n---------------------------------------------" xsd let isValid = isValid xsd for xml in xmlSamples do @@ -440,14 +434,11 @@ let getInferedTypes xsd xmlSamples = //printfn "%A" inferedTypeFromSamples inferedTypeFromSchema, inferedTypeFromSamples - - -let check xsd xmlSamples = +let internal check xsd xmlSamples = //printfn "checking schema and samples" let inferedTypeFromSchema, inferedTypeFromSamples = getInferedTypes xsd xmlSamples inferedTypeFromSchema |> should equal inferedTypeFromSamples - [] let ``at least one global complex element is needed``() = let xsd = """ diff --git a/tests/FSharp.Data.DesignTime.Tests/SignatureTestCases.config b/tests/FSharp.Data.DesignTime.Tests/SignatureTestCases.config index 63a6c5092..6f6688a33 100644 --- a/tests/FSharp.Data.DesignTime.Tests/SignatureTestCases.config +++ b/tests/FSharp.Data.DesignTime.Tests/SignatureTestCases.config @@ -207,5 +207,4 @@ Html,doctor_who3.html,false,false, Html,SimpleHtmlLists.html,false,false, Html,EmptyDefinitionLists.html,false,false, Html,zoopla.html,false,false, -Html,zoopla2.html,false,false, -WorldBank,World Development Indicators;Global Financial Development,true +Html,zoopla2.html,false,false, \ No newline at end of file diff --git a/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs b/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs index 3bf7a1543..5636dcbc5 100644 --- a/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs +++ b/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs @@ -10,19 +10,11 @@ let (++) a b = Path.Combine(a, b) let sourceDirectory = __SOURCE_DIRECTORY__ -let testCasesTuple = +let testCases = sourceDirectory ++ "SignatureTestCases.config" |> File.ReadAllLines // "No data is available for encoding 932. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method." |> Array.filter (fun line -> not (line.Contains ("cp932.csv"))) - |> Array.map TypeProviderInstantiation.Parse - -let testCases = - testCasesTuple - // These WorldBank tests nearly always need updating. COmment out this line if you want to go through the process of - // updating them. - |> Array.filter (snd >> function | WorldBank _ -> false | _ -> true) - |> Array.map snd let expectedDirectory = sourceDirectory ++ "expected" @@ -41,19 +33,21 @@ let normalize (str:string) = [] [] -let ``Validate signature didn't change `` (testCase:TypeProviderInstantiation) = - let path = testCase.ExpectedPath expectedDirectory - let expected = path |> File.ReadAllText |> normalize - let assemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() - let outputRaw = testCase.Dump (resolutionFolder, "", netstandard2RuntimeAssembly, assemblyRefs, signatureOnly=false, ignoreOutput=false) - let output = outputRaw |> normalize - if output <> expected then - printfn "Obtained Signature:\n%s" outputRaw - File.WriteAllText(testCase.ExpectedPath expectedDirectory + ".obtained", outputRaw) - output |> should equal expected +let ``Validate signature didn't change `` (testCaseSpec: string) = + let _, testCase = TypeProviderInstantiation.Parse testCaseSpec + let path = testCase.ExpectedPath expectedDirectory + let expected = path |> File.ReadAllText |> normalize + let assemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() + let outputRaw = testCase.Dump (resolutionFolder, "", netstandard2RuntimeAssembly, assemblyRefs, signatureOnly=false, ignoreOutput=false) + let output = outputRaw |> normalize + if output <> expected then + printfn "Obtained Signature:\n%s" outputRaw + File.WriteAllText(testCase.ExpectedPath expectedDirectory + ".obtained", outputRaw) + output |> should equal expected [] [] -let ``Generating expressions works in netstandard2.0 `` (testCase:TypeProviderInstantiation) = +let ``Generating expressions works in netstandard2.0 `` (testCaseSpec: string) = + let _, testCase = TypeProviderInstantiation.Parse testCaseSpec let assemblyRefs = TypeProviderInstantiation.GetRuntimeAssemblyRefs() testCase.Dump(resolutionFolder, "", netstandard2RuntimeAssembly, assemblyRefs, signatureOnly=false, ignoreOutput=true) |> ignore diff --git a/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs b/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs index 14e416fa6..b632fe664 100644 --- a/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs +++ b/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs @@ -8,7 +8,7 @@ open ProviderImplementation.ProvidedTypesTesting open FSharp.Data.Runtime open FSharp.Data.Runtime.StructuralInference -type CsvProviderArgs = +type internal CsvProviderArgs = { Sample : string Separators : string InferRows : int @@ -26,7 +26,7 @@ type CsvProviderArgs = ResolutionFolder : string EmbeddedResource : string } -type XmlProviderArgs = +type internal XmlProviderArgs = { Sample : string SampleIsList : bool Global : bool @@ -38,7 +38,7 @@ type XmlProviderArgs = Schema : string InferenceMode: InferenceMode } -type JsonProviderArgs = +type internal JsonProviderArgs = { Sample : string SampleIsList : bool RootName : string @@ -50,7 +50,7 @@ type JsonProviderArgs = PreferDictionaries : bool InferenceMode: InferenceMode } -type HtmlProviderArgs = +type internal HtmlProviderArgs = { Sample : string PreferOptionals : bool IncludeLayoutTables : bool @@ -60,13 +60,11 @@ type HtmlProviderArgs = ResolutionFolder : string EmbeddedResource : string } -type WorldBankProviderArgs = +type internal WorldBankProviderArgs = { Sources : string Asynchronous : bool } -type Platform = NetStandard20 - -type TypeProviderInstantiation = +type internal TypeProviderInstantiation = | Csv of CsvProviderArgs | Xml of XmlProviderArgs | Json of JsonProviderArgs @@ -251,7 +249,7 @@ type TypeProviderInstantiation = Asynchronous = args.[2] |> bool.Parse } | _ -> failwithf "Unknown: %s" args.[0] - static member GetRuntimeAssemblyRefs platform = + static member GetRuntimeAssemblyRefs () = let (++) a b = Path.Combine(a, b) #if DEBUG let build = "Debug" @@ -259,6 +257,15 @@ type TypeProviderInstantiation = let build = "Release" #endif - let extraRef2 = __SOURCE_DIRECTORY__ ++ ".." ++ ".." ++ "src" ++ "FSharp.Data" ++ "bin" ++ build ++ "netstandard2.0" ++ "FSharp.Data.Core.dll" - [extraRef2] @ Targets.DotNetStandard20FSharpRefs() + let extraDlls = + [ "FSharp.Data.Http" + "FSharp.Data.Csv.Core" + "FSharp.Data.Html.Core" + "FSharp.Data.Xml.Core" + "FSharp.Data.Json.Core" + "FSharp.Data.WorldBank.Core" ] + let extraRefs = + [ for j in extraDlls do + __SOURCE_DIRECTORY__ ++ ".." ++ ".." ++ "src" ++ "FSharp.Data" ++ "bin" ++ build ++ "netstandard2.0" ++ (j + ".dll") ] + extraRefs @ Targets.DotNetStandard20FSharpRefs() From e0d40ffef5b3d3287de17ac793db93574765be33 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 14:45:13 +0100 Subject: [PATCH 07/11] remove snupkg, just embed instead --- Directory.Build.props | 3 +-- src/Html/HtmlParser.fs | 8 ++++---- src/Html/HtmlRuntime.fs | 23 ++++++++++++----------- src/Json/JsonConversionsGenerator.fs | 7 ++++++- 4 files changed, 23 insertions(+), 18 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index cfbaeddd4..03c303658 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -18,7 +18,6 @@ true true true - true - snupkg + Embedded diff --git a/src/Html/HtmlParser.fs b/src/Html/HtmlParser.fs index 1ab2ff3c7..1c9f4519d 100644 --- a/src/Html/HtmlParser.fs +++ b/src/Html/HtmlParser.fs @@ -195,10 +195,10 @@ module internal HtmlParser = x.HasFormattedParent <- x.HasFormattedParent || x.IsFormattedTag x.InsertionMode <- - if x.IsScriptTag && (not isEnd) then - ScriptMode - else - DefaultMode + if x.IsScriptTag && (not isEnd) then + ScriptMode + else + DefaultMode x.CurrentTag <- CharList.Empty x.Attributes <- [] diff --git a/src/Html/HtmlRuntime.fs b/src/Html/HtmlRuntime.fs index 8a5ca62c6..e8394059c 100644 --- a/src/Html/HtmlRuntime.fs +++ b/src/Html/HtmlRuntime.fs @@ -31,16 +31,17 @@ type HtmlTableCell = /// Representation of an HTML table cell type HtmlTable - internal ( - name: string, - headerNamesAndUnits: (string * Type option)[] option, // always set at designtime, never at runtime - inferedProperties: PrimitiveInferedProperty list option, // sometimes set at designtime, never at runtime - hasHeaders: bool option, // always set at designtime, never at runtime - rows: string[][], - html: HtmlNode - ) = + internal + ( + name: string, + headerNamesAndUnits: (string * Type option)[] option, // always set at designtime, never at runtime + inferedProperties: PrimitiveInferedProperty list option, // sometimes set at designtime, never at runtime + hasHeaders: bool option, // always set at designtime, never at runtime + rows: string[][], + html: HtmlNode + ) = member _.Name = name - + // always set at designtime, never at runtime member internal _.HeaderNamesAndUnits = headerNamesAndUnits @@ -48,9 +49,9 @@ type HtmlTable member internal _.InferedProperties = inferedProperties member _.HasHeaders = hasHeaders // always set at designtime, never at runtime - + member _.Rows = rows - + member _.Html = html override _.ToString() = diff --git a/src/Json/JsonConversionsGenerator.fs b/src/Json/JsonConversionsGenerator.fs index c0beb4d22..e61f47f56 100644 --- a/src/Json/JsonConversionsGenerator.fs +++ b/src/Json/JsonConversionsGenerator.fs @@ -48,7 +48,12 @@ type internal JsonConversionCallingType = /// Creates a function that takes Expr and converts it to /// an expression of other type - the type is specified by `field` -let internal convertJsonValue missingValuesStr cultureStr canPassAllConversionCallingTypes (field: PrimitiveInferedValue) = +let internal convertJsonValue + missingValuesStr + cultureStr + canPassAllConversionCallingTypes + (field: PrimitiveInferedValue) + = let returnType = From a6b2a6e2a2fe135d29d38aab28bd6e8e66042bca Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 18:51:20 +0100 Subject: [PATCH 08/11] fix docs --- src/CommonRuntime/StructuralInference.fs | 32 ++++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/CommonRuntime/StructuralInference.fs b/src/CommonRuntime/StructuralInference.fs index 630e77e8f..5fcfd0b55 100644 --- a/src/CommonRuntime/StructuralInference.fs +++ b/src/CommonRuntime/StructuralInference.fs @@ -1,5 +1,5 @@ /// Implements type inference for unstructured documents like XML or JSON -module internal FSharp.Data.Runtime.StructuralInference +module FSharp.Data.Runtime.StructuralInference open System open System.Diagnostics @@ -26,7 +26,7 @@ type InferenceMode = | ValuesAndInlineSchemasOverrides = 4 /// This is the internal DU representing all the valid cases we support, mapped from the public InferenceMode. -type InferenceMode' = +type internal InferenceMode' = | NoInference /// Backward compatible mode. | ValuesOnly @@ -50,7 +50,7 @@ type InferenceMode' = | InferenceMode.ValuesAndInlineSchemasOverrides -> InferenceMode'.ValuesAndInlineSchemasOverrides | _ -> failwithf "Unexpected inference mode value %A" inferenceMode -let asOption = +let internal asOption = function | true, x -> Some x | false, _ -> None @@ -93,11 +93,11 @@ let private primitiveTypes = @ numericTypes /// Checks whether a type supports unit of measure -let supportsUnitsOfMeasure typ = List.exists ((=) typ) numericTypes +let internal supportsUnitsOfMeasure typ = List.exists ((=) typ) numericTypes /// Returns a tag of a type - a tag represents a 'kind' of type /// (essentially it describes the different bottom types we have) -let typeTag inferredType = +let internal typeTag inferredType = match inferredType with | InferedType.Record (name = n) -> InferedTypeTag.Record n | InferedType.Collection _ -> InferedTypeTag.Collection @@ -214,7 +214,7 @@ let private (|SubtypePrimitives|_|) allowEmptyValues = /// The contract that should hold about the function is that given two types with the /// same `InferedTypeTag`, the result also has the same `InferedTypeTag`. /// -let rec subtypeInfered allowEmptyValues ot1 ot2 = +let rec internal subtypeInfered allowEmptyValues ot1 ot2 = match ot1, ot2 with // Subtype of matching types or one of equal types | SubtypePrimitives allowEmptyValues t -> InferedType.Primitive t @@ -355,7 +355,7 @@ and private unionCollectionTypes allowEmptyValues cases1 cases2 = tag, (m, t) | _ -> failwith "unionCollectionTypes: pairBy returned None, None") -and unionCollectionOrder order1 order2 = +and internal unionCollectionOrder order1 order2 = order1 @ (order2 |> List.filter (fun x -> not (List.exists ((=) x) order1))) @@ -363,7 +363,7 @@ and unionCollectionOrder order1 order2 = /// Get the union of record types (merge their properties) /// This matches the corresponding members and marks them as `Optional` /// if one may be missing. It also returns subtype of their types. -and unionRecordTypes allowEmptyValues t1 t2 = +and internal unionRecordTypes allowEmptyValues t1 t2 = List.pairBy (fun (p: InferedProperty) -> p.Name) t1 t2 |> List.map (fun (name, fst, snd) -> match fst, snd with @@ -381,7 +381,7 @@ and unionRecordTypes allowEmptyValues t1 t2 = /// Infer the type of the collection based on multiple sample types /// (group the types by tag, count their multiplicity) -let inferCollectionType allowEmptyValues types = +let internal inferCollectionType allowEmptyValues types = let groupedTypes = types |> Seq.groupBy typeTag @@ -392,12 +392,12 @@ let inferCollectionType allowEmptyValues types = InferedType.Collection(List.map fst groupedTypes, Map.ofList groupedTypes) -type IUnitsOfMeasureProvider = +type internal IUnitsOfMeasureProvider = abstract SI: str: string -> System.Type abstract Product: measure1: System.Type * measure2: System.Type -> System.Type abstract Inverse: denominator: System.Type -> System.Type -let defaultUnitsOfMeasureProvider = +let internal defaultUnitsOfMeasureProvider = { new IUnitsOfMeasureProvider with member x.SI(_) : Type = null member x.Product(_, _) = failwith "Not implemented yet" @@ -408,7 +408,7 @@ let private uomTransformations = [ "³"; "^3" ], (fun (provider: IUnitsOfMeasureProvider) t -> provider.Product(provider.Product(t, t), t)) [ "^-1" ], (fun (provider: IUnitsOfMeasureProvider) t -> provider.Inverse(t)) ] -let parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string) = +let internal parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string) = let unit = uomTransformations |> List.collect (fun (suffixes, trans) -> suffixes |> List.map (fun suffix -> suffix, trans)) @@ -432,7 +432,7 @@ let parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string) = /// The inferred types may be set explicitly via inline schemas. /// This table specifies the mapping from (the names that users can use) to (the types used). -let nameToType = +let internal nameToType = [ "int", (typeof, TypeWrapper.None) "int64", (typeof, TypeWrapper.None) "bool", (typeof, TypeWrapper.None) @@ -465,7 +465,7 @@ let private validInlineSchema = /// This can be of the form: type|measure|type<measure> /// type{measure} is also supported to ease definition in xml values. ///
          -let parseTypeAndUnit unitsOfMeasureProvider (nameToType: IDictionary) str = +let internal parseTypeAndUnit unitsOfMeasureProvider (nameToType: IDictionary) str = let m = typeAndUnitRegex.Value.Match(str) if m.Success then @@ -516,7 +516,7 @@ module private Helpers = /// with the desiredUnit applied, /// or a value parsed from an inline schema. /// (For inline schemas, the unit parsed from the schema takes precedence over desiredUnit when present) -let inferPrimitiveType +let internal inferPrimitiveType (unitsOfMeasureProvider: IUnitsOfMeasureProvider) (inferenceMode: InferenceMode') (cultureInfo: CultureInfo) @@ -615,5 +615,5 @@ let inferPrimitiveType |> Option.defaultValue fallbackType /// Infers the type of a simple string value -let getInferedTypeFromString unitsOfMeasureProvider inferenceMode cultureInfo value unit = +let internal getInferedTypeFromString unitsOfMeasureProvider inferenceMode cultureInfo value unit = inferPrimitiveType unitsOfMeasureProvider inferenceMode cultureInfo value unit From c9af6ca037baa7a84098aaac9a4b558eaaa121ff Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 19:25:53 +0100 Subject: [PATCH 09/11] fix internal --- src/CommonRuntime/StructuralInference.fs | 37 +++++++++++++------ src/CommonRuntime/StructuralTypes.fs | 24 ++++++++---- .../FSharp.Data.Csv.Core.fsproj | 2 +- .../FSharp.Data.DesignTime.fsproj | 2 +- .../FSharp.Data.Html.Core.fsproj | 2 +- src/FSharp.Data.Http/FSharp.Data.Http.fsproj | 2 +- .../FSharp.Data.Json.Core.fsproj | 2 +- .../FSharp.Data.WorldBank.Core.fsproj | 2 +- .../FSharp.Data.Xml.Core.fsproj | 2 +- src/FSharp.Data/FSharp.Data.fsproj | 2 +- .../FSharp.Data.Core.Tests.CSharp.csproj | 1 + .../FSharp.Data.Core.Tests.fsproj | 1 + tests/FSharp.Data.Core.Tests/Http.fs | 4 +- .../FSharp.Data.DesignTime.Tests.fsproj | 1 + .../FSharp.Data.Reference.Tests.fsproj | 1 + tests/FSharp.Data.Tests/CsvProvider.fs | 20 +++++----- .../FSharp.Data.Tests.fsproj | 1 + tests/FSharp.Data.Tests/Program.fs | 2 +- tests/FSharp.Data.Tests/XmlProvider.fs | 12 +++--- 19 files changed, 73 insertions(+), 47 deletions(-) diff --git a/src/CommonRuntime/StructuralInference.fs b/src/CommonRuntime/StructuralInference.fs index 5fcfd0b55..e2f2c3904 100644 --- a/src/CommonRuntime/StructuralInference.fs +++ b/src/CommonRuntime/StructuralInference.fs @@ -1,6 +1,8 @@ /// Implements type inference for unstructured documents like XML or JSON module FSharp.Data.Runtime.StructuralInference +#nowarn "44" + open System open System.Diagnostics open System.Collections.Generic @@ -26,7 +28,8 @@ type InferenceMode = | ValuesAndInlineSchemasOverrides = 4 /// This is the internal DU representing all the valid cases we support, mapped from the public InferenceMode. -type internal InferenceMode' = +[] +type InferenceMode' = | NoInference /// Backward compatible mode. | ValuesOnly @@ -50,8 +53,9 @@ type internal InferenceMode' = | InferenceMode.ValuesAndInlineSchemasOverrides -> InferenceMode'.ValuesAndInlineSchemasOverrides | _ -> failwithf "Unexpected inference mode value %A" inferenceMode -let internal asOption = - function +[] +let asOption inp = + match inp with | true, x -> Some x | false, _ -> None @@ -93,11 +97,13 @@ let private primitiveTypes = @ numericTypes /// Checks whether a type supports unit of measure -let internal supportsUnitsOfMeasure typ = List.exists ((=) typ) numericTypes +[] +let supportsUnitsOfMeasure typ = List.exists ((=) typ) numericTypes /// Returns a tag of a type - a tag represents a 'kind' of type /// (essentially it describes the different bottom types we have) -let internal typeTag inferredType = +[] +let typeTag inferredType = match inferredType with | InferedType.Record (name = n) -> InferedTypeTag.Record n | InferedType.Collection _ -> InferedTypeTag.Collection @@ -392,12 +398,14 @@ let internal inferCollectionType allowEmptyValues types = InferedType.Collection(List.map fst groupedTypes, Map.ofList groupedTypes) -type internal IUnitsOfMeasureProvider = +[] +type IUnitsOfMeasureProvider = abstract SI: str: string -> System.Type abstract Product: measure1: System.Type * measure2: System.Type -> System.Type abstract Inverse: denominator: System.Type -> System.Type -let internal defaultUnitsOfMeasureProvider = +[] +let defaultUnitsOfMeasureProvider = { new IUnitsOfMeasureProvider with member x.SI(_) : Type = null member x.Product(_, _) = failwith "Not implemented yet" @@ -408,7 +416,8 @@ let private uomTransformations = [ "³"; "^3" ], (fun (provider: IUnitsOfMeasureProvider) t -> provider.Product(provider.Product(t, t), t)) [ "^-1" ], (fun (provider: IUnitsOfMeasureProvider) t -> provider.Inverse(t)) ] -let internal parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string) = +[] +let parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string) = let unit = uomTransformations |> List.collect (fun (suffixes, trans) -> suffixes |> List.map (fun suffix -> suffix, trans)) @@ -432,7 +441,8 @@ let internal parseUnitOfMeasure (provider: IUnitsOfMeasureProvider) (str: string /// The inferred types may be set explicitly via inline schemas. /// This table specifies the mapping from (the names that users can use) to (the types used). -let internal nameToType = +[] +let nameToType = [ "int", (typeof, TypeWrapper.None) "int64", (typeof, TypeWrapper.None) "bool", (typeof, TypeWrapper.None) @@ -465,7 +475,8 @@ let private validInlineSchema = /// This can be of the form: type|measure|type<measure> /// type{measure} is also supported to ease definition in xml values. ///
          -let internal parseTypeAndUnit unitsOfMeasureProvider (nameToType: IDictionary) str = +[] +let parseTypeAndUnit unitsOfMeasureProvider (nameToType: IDictionary) str = let m = typeAndUnitRegex.Value.Match(str) if m.Success then @@ -516,7 +527,8 @@ module private Helpers = /// with the desiredUnit applied, /// or a value parsed from an inline schema. /// (For inline schemas, the unit parsed from the schema takes precedence over desiredUnit when present) -let internal inferPrimitiveType +[] +let inferPrimitiveType (unitsOfMeasureProvider: IUnitsOfMeasureProvider) (inferenceMode: InferenceMode') (cultureInfo: CultureInfo) @@ -615,5 +627,6 @@ let internal inferPrimitiveType |> Option.defaultValue fallbackType /// Infers the type of a simple string value -let internal getInferedTypeFromString unitsOfMeasureProvider inferenceMode cultureInfo value unit = +[] +let getInferedTypeFromString unitsOfMeasureProvider inferenceMode cultureInfo value unit = inferPrimitiveType unitsOfMeasureProvider inferenceMode cultureInfo value unit diff --git a/src/CommonRuntime/StructuralTypes.fs b/src/CommonRuntime/StructuralTypes.fs index 79bb4b51a..2da962f37 100644 --- a/src/CommonRuntime/StructuralTypes.fs +++ b/src/CommonRuntime/StructuralTypes.fs @@ -11,7 +11,8 @@ open FSharp.Data.Runtime /// /// Types that represent the result of static type inference. /// -type internal InferedProperty = +[] +type InferedProperty = { Name: string mutable Type: InferedType } override x.ToString() = sprintf "%A" x @@ -19,7 +20,8 @@ type internal InferedProperty = /// For heterogeneous types (types that have multiple possible forms /// such as differently named XML nodes or records and arrays mixed together) /// this type represents the number of occurrences of individual forms -type internal InferedMultiplicity = +[] +type InferedMultiplicity = | Single | OptionalSingle | Multiple @@ -27,7 +29,8 @@ type internal InferedMultiplicity = /// For heterogeneous types, this represents the tag that defines the form /// (that is either primitive type, collection, named record etc.) [] -type internal InferedTypeTag = +[] +type InferedTypeTag = // Unknown type | Null // Primitive types @@ -61,7 +64,8 @@ type internal InferedTypeTag = /// we would lose information about multiplicity and so we would not be able /// to generate nicer types! [] -type internal InferedType = +[] +type InferedType = | Primitive of typ: Type * unit: option * optional: bool * shouldOverrideOnMerge: bool | Record of name: string option * fields: InferedProperty list * optional: bool | Json of typ: InferedType * optional: bool @@ -184,21 +188,25 @@ type internal InferedTypeTag with /// Dummy type to represent that only "0" was found. /// Will be generated as 'int', unless it's converted to Bit. -type internal Bit0 = Bit0 +[] +type Bit0 = Bit0 /// Dummy type to represent that only "1" was found /// Will be generated as 'int', unless it's converted to Bit -type internal Bit1 = Bit1 +[] +type Bit1 = Bit1 /// Dummy type to represent that only one of "0" and "1" were found /// Will be generated as a 'bool', unless it's converted to another numerical type -type internal Bit = Bit +[] +type Bit = Bit // ------------------------------------------------------------------------------------------------ /// Represents a transformation of a type [] -type internal TypeWrapper = +[] +type TypeWrapper = /// No transformation will be made to the type | None /// The type T will be converter to type T option diff --git a/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj b/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj index 582667ec5..5e3bbbabf 100644 --- a/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj +++ b/src/FSharp.Data.Csv.Core/FSharp.Data.Csv.Core.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44 true false logo.png diff --git a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj index 8fd29d917..aa6e5fd5a 100755 --- a/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj +++ b/src/FSharp.Data.DesignTime/FSharp.Data.DesignTime.fsproj @@ -4,7 +4,7 @@ false netstandard2.0 IS_DESIGNTIME;NO_GENERATIVE;$(DefineConstants) - --warnon:1182 + $(OtherFlags) --warnon:1182 --nowarn:44 false false diff --git a/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj b/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj index a5452d5f2..2814db6e4 100644 --- a/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj +++ b/src/FSharp.Data.Html.Core/FSharp.Data.Html.Core.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44 true false logo.png diff --git a/src/FSharp.Data.Http/FSharp.Data.Http.fsproj b/src/FSharp.Data.Http/FSharp.Data.Http.fsproj index d2b6c5887..d03aa1b2b 100644 --- a/src/FSharp.Data.Http/FSharp.Data.Http.fsproj +++ b/src/FSharp.Data.Http/FSharp.Data.Http.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44 true false logo.png diff --git a/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj b/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj index 5220531cb..0b1911d8d 100644 --- a/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj +++ b/src/FSharp.Data.Json.Core/FSharp.Data.Json.Core.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44 true false logo.png diff --git a/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj b/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj index 8f38d8784..ebd2c67dc 100644 --- a/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj +++ b/src/FSharp.Data.WorldBank.Core/FSharp.Data.WorldBank.Core.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 true false logo.png diff --git a/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj b/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj index 97ab438b1..68cacad38 100644 --- a/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj +++ b/src/FSharp.Data.Xml.Core/FSharp.Data.Xml.Core.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44 true false logo.png diff --git a/src/FSharp.Data/FSharp.Data.fsproj b/src/FSharp.Data/FSharp.Data.fsproj index 9c1dbdd10..797a49377 100755 --- a/src/FSharp.Data/FSharp.Data.fsproj +++ b/src/FSharp.Data/FSharp.Data.fsproj @@ -3,7 +3,7 @@ Library netstandard2.0 - --warnon:1182 --nowarn:10001 + $(OtherFlags) --warnon:1182 --nowarn:10001 true false logo.png diff --git a/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj index e3d286443..6a2b87bfd 100644 --- a/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj +++ b/tests/FSharp.Data.Core.Tests.CSharp/FSharp.Data.Core.Tests.CSharp.csproj @@ -7,6 +7,7 @@ true true false + $(OtherFlags) --warnon:1182 --nowarn:44 diff --git a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj index 7e937280f..48a896c14 100644 --- a/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj +++ b/tests/FSharp.Data.Core.Tests/FSharp.Data.Core.Tests.fsproj @@ -7,6 +7,7 @@ true true false + $(OtherFlags) --warnon:1182 --nowarn:44 true diff --git a/tests/FSharp.Data.Core.Tests/Http.fs b/tests/FSharp.Data.Core.Tests/Http.fs index 30b240e7a..f2223a5ca 100644 --- a/tests/FSharp.Data.Core.Tests/Http.fs +++ b/tests/FSharp.Data.Core.Tests/Http.fs @@ -224,14 +224,14 @@ let testFormDataSizesInBytes = [ [] let testFormDataBodySize (size: int) = use localServer = startHttpLocalServer() - let bodyString = seq {for i in 0..size -> "x\n"} |> String.concat "" + let bodyString = seq {for _i in 0..size -> "x\n"} |> String.concat "" let body = FormValues([("input", bodyString)]) Assert.DoesNotThrowAsync(fun () -> Http.AsyncRequest (url= localServer.BaseAddress + "/200", httpMethod="POST", body=body, timeout = 10000) |> Async.Ignore |> Async.StartAsTask :> _) [] let testMultipartFormDataBodySize (size: int) = use localServer = startHttpLocalServer() - let bodyString = seq {for i in 0..size -> "x\n"} |> String.concat "" + let bodyString = seq {for _i in 0..size -> "x\n"} |> String.concat "" let multipartItem = [ MultipartItem("input", "input.txt", new MemoryStream(Encoding.UTF8.GetBytes(bodyString)) :> Stream) ] let body = Multipart(Guid.NewGuid().ToString(), multipartItem) diff --git a/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj b/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj index cbecb419b..692abdaad 100644 --- a/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj +++ b/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj @@ -7,6 +7,7 @@ true false + $(OtherFlags) --warnon:1182 --nowarn:44 diff --git a/tests/FSharp.Data.Reference.Tests/FSharp.Data.Reference.Tests.fsproj b/tests/FSharp.Data.Reference.Tests/FSharp.Data.Reference.Tests.fsproj index ad64764f6..532d035a1 100644 --- a/tests/FSharp.Data.Reference.Tests/FSharp.Data.Reference.Tests.fsproj +++ b/tests/FSharp.Data.Reference.Tests/FSharp.Data.Reference.Tests.fsproj @@ -7,6 +7,7 @@ true false + $(OtherFlags) --warnon:1182 --nowarn:44 diff --git a/tests/FSharp.Data.Tests/CsvProvider.fs b/tests/FSharp.Data.Tests/CsvProvider.fs index 098a83dcd..673d456aa 100644 --- a/tests/FSharp.Data.Tests/CsvProvider.fs +++ b/tests/FSharp.Data.Tests/CsvProvider.fs @@ -72,14 +72,14 @@ let ``Inference of numbers with empty values`` () = let row = rows.[0] - let f1:float = row.Float1 - let f2:float = row.Float2 - let f3:float = row.Float3 - let f4:float = row.Float4 - let i:Nullable = row.Int - let f5:float = row.Float5 - let f6:float = row.Float6 - let d:option = row.Date + let _f1:float = row.Float1 + let _f2:float = row.Float2 + let _f3:float = row.Float3 + let _f4:float = row.Float4 + let _i:Nullable = row.Int + let _f5:float = row.Float5 + let _f6:float = row.Float6 + let _d:option = row.Date let expected = 1.0, 1.0, 1.0, 1.0, Nullable(), Double.NaN, Double.NaN, (None: DateTime option) let actual = row.Float1, row.Float2, row.Float3, row.Float4, row.Int, row.Float5, row.Float6, row.Date @@ -343,9 +343,9 @@ let ``Uses UTF8 for sample file when encoding not specified``() = [] let ``Disposing CsvProvider shouldn't throw``() = - let csv = + let _csv = use csv = CsvProvider<"Data/TabSeparated.csv", HasHeaders=false>.GetSample() - csv.Rows |> Seq.iter (fun x -> ()) + csv.Rows |> Seq.iter (fun _ -> ()) () [] diff --git a/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj b/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj index 0805ccb59..69617490b 100755 --- a/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj +++ b/tests/FSharp.Data.Tests/FSharp.Data.Tests.fsproj @@ -9,6 +9,7 @@ false true + $(OtherFlags) --warnon:1182 --nowarn:44 diff --git a/tests/FSharp.Data.Tests/Program.fs b/tests/FSharp.Data.Tests/Program.fs index 6329c59f8..96a10a38d 100644 --- a/tests/FSharp.Data.Tests/Program.fs +++ b/tests/FSharp.Data.Tests/Program.fs @@ -1,6 +1,6 @@ open System [] -let main argv = +let main _argv = printfn "Dotnet Core NUnit Tests..." 0 diff --git a/tests/FSharp.Data.Tests/XmlProvider.fs b/tests/FSharp.Data.Tests/XmlProvider.fs index a13028d6e..199f66410 100644 --- a/tests/FSharp.Data.Tests/XmlProvider.fs +++ b/tests/FSharp.Data.Tests/XmlProvider.fs @@ -151,10 +151,10 @@ type Html = XmlProvider<""" [] let ``Nested xml types compile when only used in type annotations``() = - let divWorks (div:Html.Div) = () - let spanWorks (span:Html.Span) = () - let ulWorks (ul:Html.Ul) = () - let liWorks (li:Html.Li) = () + let _divWorks (_div:Html.Div) = () + let _spanWorks (_span:Html.Span) = () + let _ulWorks (_ul:Html.Ul) = () + let _liWorks (_li:Html.Li) = () () [] @@ -168,8 +168,8 @@ let sameNameDifferentNamespace = """ [] let ``XML elements with same name in different namespaces``() = let xml = XmlProvider.GetSample() - let b1 = xml.B - let b2 = xml.B2 + let _b1 = xml.B + let _b2 = xml.B2 () [] From 681b9256ca9767bc8574a3a7dd110caad87fa9f6 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 19:34:05 +0100 Subject: [PATCH 10/11] code formatting --- src/AssemblyInfo.Csv.Core.fs | 20 ++++++++++++++----- src/AssemblyInfo.DesignTime.fs | 20 ++++++++++++++----- src/AssemblyInfo.Html.Core.fs | 20 ++++++++++++++----- src/AssemblyInfo.Http.fs | 20 ++++++++++++++----- src/AssemblyInfo.Json.Core.fs | 20 ++++++++++++++----- src/AssemblyInfo.WorldBank.Core.fs | 20 ++++++++++++++----- src/AssemblyInfo.Xml.Core.fs | 20 ++++++++++++++----- src/AssemblyInfo.fs | 20 ++++++++++++++----- tests/FSharp.Data.Core.Tests/HtmlParser.fs | 4 ++-- .../JsonParserProperties.fs | 8 ++++---- tests/FSharp.Data.Core.Tests/NameUtils.fs | 2 +- tests/FSharp.Data.Core.Tests/Program.fs | 2 +- .../InferenceTests.fs | 1 + tests/FSharp.Data.DesignTime.Tests/Program.fs | 6 +++--- tests/FSharp.Data.Reference.Tests/Program.fs | 6 +++--- 15 files changed, 135 insertions(+), 54 deletions(-) diff --git a/src/AssemblyInfo.Csv.Core.fs b/src/AssemblyInfo.Csv.Core.fs index 1435009f3..c0ef17e0b 100644 --- a/src/AssemblyInfo.Csv.Core.fs +++ b/src/AssemblyInfo.Csv.Core.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Csv.Core" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.Csv.Core" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.DesignTime.fs b/src/AssemblyInfo.DesignTime.fs index 41ddeca05..f870a91a5 100644 --- a/src/AssemblyInfo.DesignTime.fs +++ b/src/AssemblyInfo.DesignTime.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.DesignTime" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.DesignTime" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Html.Core.fs b/src/AssemblyInfo.Html.Core.fs index abdf3989a..bd3974889 100644 --- a/src/AssemblyInfo.Html.Core.fs +++ b/src/AssemblyInfo.Html.Core.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Html.Core" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.Html.Core" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Http.fs b/src/AssemblyInfo.Http.fs index 6c5e57bcf..e502ea06a 100644 --- a/src/AssemblyInfo.Http.fs +++ b/src/AssemblyInfo.Http.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Http" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.Http" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Json.Core.fs b/src/AssemblyInfo.Json.Core.fs index cd44992b1..2b5815538 100644 --- a/src/AssemblyInfo.Json.Core.fs +++ b/src/AssemblyInfo.Json.Core.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Json.Core" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.Json.Core" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.WorldBank.Core.fs b/src/AssemblyInfo.WorldBank.Core.fs index 5f7c194b3..0c7839464 100644 --- a/src/AssemblyInfo.WorldBank.Core.fs +++ b/src/AssemblyInfo.WorldBank.Core.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.WorldBank.Core" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.WorldBank.Core" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.Xml.Core.fs b/src/AssemblyInfo.Xml.Core.fs index b2cc61a9b..a77ba79eb 100644 --- a/src/AssemblyInfo.Xml.Core.fs +++ b/src/AssemblyInfo.Xml.Core.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data.Xml.Core" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data.Xml.Core" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/src/AssemblyInfo.fs b/src/AssemblyInfo.fs index 8be140ac9..1490e0647 100644 --- a/src/AssemblyInfo.fs +++ b/src/AssemblyInfo.fs @@ -1,5 +1,6 @@ // Auto-Generated by FAKE; do not edit namespace System + open System.Reflection [] @@ -10,8 +11,17 @@ open System.Reflection do () module internal AssemblyVersionInformation = - let [] AssemblyTitle = "FSharp.Data" - let [] AssemblyProduct = "FSharp.Data" - let [] AssemblyDescription = "Library of F# type providers and data access tools" - let [] AssemblyVersion = "5.0.1.0" - let [] AssemblyFileVersion = "5.0.1.0" + [] + let AssemblyTitle = "FSharp.Data" + + [] + let AssemblyProduct = "FSharp.Data" + + [] + let AssemblyDescription = "Library of F# type providers and data access tools" + + [] + let AssemblyVersion = "5.0.1.0" + + [] + let AssemblyFileVersion = "5.0.1.0" diff --git a/tests/FSharp.Data.Core.Tests/HtmlParser.fs b/tests/FSharp.Data.Core.Tests/HtmlParser.fs index f593cf1e4..fe9a26fc2 100644 --- a/tests/FSharp.Data.Core.Tests/HtmlParser.fs +++ b/tests/FSharp.Data.Core.Tests/HtmlParser.fs @@ -608,12 +608,12 @@ let ``Can parse tables imdb chart``() = [] let ``Can parse tables ebay cars``() = - let ebay = HtmlDocument.Load "ebay_cars.htm" + let _ebay = HtmlDocument.Load "ebay_cars.htm" true |> should equal true [] let ``Does not crash when parsing us presidents``() = - let table = HtmlDocument.Load "us_presidents_wikipedia.html" |> getTables false + let _table = HtmlDocument.Load "us_presidents_wikipedia.html" |> getTables false true |> should equal true [] diff --git a/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs b/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs index c50b003b6..7fcda85be 100644 --- a/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs +++ b/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs @@ -11,16 +11,16 @@ let rec isValidJsonString s = match s with | [] -> true | ['\\'] -> false - | '"' :: t -> false - | h :: t when Globalization.CharUnicodeInfo.GetUnicodeCategory h + | '"' :: _t -> false + | h :: _t when Globalization.CharUnicodeInfo.GetUnicodeCategory h = Globalization.UnicodeCategory.Control -> false | '\\' :: 'u' :: d1 :: d2 :: d3 :: d4 :: t when [d1;d2;d3;d4] |> Seq.forall (fun c -> (Char.IsDigit c || Text.RegularExpressions.Regex("[a-fA-F]").IsMatch(c.ToString()))) -> isValidJsonString t - | '\\' :: i :: t when escaped |> (not << Set.contains i) -> false + | '\\' :: i :: _t when escaped |> (not << Set.contains i) -> false | '\\' :: i :: t when escaped |> Set.contains i -> isValidJsonString t - | h :: t -> isValidJsonString t + | _h :: t -> isValidJsonString t let validJsonStringGen = Arb.generate diff --git a/tests/FSharp.Data.Core.Tests/NameUtils.fs b/tests/FSharp.Data.Core.Tests/NameUtils.fs index 6f902dd57..9bb3b717c 100644 --- a/tests/FSharp.Data.Core.Tests/NameUtils.fs +++ b/tests/FSharp.Data.Core.Tests/NameUtils.fs @@ -87,7 +87,7 @@ let ``Handles long and ugly names`` () = [] let ``Unique generator generates unique names`` () = let gen = uniqueGenerator nicePascalName - let names = [ for i in 0 .. 100 -> gen "test" ] + let names = [ for _i in 0 .. 100 -> gen "test" ] Seq.length names |> should equal (Seq.length (set names)) [] diff --git a/tests/FSharp.Data.Core.Tests/Program.fs b/tests/FSharp.Data.Core.Tests/Program.fs index 6329c59f8..96a10a38d 100644 --- a/tests/FSharp.Data.Core.Tests/Program.fs +++ b/tests/FSharp.Data.Core.Tests/Program.fs @@ -1,6 +1,6 @@ open System [] -let main argv = +let main _argv = printfn "Dotnet Core NUnit Tests..." 0 diff --git a/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs b/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs index 5e13f1c50..43d9b1ccd 100644 --- a/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs +++ b/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs @@ -497,6 +497,7 @@ let ``recursive schemas don't cause loops``() = """ let inferedTypeFromSchema = getInferedTypeFromSchema xsd + inferedTypeFromSchema |> ignore //printfn "%A" inferedTypeFromSchema let xsd = """] -let main argv = +let main _argv = printfn "Dotnet Core NUnit Tests..." - 0 \ No newline at end of file + 0 diff --git a/tests/FSharp.Data.Reference.Tests/Program.fs b/tests/FSharp.Data.Reference.Tests/Program.fs index c94e2a499..96a10a38d 100644 --- a/tests/FSharp.Data.Reference.Tests/Program.fs +++ b/tests/FSharp.Data.Reference.Tests/Program.fs @@ -1,6 +1,6 @@ -open System +open System [] -let main argv = +let main _argv = printfn "Dotnet Core NUnit Tests..." - 0 \ No newline at end of file + 0 From 94e0d27191c64d066c792fa37c61639547458c2b Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 16 Aug 2022 19:38:26 +0100 Subject: [PATCH 11/11] fix build --- .../FSharp.Data.DesignTime.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj b/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj index 692abdaad..b12489268 100644 --- a/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj +++ b/tests/FSharp.Data.DesignTime.Tests/FSharp.Data.DesignTime.Tests.fsproj @@ -7,7 +7,7 @@ true false - $(OtherFlags) --warnon:1182 --nowarn:44 + $(OtherFlags) --nowarn:44